ActionScript 2.0 :: Evaluate An Item Path From A String With Brackets []?

May 31, 2009

I have an SWF that has a var that is a string called fullpath. Now, if fullpath was "game.item1", How would I evaluate it as _level0.game.item1 in brackets [] rather than _level0.game.item1.Basically, how would I evaluate an item path from a string with brackets []? This is AS 2

View 5 Replies


Similar Posts:


Actionscript 3 :: Evaluate A Path String Which Contains A Nested Movieclip

Jun 6, 2011

This should be fairly simple but I understand why it doesn't work. I am hoping there is a clever way to do the following: I have a string 'movieclip1.movieclip2' I have a container movieclip - Container. Now to evaluate the string normally I would look something like: this.container['movieclip']['movieclip2']

Because clip2 is a child of movieclip. But I would like to parse or evaluate the string with the dot syntax to read the string as a internal path. this.container[evaluatedpath]; // which is - this.container.movieclip.movieclip2 Is there a function or technique to be able to evaluate that string into an internal path?

View 1 Replies

ActionScript 3.0 :: Using Square Brackets And String To Instantiate Class?

Oct 13, 2010

I have some classes stored in a swc which I would like to instantiate using data pulled in by xml - using a string to reference the classname.So where I would normally use

ActionScript Code:
var tagline:Sprite = new Tagline1();

I would now like to do something like

ActionScript Code:
var tagname:String = "Tagline1"; // really the string comes from XML
var tagline:Sprite = new [tagname]();

I have a vague idea this is possible using square brackets, but I don't seem to be able to find out anything about it.

View 5 Replies

Flex :: Evaluate An Expression In A String?

Feb 4, 2011

I need to evaluate an expression in a string at run time . Not sure how to achieve this in Flex. My requirement is as follows

var test:String = "myparams.id=10" ;
//test will be a string populated at runtime.
// I need to treat it as an expression and evaluate it at runtime

[Code]....

is it possible to do something like this action script 3?

I believe the eval function earlier allowed this, but now it has been depreciated?

View 4 Replies

Regex :: Evaluate String Of HTML And Split Into Individual Values

Apr 26, 2011

I have piece of ActionScript code which is supposed to evaluate a string of HTML and break it up into individual pieces. So a string like <p>Hi</p><span>Hi</span><a href="index.php">Hi</a> would be translated into:

1. <p>Hi</p>
2. <span>Hi</span>
3. <a href="index.php">Hi</a>
...

However, when I run a test version of this code, I get a value of null in return. I'm pretty sure my regexp string is good, but I'm doing something wrong in ActionScript. My code is below:
var evaluatedInput:RegExp = new RegExp('/<([A-Z][A-Z0-9]*)[^>]*>(.*?)</1>/');
var output:Object = evaluatedInput.exec("<p>Hi</p><span>Hi</span><a href="index.php">Hi</a>");
trace(output);

View 2 Replies

ActionScript 2.0 :: String To _level (path) - Hide A MC Depending On The Path Variable?

Nov 24, 2004

Here's what i'm trying to do: Hide a MC depending on the path variable as:

[Code]...

Well that doesn't work, for some reason, i can't use a string as a multiple level path..

View 5 Replies

ActionScript 3.0 :: Rotation Angle For An Item Moving A Long A Path

Oct 20, 2010

I need to move a movieclip dynamically over a path. The movieclip has a front which should remain pointing to front when moving along the path. So I need an angle at which the movieclip should be rotated regularly. This is something similar to the motion guide we have in Flash.

View 5 Replies

ActionScript 3.0 :: String To MovieClip Path, Scope?

Nov 11, 2010

I'm trying pause a video netstream within a MovieClip with a button (ppBtn). This works when I hardcode the movieclip path (like: etc. media2.ns.togglePause() ), but when I use a string in the path to access the MC's netstream it doesn't work. I've tried serveral ways to cast the string to a movieclip.name but I always trace a "null" or "undefined" of the mcpathI've tried to cast the string as a MC in different ways without any luck:

this[myString]
MovieClip(myString)
mySting as MovieClip()

[code].....

View 5 Replies

Regex :: How To Parse String (Similar To Path)

Mar 4, 2010

I have a string that is similar to a path, but I have tried some regex patterns that are supposed to parse paths and they don't quite work.

Here's the string
f|MyApparel/Templates/Events/
I need the "name parts" between the slashes.
I tried (w+) but the array came back [0] = "f" and [1] = "f".
I tested the pattern on [URL] and it seems to work correctly.

Here's the AS code:
var pattern : RegExp = /(w+)/g;
var hierarchy : Array = pattern.exec(params.category_id);
params.name = hierarchy.pop() as String;

View 2 Replies

ActionScript 3.0 :: Casting A String To Be A Resource Path?

Mar 18, 2011

I have a situation where I am trying to build a path to an xml node like this:

Code:
var personName:Object = ["xmLoader.xmlData.profilepage.p"]+num+[".p1name"];

Where "num" is a number passed into to the function. What is happenning is when I trace out personName after this code I get:

"xmLoader.xmlData.profilepage.p2.p1name"

instead of the value that resides at that node name (I can trace out p1name which is John from my processed xml earlier in the code).

View 5 Replies

ActionScript 2.0 :: Convert String To Array Path?

Jun 26, 2008

is it possible to do this? And if so how? the xml is converted to an Object using XLEFF; there are five nodes en the specified path: var path:String = "mCb.mXMLloaderObj.dm.lang[0].menu[0].node.length"; trace(path) this will offcourse output just the path as a string. But I want to trace something like: trace(Object(path)); and hopefully get the number 5, which represents how many nodes there are in the specified path in the Object. Is this possibly? Because I can't find anyway to do this

View 6 Replies

ActionScript 3.0 :: Drawing Animation On Path Out Of String

Aug 19, 2010

We need to make kind of a path animation out of a string (curved lines) drawing. The designer provided me with this: [URL]. We need a revealing (growing) type of animation that generates from the right, follows every corner and ends up in the left with that giant piece of "mop". Is there a way to do this professionally? Tried the old frame by frame masking, but it looks odd. Shouldn't be some AS3 libraries that just work with paths or that draw paths?

View 3 Replies

ActionScript 2.0 :: Using String Parameter In Function For Mc Path

Dec 17, 2004

I've got a problem with a function i'm using to dynamically move movieclips around - its like this at the mo:

function wjump(number) {
_root.content.aboutus.webwizard.targetY = startPos[number];
}

where startPos is an array with numbers.

I want it to be like this:

function jump(target, number) {
target.targetY = startPos[number];
}

so any clip can be moved as long as it has a targetY variable. But it won't work for some reason. Is there some sort of special syntax i should use like [] brackets? I tried this around the target in function body but it did not work.

View 7 Replies

ActionScript 3.0 :: Remove Item From String ?

Feb 19, 2009

how would I accomplish removing the <a href></a> tag from the following string and just leave the link text?

ActionScript Code:
var str:String = "<text><a href="event:http://www.google.com?tracking=123>Go to google</a></text>";

so that the end result looks like the following...

ActionScript Code:
"<text>Go to google</text>"

I was up too late and my brain hurts.

View 2 Replies

Flex :: Convert And String(path Of Image) To A Bitmap Object?

Jan 6, 2011

The solution should be straight forward but I cannot find it, my problem it's that I'm reading a xml, and one of the properties inside the xml it's a Bitmap path(string), when I`m reading this xml I would like to convert this string to a Bitmap Obj so I can use through my MXMLs.

View 4 Replies

ActionScript 3.0 :: Passing Flashvars Into Public Class And Assign This String As Path To XML?

May 29, 2010

I am trying to pass FlashVars into public class EventDispatcher to set the path to data.xml. I need it because the name and path of the xml file will be dynamically created. I need to use Flashvar in order to access the correct path.I was able to pass Flashvar from html page on timeline this way:

Actionscript Code:
var Flashvars:String = LoaderInfo(stage.loaderInfo).parameters.xmlfile;

Then, I was able to use it with new UrlRequest;

Actionscript Code:
var request:URLRequest = new URLRequest(Flashvars);

This method works really good, but this solution only works on timeline.I need to implement this technique in the class. Before I setup a static var for with the path to xml file. I'd like to be able to get FlashVar withing this class and assign this string to 'public static var DATA_XML_URL:String' I have there. This way I can pass Flashwar to the project I already have.

Actionscript Code:
import flash.events.Event;  import flash.events.EventDispatcher;  import flash.display.Sprite;  import flash.display.LoaderInfo;  import flash.display.MovieClip; import flash.display.Stage;public class ConfigManager extends EventDispatcher {

[code]....

View 3 Replies

ActionScript 3.0 :: Pass FlashVars Into Public Class / Assign String As Path To XML?

May 29, 2010

I am trying to pass FlashVars into public class EventDispatcher to set the path to data.xml. I need it because the name and path of the xml file will be dynamically created. I need to use Flashvar in order to access the correct path. I was able to pass Flashvar from html page on timeline this way:

PHP Code:
var Flashvars:String = LoaderInfo(stage.loaderInfo).parameters.xmlfile;
Then, I was able to use it for new UrlRequest;
PHP Code:
var request:URLRequest = new URLRequest(Flashvars);

This method works really good, but this solution only works on timeline. I need to implement this technique in the class. Before I setup a static var for with the path to xml file. I'd like to be able to get FlashVar withing this class and assign this string to 'public static var DATA_XML_URL:String' I have there. This way I can pass Flashvar to the project I already have.

Below is the class where I can implement it:
PHP Code:
import flash.events.Event;
import flash.events.EventDispatcher;
import flash.display.Sprite;
import flash.display.LoaderInfo;
import flash.display.MovieClip;
[Code] ......

View 3 Replies

Flex :: Accessing The Currently Selected Item In ComboBox Of Manually Entered String?

Nov 14, 2011

I just want to acquire the existing label from the currently selected item in a ComboBox. I populated it with a DataProvider with a list of strings and it will not allow me to get the currently selected label, especially if I input a new one, not included in the DataProvider

View 1 Replies

Actionscript 3 :: SelectedLabel Spark ComboBox = Returns The String For Display In An Item Rendered

Dec 20, 2011

this function bellow returns the String for display in an item renderer.

[Code]...

But i am blocked about the public function set selectedLabel(label:String):void is there anyone who know a function labelToItem or another solution to set my combobox selectedLabel

View 1 Replies

Flex :: Create A Custom List Item Renderer With Image(base64 Png String) At Runtime?

Mar 28, 2011

I'm trying to create a list with icons. There're a lot of examples but seems all of them are using embedded images.My problem is how can I create the list with icon from base64 png string at runtime?

View 1 Replies

ActionScript 3.0 :: Path Movement - Mc To Follow The Path Drawn Out By The Player's Mouse And When The Player Clicks Again, It Erases All Of The Path?

Jul 18, 2010

So I've created a script where a mc is clicked on and the player can draw a path using the mouse. I'm trying to figure out how I can get the mc to follow the path drawn out by the player's mouse and when the player clicks again, it erases all of the path.my code is below

Code:
import flash.display.Sprite;
import flash.events.MouseEvent;[code].....

View 14 Replies

ActionScript 3.0 :: Brackets In Variable Name?

Jan 27, 2009

I have to send information to an external vendor using their existing parameters. However, they have included brackets [] in some of their variable names. As you might expect AS3 can't resolve the variable name. Does anyone know a way around this?

[Code]...

View 3 Replies

ActionScript 2.0 :: No Parameters, No Brackets?

Jan 6, 2005

I was wondering why brackets are still given in actions that dont have parameters?

[code]...

They work without brackets too, dont they?Not that it makes a lot of difference, but I was just wondering

View 5 Replies

ActionScript 1/2 :: Passing Hidden Values With Brackets?

Nov 20, 2010

I have a form created using Flash CS3 and I want to pass the following hidden value name:
optionprod[ ]
The only problem is when I publish the file I get and unexpected "]" error. How can I pass the value with the brackets?

View 1 Replies

ActionScript 3.0 :: Make A Variable Name With Square Brackets?

Jun 20, 2011

I'm trying to do that trick where you make a variable name with square brackets. I think I don't fully understand what I'm doing though...

Code:
var cursorDirection1:Point = pt.subtract(rootpos1);
var cursorDirection2:Point = pt.subtract(rootpos2);
var farShoulder:int = 1;//1 = left 2 = right

[Code]....

I'm trying to avoid having to do a conditional to choose between cursorDirection1 or cursorDirection2. My last line there isn't working, I'm not entirely sure why. Assuming farShoulder is 1, the code should be interpreted as

Code:
cursorDirection1.normalize(findNormVar(cursorDirection1));

but I'm getting errors about the input being undefined.

View 9 Replies

ActionScript 2.0 :: Cannot Get Square Brackets To Target MovieClip

Jun 20, 2006

I'm stuck with trying to target a movieclip dynamically from a loop. I'm using the square brackket syntax but I can't figure out why it's not working. Here's what I'm trying to do:
Code:
this.t1.t1._alpha=20;
And here's how I'm trying to do it:
Code:
this["t"+1+".t"+1]._alpha= 20;

View 3 Replies

ActionScript 2.0 :: Trouble Grasping Square Brackets

Aug 10, 2007

I'm reading a book on ActionScript and I'm in the section on controlling movie clips. I'm reading about the basic methods, and I'm starting to realize I still don't fully understand the significance of square brackets.[code]Obviously, this is the prototype form of the lineStyle() method. What I don't get is why "thickness" is the only parameter without square brackets. I know that square brackets are used for retrieving data from an array or object, but either my book doesn't cover why they're used like this in a method, or I just completely blanked it out.

View 2 Replies

ActionScript 3.0 :: Passing Optional Variables In Brackets

Feb 13, 2009

Let's say I have a function in a class with two required parameters and two optional:
Code:
public class Person extends Sprite {
private var haveToWork:Boolean;
private var hoursOfSleep:Number;
private var gotANewVideoGame:Boolean;
private var gotAHotDate:Boolean;
[Code] .....
All of that setup for this question: on the second call of the areYouHappy function, how do I keep the gotANewVideoGame variable from having a false value assigned to it?

View 2 Replies

ActionScript 3.0 :: Get Array Position Of Clicked Item To Fetch String From Another Array?

Mar 23, 2010

I put my mc's in an array.I have another array with strings.when the mc is clicked I want to get its position in the mc array and return the string from the same position in the string array.How do I do that?

PHP Code:
var numBtnArray:Array = new Array;
function addNumButtonsToStage():void{

[code].....

View 4 Replies

ActionScript 3.0 :: Regex Pattern Ignores Any Letters In Brackets?

Feb 22, 2010

I'm working on a flash chat and I'm having problems with Regular Expression.
 
In Javascript this runs ok:
 
[code]...

My regex pattern works for but it ignores any letters in brackets.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved