ActionScript 3.0 :: Parsing A "url" Element From An XML File?
Apr 23, 2009parsing a "url" element from an XML file that will load an image/swf into a container?
View 5 Repliesparsing a "url" element from an XML file that will load an image/swf into a container?
View 5 RepliesTrying to parse the following XML:
Code:
private var pbStr:String = ( <![CDATA[
<phoneBook>
[code]....
I have a 6mb XML file, resetting my script timout in CS4 doesn't help. (it does have some unnecesarry HTML in it I could probably do away with, but that would be the wrong direction I think)I can't even trace it.I am loading it into an :XML object and trying to work with it, but all to no avail.
Here is my Class:
Code:
/**
User class
author: Manaburn
[code]...
The for each loop wont iterate for some reason, but the for loop will, then again, it always crashes me with:
Code:
Error: Error #1502: A script has executed for longer than the default timeout period of 15 seconds.
(which as I stated above I reset, but as this is a .as file, I don't think it allows that.)
I want to parse a dae file for getting the texture name. But when I am trying to read dae as xml it read the entire dae file but the problem is that I can't access it's elements
My Code:
package{
import flash.events.Event;
import flash.net.URLLoader;
import flash.net.URLRequest;
public class XMLReader{
[Code] .....
I'm trying to parse this XML but without success? How to parse that xml file?
Code:
<site><point type="arr1">
<title>Universal</title>
<desc>Test2</desc>
<title>Omega</title>
<desc>Test2...</desc>
[Code] .....
In my flash, the socket server returns some xml data that I need to parse, but it seems that the only way to start the XML object is with the XML.Load() which loads an external file, but my XML file is already loaded into a variable
trace("raw: "+msg);
msgArea.htmlText += "update remote player loc";
var playerLocXMLOb = new XML(msg);
[Code]....
I am trying to parse data from a user created .txt file and convert it into an Array. This data will eventually be used to output an .xml file or to generate html. The user has no experience or knowledge of XML otherwise there would be no need for this post, I would just parse XML. The data will be set up as a group of items (term and definition, question and answer as well as a type to determine the attributes of the item) like so:
1. How many licks does it take to get to the center of a tootsie pop?
a. The world may never know.
t. ML
2. What is the square root of 69?
a. 8 something.
t. SA
I am currently able to allow a user to have an Open Dialog box to open a local .txt file from their computer. I am also able to read the data and trace it via actionscript. I cannot however split the data where I want to into an array. I cannot use '' to split at as the data from the .txt file may sometimes be multi-line for the question or answer.
So I need to be able to; a) split on a number with a . and a space (eg. '1. ') b) split on a-e with a . and a space (eg. 'a. ') and c) split on 't. '.
Here is the relevant code I have so far:
ActionScript Code:
import flash.text.*;
import flash.net.FileReference;
var tf:TextField = new TextField();
[Code]....
I was just trying to hardcode a couple things like splitting on 'a. ' and 't. ' but it only does one split, whichever comes last.
I'm trying to call to a date in an external txt file (losttime.txt).The date is written as: 2012, 1, 09 in the .txt file.I've loaded the txt file and need to calculate the amount of time between that date and today.Right now, I have the date set in the lostTimeDate variable, but need it to call to the date in the txt file instead. I assume this has to do with Parsing the date, but for the life of me, cannot figure it out.Here is my code:
var myTextLoader:URLLoader = new URLLoader();
myTextLoader.load(new URLRequest("losttime.txt"));[code].......
I am having trouble parsing XML from a PHP file that essentially spits out XML.
[URL]
When I copy the exact XML and save it as an XML file, it works?!
The error is reading, Error opening URL [URL]
Could this have something to do with the PHP file being online and the SWF running locally?
I'm using an external XML file to populate a video playlist. So I'm parsing the attributes like this:
tileList.addItem({label:item.attribute("description"),
label:item.attribute("details").toXMLString(),
data:item.attribute("src").toXMLString(),
source:thumbnail});;
But the "details" attribute is not showing up. Is there something I'm doing wrong? The XML element that holds the attributes looks like this:
<vid description="My description"
details="More detailed description."
src="movies/myMovie.flv"
thumbnail="thumbnails/myImage.jpg" />
I am loading in a bunch of text (and other data) from an XML file into Dynamic Text Fields on my stage via an XML.load call. Below is one example of one entry of my XML file:
PHP Code:
<stillDescriptions><text>Mack Trucks of North America came to us tothem create marketing m
[code].....
I need to load in a large CSV file (>1MB) and parse it. Generally this is quite easy to do by splitting first on linebreaks and then commas. The problem is though that some entries contain Strings that include their own commas. When this spreadsheet is converted to CSV, the lines containing commas are wrapped in quotes.
I've written a parser that first escapes all the commas in these strings, then splits it on linebreaks and then commas, and then unescapes the values again.
This is quite a slow process for such a long string, as I need to iterate through the whole string. Does anyone know a faster or more optimised method of dealing with this?
i have a large text file full of several chunks of binary data, each chunk separated by "---"
so it looks like this:
[Code]...
I have loaded the data in an untyped variable. var data:* = URLLoader(event.target).data; so data contains all the text file content. my problem is that i want to parse this text file and put each chunk of binary data into a ByteArray.
any ideas of how i can go about doing that? i have never dealt with untyped variables before so i am not sure what to do. and i don't want to lose the binary data representation by casting (if that happens).
I am totally new to actionscript (barely could set up the IDE environment for Linux). I have trouble parsing an xml file containing some namespaces. All the tutorials and samples i found online are not working for me. the file looks like this:
[Code]...
I got a problem with adobe flash cs4 : I can't launch it normaly and its says that a fatal error has occured.. I really don't know what I must do.. Please, help me.... I've just lost like 3 or 4 files of adobe by trying to reinstall it.
View 3 RepliesI know that there is no such function as getElementByName in Flex but I also now that you can do this["object_id"] to get the element of the application u're in.What about getting an element inside another element?I've tried making element["id"] ? But in my try-catch it always runs the "catch" part..how do I get an element inside another element just having it's id in dynamically created string form?
View 2 RepliesI have flash where there is a link for song download. And, at the bottom of the flash I've a count, loaded thorugh flash vars which should increment everytime donload button is hit. Please let me know what approach should i take to do that. can i call a Java method on donload button which will insert a row in the table and and then get the count and render it to the count variable in my flash?
May be this extremely confusing. Here is a very similar example on how it is done. This is actually very similar to what i want to do. [URL] on this link there is count below which increments you hit the download button.
I am working on a sample map application using Flex 4/fxg? Now I have got FXG paths held in Group elements with id's( I have assigned path's id's to the corresponding group container)? But when I click anywhere in the map, I do not get the clicked group as target/currentTarget in event handler. How to determine which element is clicked?
[Code]...
I've built a rather robust tooltip class recently that attaches and draws a single tooltip sprite to the root, then uses MOUSE_OVER to detect when it is over a tooltippable object, and shows the appropriate tooltip text. At the moment, I'm ensuring that any elements in my application which wants to take advantage of showing tooltips implement the ITooltippable interface, and expose a public getter, get tooltip().
[Code]...
Basically I have 14 text boxes, each box draws its content from an external txt file. Next to each text box is a button. I want the button to be either visible=true or visible=false depending on weather or not the text box has content or is "undefined" Here is what I have so far, and it's not working:[code] I would like a FOR loop to just run through the variables and check to see if any of them are undefined. if it is, then make the correct send button invisible.
View 8 Replies<root>
<function name="lala">
<metadata name="foo" />
[code].....
I am unable to access 2nd element and 3rd element (I can acces 1st element.[code]
View 1 Replieswhen I create an element with this method :
this["nodeValue"+i] = new TextField();
(surely in dynamic class )
then I want to change instance name of that element.when I trace this["nodeValue"+i].name.I got a different name for that element ! f ex : instance8 .how can I get "nodeValue"+i from my element and change that .is it read only ? I want to swap tow element's instance name !
for example :
this["nodeValue"+i] to this["nodeValue"+i+1]
I am having a problem with my drop traget. I have the ability to drop and duplicate multiple objects on a stage. I have a clip set up (canvas) which is used for if someone drops objects onto this it duplicates the dragged clip.
However the problem I am having is that if someone tries to drop an element on top of an already drop/duplicated element, it wont duplicate the new clip. Its like it thinks that the dragged clip is not over the canvas.
i need to split a large text file into an array at line breaks so one array element = one line.i have tried the using "" in both match() and in RegExp but it doesnt work.i had the g and m flags on. tried the $ sign too.
View 8 RepliesI have a couple of questions that I hope someone can answer. I have this ActionScript that reads the XML file into the flash movie. The poblem is this: The XML is in this format:
<listitem name="TEST" url="rtmp://000.000.000.000/">
<stream len="-1" name="Test" start="0"/>
<group name="Testing"/>
</listitem>
[code]....
i get a syntax error when everything seems to be in the right place, out..home.swf
PHP Code:
stop();
var xmlLoader:URLLoader = new URLLoader();
[code]........
I want to get id from this [URL] get this id in as3 and use this id in xml and show the message in text field.
[Code]...
This is my first day to try and use XML to display dynamic text in Flash. My skillset is weak with AS3 and Flash, but I found some tutorials online and I have managed to successfully display the first record in mytest.swf. However I also seem to have all records displaying in each dynamic text box as well. My loop isn't stopping after each record. It's reading everything. And dumping the results into each text field.
I need to only display each record individually. Once I accomplish that, I will need to include some form of navigation. Lets say buttons that perform a NEXT, PREVIOUS, LAST, FIRST type function. Then lastly, I'll need to include some type of search navigation option by item number. I assume that I'd have to have a second screen that links to my primary results screen with an input form for the item number.
[Code]...
I am accessing an xml document in actionscript, I know flash can see the xml as I am tracing it but when I add the .text() funtion to my trace to strip out the tags by trace doesn't see anything.
function LoadXML(e:Event):void {xmlData = new XML(e.target.data);ParseXML(xmlData);}function ParseXML(thexmlInput:XML):void {
trace("XML Output");trace("------------------------");trace(thexmlInput.wrapper.page);
[code].....