XML Feed to Flash

Hello Forum,
I'm trying to parse an RSS feed which is a page of Flash. But Im having troubles, I wonder if someone could help me with some advice-entries/hits something out links for photo, text and attributes of the RSS so I can do flash with dynamic images.

I found two components but I can't get it to work.
http://code.Google.com/p/AS3corelib/
http://code.Google.com/p/as3syndicationlib/

Also this tutorial, but it seems confusing. Can someone help if I can get on some articles, tutorials or something. ? http://www.Ploem.be/blog/?page_id=105

the RSS is here:

Assuming that you have the XML in a variable named rss, you can get to the
individual items as follows:

trace (RSS. Channel.Item.length ());
4

trace (RSS. Channel.Item [3] .title);
ProductName Delta

trace (RSS. Channel.Item [3]. Description);
//

SRC="domain.dk/images/produktbilleder/foto-PAA-Vej-t.jpg" / >
<>
/ > c

at eros. SED porta, sapien, ornare dapibus feugiat,


PRI:? 1.250,00? DKK

HTH
I let you do the string manipulation required to get the jpg file of
it.

--
Dave-
www.offroadfire.com
Developer leader
http://www.blurredistinction.com
Adobe Community Expert
http://www.Adobe.com/communities/experts/

Tags: Adobe Animate

Similar Questions

  • Import of RSS feed in Flash

    Hey there

    Firstly thanks for any help on this - much appreciated. I created a list of RSS feeds in flash using the following tutorial: http://alaashaker.wordpress.com/2008/09/09/build-your-own-flash-rss-reader-tutorial-flash-actionscript-30 / # comment - 932

    I'm stuck trying to make each clickable list at the url of the source item. the journal of the Description is not necessary - just an item in the list-> url

    var rssLoader:URLLoader = new URLLoader();

    var rssURL:URLRequest =

    new URLRequest ("http://rssfeedurl");

    rssLoader.addEventListener (Event.COMPLETE, rssLoaded);

    rssLoader.load (rssURL);

    var rssXML:XML = new XML();

    rssXML.ignoreWhitespace = true;

    function rssLoaded (evt:Event): void {}

    rssXML = XML (rssLoader.data);

    trace (rssXML);

    for {(var: chaîne d'élément dans rssXML.channel.item)}

    liLog.addItem.htmlText = "< a href =" ({label: rssXML.channel.item [item] .title + rssXML.channel.item [item] .link}) "" > < / has > ";"

    }

    }

    The event listener is assigned to the list item so that when you select an element thereof, the selection can be transformed using and the event handler function.  If the event listener would be the way that show you...

    liLog.addEventListener (Event.CHANGE, selectLog);

    The event handler function must determine which item was selected in the list in order to use for binding, you want.  If you have assigned the link to the list as I showed, then you would seek to property 'data' of the item selected from the list (you might as well called it 'the link' instead of 'data')...

    function selectLog(evt:Event) {}

    var url: String = liLog.selectedItem.data;  capture the data item (link)

    navigateToURL (new URLRequest (url)); Open the linked site/page

    }

  • XML Feed as a source of data?

    Hello world

    I've been away from all CF and webdev world for a few years and I have some catching up to do - please bear with me :)

    I am putting together a site that attracts the lists of products from a third party XML feed and then use their site for transactions by credit card etc.. I've never worked with before XML streams, so I googled a bit looking for some basic information. I came across this page:

    http://www.Adobe.com/devnet/articles/xml_resource_feed.html

    and found this statement: "you can use the XML feed as a data source in ColdFusion to create dynamic content for an HTML page or a Macromedia Flash application.»

    This does mean that I can simply create a data source on my CF box, he points to the XML stream and then just question him like a normal mySQL or Access DB? Or (as I strongly suspect), am I missing something?

    If I get immersed in XML does anyone know of a good introduction to hang a stream in a CF XML site?

    Thank you
    Paul.

    .

    For example, run the following


    Query = "rssQuery."
    source =" http://rss.news.yahoo.com/rss/topstories" > "

  • Podcast XML Feed does not update

    Hello

    Since May 2009, I have the following podcast that ran (albeit with a 2 year hiatus):

    https://iTunes.Apple.com/GB/podcast/the-itsawinner-Poker-podcast/id344260020?MT= 2

    The XML of talkshoe is: http://recordings.talkshoe.com/rss72195.xml

    After our show "comeback" on March 22, it downloaded correctly. Unfortunately the shows on March 29 and April 5 are uploaded correctly and if you are a Subscriber came to watch to download in the iTunes client but do not appear in the iTunes store.

    In 'Apple Podcasts Connect' the food reads as having various errors. Oddly enough, a second podcast that I have has a talkshoe XML feed has been allowed a few days ago showed that the error, then was allowed again.

    Can someone help me? I sent to Apple who have said that they will study closer, but that was a week ago and I heard nothing. The show is a real body of works and we want to continue to use the feed.

    Thank you

    Malcolm

    I don't expect the 5th episode of April to show in the store again - it usually takes about 2 days for a new episode to appear. However, previous episodes of 29 March should have appeared. However, there has been cases recently of the Bank of failing to show the odd episodes. All you can do is to email them and request a re-indexing - it usually sorts out. It seem not to be serious errors in the food that can cause this.

  • import data produced by xml feed

    BC agrees to import data through xml feeds?

    No thanks, I'll do it myself with this tutorial from the BC gurus and cross my fingers. Part 2 of creating a Migration Application of data of Business Catalyst

  • Parsing XML feed

    I have codes as follows:
    SET SERVEROUTPUT ON
    SET DEFINE OFF
    DECLARE
    feedURL VARCHAR2 (500);
    xmlparser parser. Analyzer;
    feedXML xmldom. DOMDocument;
    titles xmldom. DOMNodeList;

    titles_found NUMBER;
    curNode xmldom. DOMNode;
    textChild xmldom. DOMNode;

    BEGIN

    feedURL: = '3Aproject % http://192.168.2.30/cgi-bin/query-meta?v%3Asources=cansumtest & v = query-meta & query = HOOD & render.function = xml-feed-display & content-type = text/xml';

    Parser: = xmlparser.newParser;
    feedXML: = xmlparser.parse (feedURL);
    xmlparser.freeParser (parser);

    titles: = xmldom.getElementsByTagName(feedXML,'*');

    FOR j IN LOOP 1.xmldom.getLength (titles)
    curNode: = xmldom.item(titles,j-1);
    textChild: = xmldom.getFirstChild (curNode);

    dbms_output.put_line ('('||) LPAD(j,2) |') '|| xmldom.getNodeValue (textChild));

    END LOOP;
    xmldom.freeDocument (feedXML);

    END;

    Above codes generate result:
    (1)
    (2)
    (3)
    (4)
    (5)
    (6)
    (7)
    (8)
    (9)
    (10)
    (11) 150
    * (12) H0OH18101 *.
    (13) < span class = "vivbold qt0" > </span > HOOD, RONALD E
    (14)
    (15)
    (16) 155
    * (17) H8OH07073 *.
    (18) < span class = "vivbold qt0" > </span >, RONALD EDWARD HOOD
    (19)
    (20)
    (21)
    (22)
    (23) H0oh18101, hood, Ronald
    (24)
    (25) Edward, Hood, Ronald
    PL/SQL procedure successfully completed.

    You can see by browsing, oracle shows all items in the feed url. From the results above, I need to display only items 12 and 17, and ignore the rest. I also provide XML feed below:

    <? XML version = "1.0"? >
    -vce >
    < param name = "v: sources" value = "cansumtest" / >
    < param name = "v: project ' value = 'query-meta' / >
    < param name = "query" value = "HOOD" / >
    < param name = "render.function" value = "xml-feed-display" / > "
    < param name = "content-type" value = "text/xml" / >
    -added source = test-strictly 'test-strictly"name ="cansumtest"type ="vse"modified"1355412925"="1.3"over-request = num = '200' status 'questioned' = asked ="200"query-xml-Jack in charge ="query-xml-support' vse - vse = 'vse - vse"total-results = '2' admin-url ="http://velocity/vivisimo/cgi-bin/admin"stem"depluralize"stem2 = 'none' = list of stopwords = 'none' search-ms ="1"recovery-ms = '0' total-results-with-duplicates = '2' retrieved '2' = >
    < parse url = "http://127.0.0.1:7205/search?query-xml=%3cterm%20field%3d%22query%22%20str%3d%22HOOD%22%20position%3d%220%22%20processing%3d%22strict%22%20input-type%3d%22user%22%20%2f%3e & mode = normal & strength-binning binning = 0 & max = 300 & start = 0 & num = 200 & staging = 0 & collection = cansumtest & r-o-p = 0 & sort keys = 1 & shingles = 1 & sum = 1 & = 1 & cache-data cache = 0 & score = 0 & show-duplicates =" 0 & gen - key = 0 & n-collapse = 0 & is is collapsed binning = 0 "start time"57"end of time = = http ="64"status" 200 OK"status =" "read treated analysis ' recovered '2' = / >" "
    < / source added >
    -< path list = "" num = "2" level = '0' start '0' by = '10' = > "
    -document url = "oracle://192.168.2.19:1521 / orcl /?" key - val = 9' rank = '0' source = "cansumtest" score = "0.111111" truncated url = "oracle://192.168.2.19:1521 / orcl /?" key - val = 9"context =" 3astate % http://192.168.2.30/cgi-bin/query-meta?v%3afile=viv_MLtzUk & v = % 28root % 29% 7croot & v % 3aframe = tree & subquery = id % 3aNdoc0 & % active 3d = root & v % 3asubsearch = 1 & ">
    < = "size" type = "text" > 150 happy name < / content >
    < happy name = "CAND_ID" type = "text" > H0OH18101 < / content >
    < happy name = "CAND_NM" type = "text" > < span class = "vivbold qt0" > </span > HOOD, RONALD E < / content >
    < happy name = "extract" type = "html" / >
    < / document >
    -document url = "oracle://192.168.2.19:1521 / orcl /?" key - val = 4015"="1"source ="cansumtest"rank score = '0.1' truncated url =" oracle://192.168.2.19:1521 / orcl /? " key - val = 4015"context =" 3astate % http://192.168.2.30/cgi-bin/query-meta?v%3afile=viv_MLtzUk & v = % 28root % 29% 7croot & v % 3aframe = tree & subquery = id % 3aNdoc1 & % active 3d = root & v % 3asubsearch = 1 & ">
    < happy name = "size" type = "text" > 155 < / content >
    < happy name = "CAND_ID" type = "text" > H8OH07073 < / content >
    < happy name = "CAND_NM" type = "text" > < span class = "vivbold qt0" > </span >, RONALD EDWARD HOOD < / content >
    < happy name = "extract" type = "html" / >
    < / document >
    < / list >
    -< tree base-url = "" http://192.168.2.30/cgi-bin/query-meta?v%3afile=viv_MLtzUk & v: state = ' recluster-base-url = "http://192.168.2.30/cgi-bin/query-meta?v%3afile=viv_MLtzUk &" > "
    -< node type = 'high' level = '0' Sindocs = '2' active = '1' subnodes = '0' ts = "|" root' ls = "root |" root' bs = "|" root">
    -< node type = 'document' level = '1' Sindocs = '1' ts = "(root) |" root' ls = "root |" N0"bs =" (root) | " N0 ">"
    < description > H0oh18101, hood, Ronald < / description >
    < / node >
    -< node type = 'document' level = '1' Sindocs = '1' ts = "(root) |" root' ls = "root |" N1"bs =" (root) | " N1 ">"
    < description > Edward, Hood, Ronald < / description >
    < / node >
    < / node >
    < / tree >
    < / vce >

    The easiest way is probably to apply a regular expression, either by post-processing of the column:

    SQL> select cand_id
      2       , regexp_replace(cand_nm, '<[^>]+>') as cand_nm
      3  from xmltable(
      4         '/vce/list/document'
      5         passing xdburitype('/public/feed.xml').getxml()
      6         columns
      7           cand_id   varchar2(30)  path 'content[@name="CAND_ID"]'
      8         , cand_nm   varchar2(80)  path 'content[@name="CAND_NM"]'
      9       )
     10  ;
    
    CAND_ID                        CAND_NM
    ------------------------------ --------------------------------------------------------------------------------
    H0OH18101                      HOOD, RONALD E
    H8OH07073                      HOOD, RONALD EDWARD
     
    

    or directly in XMLTable:

    SQL> select cand_id
      2       , cand_nm
      3  from xmltable(
      4         '/vce/list/document'
      5         passing xdburitype('/public/feed.xml').getxml()
      6         columns
      7           cand_id   varchar2(30)  path 'content[@name="CAND_ID"]'
      8         , cand_nm   varchar2(80)  path 'ora:replace(content[@name="CAND_NM"], "<[^>]+>", "")'
      9       )
     10  ;
    
    CAND_ID                        CAND_NM
    ------------------------------ --------------------------------------------------------------------------------
    H0OH18101                      HOOD, RONALD E
    H8OH07073                      HOOD, RONALD EDWARD
     
    
  • Cannot change the manifest.xml in Builder flash builder extension 2.1

    In flash builder, I installed the extension 2.1 generator to build an extension of photoshop. Database structure automatically created the manifest.xml file but I can't edit this file in the editor, and if I change outside of the flash builder does not reflect the changes.

    What I want is to add an icon for my extension.

    SOLVED!

    ===========

    When you create an extension extension Adobe Builder with Flash Builder 4.6 adobe project, a ".stage-extension" folder is created but do not appear in the Directory tab of Package Explorer. However, the file manifest.xml in the bin-debug folder is shown giving the impression it could be changed.

    To edit the manifest.xml file, navigate to the location of your project and find: YourPorjectName > .stage-extension > CSXS > manifest.xml

    Edit the manifest.xml for the changes to apply.

  • Show parts of the XML Feed in ColdFusion

    I work with ColdFusion/XML and want to display restaurant names in my application. The problem is the name of the restaurant are part of the keywords field and is included in a list of foods that the restaurant serves.

    <cfxml variable="eating">
    <catalog>
    <food id="bk101">
     
    <author>Burgers</author>
     
    <keywords>Burger King, pie, hamburgers, fries, milkshakes</keywords>
    </food>
    <food id="bk102">
     
    <author>Mexican</author>
     
    <keywords>Taco Bell, tacos, churros, burrito, gorditas</keywords>
    </food>
    <food id="bk103">
     
    <author>Pizza</author>
     
    <keywords>Pizza Hut, pizza, cheese, garlic bread</keywords>
    </food>
    <food id="bk104">
     
    <author>Chicken</author>
     
    <keywords>Chick-Fil-A, chicken, chicken wrap, sauce, Bananas Pudding Milkshake</keywords>
    </food>
    </catalog>
    </cfxml>

    I would like to get the name of the restaurant of the feed and display them in a list format

    • Burger King
    • Taco Bell
    • Pizza Hut
    • Chick-Fil-A

    The stream above XML is simplified, and I have a few hundred of this type of data to display. Fortunately the restaurant's name is always mentioned first in the field keyword, followed by the food. How to get and display the names of restaurant than from the stream above XML?

    You're already on your way with XML, so use XML syntax:

    #listGetAt(eating.catalog.food[i].keywords.xmltext, 1) #.

  • How to get the number of a xml file in flash?

    Hello

    It comes to my XML file

    <? XML version = "1.0"? >

    < ArrayHolder >

    < level1 > '1', '1', '1' < / level1 >

    < level2 > 2,2,1,2,2 < / level2 >

    < level3 > 1,3,3,3,1 < / level3 >

    < / ArrayHolder >

    I want to store level1 not in 'levelArray '.

    Thank you

    JaxNa

    you always have a quote but once it is fixed, divide each value of the node on the commas and then loop in the table pouring each element to a number.

  • Try to read the attributes of an XML feed, having problems

    Here is the XML file that I use (hoopstest.xml):
    < bbcareer version = "1.1.0" date = "2007, July 3" >
    < player name = 'John Doe' >
    < season year = "2004-05" gp = '22' gs = '0': = '343' minavg = "15.6" tp = "134" ptsavg = "6.1".
    FGM = fga "49" = '107' fgpct = '.458' fgm3 = '5' fga3 = '16' fg3pct = ".313" = "31" = "47" ftpct FTA ftm = ".660.
    Oreb = '20' suspicious = "42" treb = '62' rebavg = "2.82" pf = dq '37' = '0' ast = "11" wanting = blk = '29' '12' stl '8' = >
    < Tester > 1 < / Tester >
    < / season >
    < season year = "2005-06" gp = "26" gs = "15" min = "582" minavg = "22.4" tp = "274" ptsavg = "10.5."
    FGM = fga "107" = '184' fgpct = '.582' fgm3 = '5' fga3 = fg3pct "19" = '.263' ftm '55' ALE '82' ftpct = = = '.671.
    Oreb = suspicious "49" = "83" treb = "132" rebavg "5.08" pf = dq = "56" = "2" ast = "25" will = blk '49' = '31' stl '23' = >
    < Tester > 2 < / Tester >
    < / season >
    < season year = "2006-07" gp = "25" gs = "25" min = "768" minavg = "30.7" tp = '490' ptsavg = '19.6.
    FGM = "179" fga = "314" fgpct = '.570' fgm3 = '12' fga3 = '31' fg3pct = '.387' ftm '120' ALE '163' ftpct = = = '.736.
    Oreb = suspicious "89" = "106" treb = '195' rebavg = "7.80" pf = dq '74' = '3' ast = "37" wanting = blk = '72' '40' stl '26' = >
    < Tester > 3 < / Tester >
    < / season >
    < season year = gp 'TOTAL' = '73' gs = "40" min = "1693" minavg = "23.2" tp = ptsavg '898' = '12.3 ".
    FGM = fga "335" = "605" fgpct = '.554' fgm3 = fga3 "22" = "66" fg3pct = ftm ".333" = "206" ALE = "292" ftpct = ".705.
    Oreb = suspicious "158" = "231" treb = "389" rebavg = "5.33" pf = dq '167' = '5' ast = '73' wanting = blk = '150' stl "83" = "57" > < Tester > 4 < / Tester >
    < / season >
    < / player >
    < / bbcareer >

    The tester is just if I can check for the number of records is read.

    In my app below, 4 Tester records appear, but the attributes are not. No idea why? TIA.

    <? XML version = "1.0" encoding = "utf-8"? >
    "" < mx:Application xmlns:mx = ' http://www.adobe.com/2006/mxml ' layout = "absolute".
    creationComplete = "feedRequest.send ()" >
    "" < mx:HTTPService id = "feedRequest" url = " http://www.stats.com/hoopstest.xml" useProxy = "false" / >
    < mx:Panel x = "10" y = "10" width = "475" height = "400" layout = "absolute" title = "Player stats" >
    < mx:DataGrid = "20" x = "20" id = "dgPosts" width = "400".
    dataProvider = "{feedRequest.lastResult.bbcareer.player.season}" >
    < mx:columns >
    < mx:DataGridColumn headerText = "Test" dataField = "Tester" / >
    < mx:DataGridColumn headerText = 'year' dataField="@year"/ >
    < mx:DataGridColumn headerText = "gp" dataField="@gp"/ >
    < mx:DataGridColumn headerText = "Min" dataField="@min"/ >
    < / mx:columns >
    < / mx:DataGrid >
    < / mx:Panel >
    < / mx:Application >

    change the dataProvider to

    dataProvider = "{feedRequest.lastResult.player.season}" "

    When you get back XML you don't have to make reference to the root node.

  • Dynamic XML URL via HTML Param (does not work)

    The idea is to use PHP variables and it is returned from a form to change the URL path of the XML feed for Flash...

    The output HTML PHP is simple and works...

    Here's the catch PHP:

    < object classid = "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase =" http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7, 0,19,0 ' width ="1000"height ="800"title ="Gatherer">" "
    < param name = "movie" value = "flash/gatherer.swf" >
    < param name = "quality" value = "high" >
    < param name = 'Continent' value = "Continent = <?" PHP echo ("$Continent");? > ">"
    < param name = 'Zone' value = "area = <?" PHP echo ("$Zone");? > ">"
    < embed src = "flash/gatherer.swf" quality = "high" pluginspage ="" http://www.macromedia.com/go/getflashplayer ' type = "application/x-shockwave-flash" width = "1000" height = "800" > < / embed > "
    < / object >

    So I would get for example:

    < param name = 'Continent' value = "Continent = 1" >
    < param name = 'Zone' value = "Area = 5" >

    But it doesn't seem to work...

    Augh... forget it... Problem solved... :-D

    http://download.Macromedia.com/pub/Shockwave/cabs/Flash/Swflash.cab#version=7, 0,19,0 "width ="1000"height ="800"title ="Gatherer">


    http://www.Macromedia.com/go/getflashplayer"type =" application/x-shockwave-flash"width ="1000"height ="800">

    What it should be!

  • crossdomain. XML or?

    I have a built RSS reader and its working perfectly in offline mode, it gets all the rss xml feeds I want.

    now, I put the site online to test, now it seems that nothing much happening, except the rss feed of cnn is working, just aren't...

    I don't get any errors, or that it is simply nothing is loaded when I click on it.

    now have been reseacrching and met on the crossdomain policies > < that is somewhat new to me...

    I loaded it up, but still nothing is happening...

    I have this done crossdomain.xml.

    ---

    <? XML version = "1.0"? >

    < ! DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd" > ""

    < cross-domain-policy >

    < site permitted-cross-domain-policies of control = 'all' / >

    " < allow-access-from domain =" http://www.norea.nl/norea/Metanavigatie/RSS " />

    < / cross-domain-policy >

    --

    my questions are the following:

    1 - is the solution for me? or is it something else that bothers me?

    2. can I put this on my file root on the server or I can place it under the folder where the SWF file?

    3 can I put on the allow-access-from domain http://www.norea.nl/Norea/Metanavigatie/RSS/36846 or

    feed://www.norea.nl/norea/Metanavigatie/RSS/36846 or

                                                                         http://www.norea.nl or

    http://www.norea.nl/Norea/Metanavigatie/RSS

    using ac3 - player 10 - cs4 teacher

    Thanks in advance!

    The common solution is to use a proxy server that is located on the same server as the swf file, to capture data and pull it in Flash.  Here is an example:

    http://www.abdulqabiz.com/blog/archives/2007/05/31/PHP-proxy-script-for-cross-domain-Reque m.

  • Mozilla crashes when you try to load the addresses of rss and xml

    Whenever I try to load any stream rss or xml feed in the address bar (I tried four or five different ones), mozilla is trying to load the page, fails and then fails altogether. I tried to create a new profile to see if any existing modules or plugins were the problem and they do not seem to be as I arrived at the same result with a new profile as well.

    This happened yesterday when I was using version 9.0, I've updated since then to 10.0.

    It is not catastrophic, as the pages can always load in other browsers, but it's a bit confused. Any ideas?

    Thanks for the tips and I would have tried it had the problem solved not only himself.

    Weird.

  • Read the value of XML or JSON based on the name of the key

    I can't figure out how to get the value of the url to Image_Calendar1 JSON or XML data.  Sorry if it's 'obvious', but I am a new developer.

    I was cheating and ListItemData.value [1] .url but in this case, that the XML feed changes the number values of the moments which throws out of my method.  I need to be able to get the value based on the name of the key.  Is this possible?

    Thank you. Examples of the XML and the JSON /port.

    Okay, it might not be pretty, but what I do to solve my problem is to convert the ListItemData in JSON and stringify it.  I then split the string with 'key' and then count the lines.  Would not work if 'key' wasn't in each line, or if there are child elements of the child elements.  But... it works for me at the moment.  Future, me I hope, will be more intelligent and can fix it when it breaks.

    var testString = String (JSON.stringify (ListItemData))

    var javascriptcount = String (testString.split("key").length - 1).

    Console.log ("try to use the length:" + javascriptcount)

  • Interception of artifacts in parsing XML w / SAXParser

    I'm working on an application of XML parser for a Web site. It contained generated by users and they like put in "hearts" ("like in")<3') and="" the="" like.="" my="" parser="" is="" a-okay="" until="" it="" hits="" one="" of="" these="" inside="" a="" comment,="" then="" has="" a="" fatal="" error="" (fatalerror:="" expecting="" a="" name).="" how="" do="" you="" guys="" handle="" these?="" thanks="" in="">

    My XML feed looks like:

       12345  ParserCrasher1999  omg i luv parsers esp crashing them lol <3 omgkittenz
    
     Jul 1, 2009 9:46pm
    

    What component xml replace the following symbols in the xml (shown in blue) node/attribute values

    <    to  ="">

    > to &rt;

    & to &

    "     to   "

    '     to   '

    For example, the value <> must be converted to < 3

    It is important to avoid confusion to the xml parser.

Maybe you are looking for

  • How can I open Web sites that I put in the drop-down menu when I click on the blue arrow to the menu drop-down

    I have windows XP. I use msn.com for my homepage. I entered the sites I want to go to every day. These sites are in the drop-down menu when I click on the blue arrow down. When I click on any one of these sites, they are not open. What can I do to fi

  • Jpg don't print BlackBerry "BOLD"

    Hello I have the printer Photo Smart E model B110b. I can print from my BlackBerry smartphone from word / xcell. I can also print the PDF and text of the body of the email. But as soon as I attach a JPG photo it fails to print. It will simply print t

  • erasure of data from the hard drive?

    Hey Microsoft, I have a problem I had two boot(win_xp_pro_and_win_7_ult).they are the two 32 bit. so I tried exchanging win xp with win vista ult 32 bit (download, NOT on the cd). I started to install and after 4 5 steps made my pc restarted and it s

  • Derive COA key used in VMware

    I used a key COST to active windows 7, which is installed in VMware (virtual machine), and I can't use VMware, can I deduct the COA key and using it to install windows 7 on a physical PC? If so, can he activates online? Or I have to go through the ac

  • By selecting an option in a drop-down list displays a hidden text box and checkbox

    Being fairly new to the creation of pdf form I would be grateful for some assistance.I'm looking to have a number of choices in a drop-down list (dropdown1) show a hidden textbox (textbox1) and the box (checkbox1)The selections that would show are:iP