ActionScript 3.0 :: E4x Dot Syntax Not Working?
Jul 7, 2009
I think this should be pretty simple but I have been trying to figure it out for ages. I have an xmllist that i am creating from an xml object so I just get a list of nodes, I want to target each of the page nodes using square bracket syntax like this:
xml..page[0];
but for some reason it isn't working. My xml file is loaded in and is written below.I need to be able to target the nodes numerically,
xml file:
<?xml version="1.0" encode="UTF-8"?>
<root>[code].....
View 2 Replies
Similar Posts:
Jan 24, 2008
this is all i have in the script. and it gives me a syntax error on the first line! classpath is ~/ActionScript/ and the classes live in ~/ActionScript/com/<classes>. what in the nine levels of hell am i doing wrong?
[Code]...
View 3 Replies
May 25, 2009
I am currently designing a website and creating a simple mp3 player with an on / off function but doesn't appear to be working. I am getting this error: 1095: Syntax error: A string literal must be terminated before the line break.1083: Syntax error: end of program is unexpected.1084: Syntax error: expecting rightparen before end of program.1084: Syntax error: expecting rightparen before end of program.1084: Syntax error: expecting rightparen before end of program.1084: Syntax error: expecting rightparen before end of program.
I have uploaded a zip file containing the images and FLA file. I'm wondering if someone wouldn't mind taking a look for me and telling me how to fix this problem: [URL]
View 4 Replies
Jul 14, 2011
using action script...
stop();btn001_btn.addEventListener(MouseEvent.CLICK,showimage1);function showimage1(event:MouseEvent):void { gotoAndPlay(10);}btn002_btn.addEventListener(MouseEvent.CLICK,showimage2);function showimage2(event:MouseEvent):void { gotoAndPlay(20);}
however movie is playing without stopping to "Listen" for a Mouse CLICK. Images placed at frame 10 and 20 should appear only when CLICK'd.
This code is straight out of Classroom in a Book CS4.
View 5 Replies
Apr 1, 2011
I have this code gameOver1.text = (count1.currentCount / 100).toString();but i want to add some text before i display the current count. for instance in gameOver1.text i want to say
View 4 Replies
Mar 15, 2009
I've just found this ActionScript and tried it out in my Flash MX file. However, when I preview the movie, it comes up with 2 errors - either for unexpected } or expected {.[code]...
View 2 Replies
Sep 1, 2010
Getting Syntax Error with XOR. My script is as follows[code]...
View 24 Replies
May 24, 2011
I have this XML structure:
<numb>
<variable>
<name>john</name>
[code].....
View 1 Replies
May 19, 2004
How can I replace this code to use dot syntax instead of slash?[code]...
View 1 Replies
Dec 15, 2005
I've got a for loop and some fuctions working, but can't get one line of code to work. The red line below is what I'm having a hard time with. I'm calling a function called "moveit". If I insert moveit(x1, y1); then it works, and my movieclip is moved to the x and y positions that I specified for item #1. Though I want it to work for 10 items (I only have coordinates for two here, and will add the rest later).
I've searched my ActionScript book and just can't figure out what the syntax should be for calling that function.
[Code]...
View 14 Replies
Jun 2, 2009
I'm pretty new to Flash and my first project is my own on-line portfolio. I found (what I think is a Flash 5) code on this board to create an infinite menu. I'm trying to tweak it so that it works in AS 2.0 for CS3 and I keep getting a syntax error. [code]...
View 2 Replies
Oct 15, 2009
explain in very very basic terms (or direct me to tutorial) what is happening in this syntax:
[code]...
this was part of and example on how to optimist code (posted in this forum awhile ago), specifically for replacing either:
[code]...
I understand how the brackets work, and that X is a variable (I presume a Number).
I assume that '^' == 'to the power of'.
I dont understand why they are using >> or 31 at all.
View 2 Replies
Jun 8, 2004
This animation I'm working on has a dozen pairs of movie clips (with only two library items, one for each type in the pair) with instance names of the form "x" and "xgoal" (this is a drag and drop thing).When I'm writing AS for the "x" clip, how can I refer to its "xgoal" generally? I tried something like:goalName = this._name + "goal";And then using the goalName variable in my dot syntax (retrieving the _x coordinate for the goal clip):this.xgoal = _root.goalName._x;But, of course, that did not work. How can I get around this?
View 1 Replies
May 19, 2004
How can I replace this code to use dot syntax instead of slash?
Code:
square.origX = _x;
square.origY = _y;
[code].....
View 1 Replies
Sep 15, 2009
I have an array like this:
Code:
var myData = new Array();
myData["name"] = "John";
myData["Age"] = 35;
What is the syntax to loop through and get the key and value? I have tried for each and for in but they just give me the value of "John" or "35", how can I get the key e.g. "Name" and "Age"?
View 2 Replies
Oct 27, 2010
i'm trying to make a simple flash movie in cs4. scene 1 > click a button > gotoandplay scene 3 thats all.
[Code]...
View 1 Replies
Sep 20, 2009
When I am trying to Parse the following XML using this code I am not getting any result..However if the xml file is truncated to have the <organizations> as the root node. I guess the problem is with the namespace, however not certain how to go about fixing it.been trying to resolve this for 3 hours now...
AS3.0 Code
var xmlManifest:XML = new XML();xmlManifest.ignoreWhitespace=true;var strManifestPath:String = new String("imsmanifest.xml");var urlrManifestURL:URLRequest = new
[code]....
View 6 Replies
Dec 5, 2009
I have a variable of type string which has been populated in Frame2( from an Input Text Field) with the name as g_Name.In Frame-4 I am performing a concatenation as mentioned below:var displayResult: [code].....
The problem is that it gives s Syntax Error for the second line.....
View 2 Replies
Jun 9, 2010
Is there a file or some code I could make in order to add an extra color or two for syntax highlighting? Like having a certain color for function names and a different one for numbers etc.?
View 1 Replies
Dec 1, 2010
My son is doing a self-study course and is currently haviong a problem with the syntax of a condtional statement in Actionscript 2The folllowing code,
if (colour="red") {gotoAndPlay("BadEnd_red")}
else if (colour="blue") { gotoAndPlay("BadEnd_blue")}
else //colour ="green" { gotoAndPlay("BadEnd_green")}
[code]....
View 3 Replies
Mar 24, 2009
I am looking for examples on typing the criteria for if /then statements, for loops, etc. Things such as the way to type "or" (|) and the way to say "not equal to", etc.
View 3 Replies
Aug 11, 2011
I have put all button inside movieClip called "container" and I have added "container." inside for loop and now I am getting errors.
for (i=8; i<15; i++){
container.this["button" + btns[i].name.replace("btn","")].mouseEnabled = false;
}
View 7 Replies
Apr 2, 2012
I'm getting this errormessege whole the time and I've tried for days now to fix it. ATM I'm programming an android application using flash cs5.5 and AS3.The Error message Line1 Infobtn_15 :1086 Syntax error: Expecting semicolon before rightparen.
Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT.*;
Infobtn.addEventListener(TouchEvent.TOUCH_TAP, fl_TapHandler_15);
function fl_TapHandler_15(event:TouchEvent);
[code].....
View 7 Replies
Nov 22, 2009
I'm porting an existing java library to actionscript and since they are both realy similar, 95% of the work is simply flipping variable and function definition around.
public int foo(int bar) {}
//converts to
public function foo(bar:int):int {}
Is there a tool to automate the transition between java syntax and actionscript? I'm not looking to compile java to swf, just transform the source code to be (often nonworking) actionscript.
View 1 Replies
Jun 24, 2010
The braces shown below after ...ret):String are incorrectly being highlighted as red I'm using the following syntax definition file for actionscript: [URL] 2 Questions: Does anyone happen to know off-hand what causes this weird matching? Is there anyway of identifying the current syntax matching group under the cursor?
View 1 Replies
Jan 17, 2012
have anyone can tell me what syntax error on this actionscript (actionscript3.0)?
var rotY: Number = (mouseY - (stage.stageHeight / 2)) / (stage.height / 2) * 400;
View 2 Replies
Feb 27, 2012
I am trying to create a preLoader for my animation and I keep getting a 1083 syntax error. Why?
stop();
addEventListener(event.ENTER_FRAME,preLoad)
function preLoad(e:event):void{
[code]....
View 1 Replies
Feb 15, 2010
Bit of a newbie issue, trying to work with the Serializer class from sephiroth[url]...
Not really sure how to go about using it though. It downloads inside a directory structure, so I've copied the first folder into the same folder as my .fla file, then I use this line to import it[code]...
View 1 Replies
Nov 25, 2010
I am using a for loop with "i" as a counter. I have some dynamic text fields (name0_txt, name1_txt, name2_txt...etc.) in a mc called namesList_mc and some variables being returned from php called name0, name1, name2 etc.Where and how do I then use "i" to avoid writing the same code hundreds of times.
namesList_mc.name0_txt.text = variables.name0;
namesList_mc.name1_txt.text = variables.name1;
namesList_mc.name2_txt.text = variables.name2;
..etc.
View 3 Replies
Jan 14, 2011
This works fine
ActionScript Code:
mc1.onRollOver=function(){mc1._alpha=50}
mc2.onRollOver=function(){mc2._alpha=50}
[code]......
View 7 Replies