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
Similar Posts:
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
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
Jul 1, 2004
I add this actionscript code on the first frame. Variables are loaded but. The question is below the code.
[Code]...
View 2 Replies
Oct 8, 2009
I have the following build of a nested MovieClip.
mBreadcrumbs{ mHost{ mIconImg, mIconText } }
mHost is attached to an extended MovieClip class. Within the class itself when I test some trace results I get the following...
[Code]....
How come the movieClip within the classed MovieClip seems out of scope? and How can I access that movieClip (preferably relative from the classed MovieClip and not from the stage).
View 4 Replies
Apr 2, 2010
I have a Debug class I've written, and I'd like to include a static trace() method in there, unfortunately I have no idea how to then access global / top level trace as effectively I've blocked it with the local static scope.[code]
View 4 Replies
Feb 23, 2011
I´d like to know if there´s any other way to remove a nested movieclip from outside the current scope, instead of this]url]...
View 16 Replies
Oct 25, 2008
I'm not an experienced Actionscript user so I'm not sure what the normal way to associate a custom class with a movieclip that has been designed in the Flash IDE is. I made a class called Window to control a movieclip called TestWindow. There are some buttons in the movieclip whose
functionality I would like to assign the instance of class Window. How is this supposed to be done? Here's a representation of what I mean. I hope it is sort of clear. My actual problem is that the local variables are outside the scope of the onPress function but I also think there must be some other way of associating classes with movieclips that have been designed in the IDE.
View 3 Replies
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
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
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
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
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
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
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
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
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
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
Jun 14, 2009
I've looked and looked but i cannot find any way of using as3 scipt to make a movieclip follow a path.
View 3 Replies
Oct 6, 2011
I have a variable that will change,
and i want to make it my movieclip path, example[code]...
View 7 Replies
Oct 20, 2009
Now yes i'm getting started to AS3 but I still have a lot of blanks in my mind.For example in as2
ActionScript Code:
trace(this);
// Outputs : _level0.myMc.theContent.instance15.instance36
But in AS3 i'm getting just the ".name". Ex:
[code].....
View 6 Replies
Oct 11, 2005
I have embedded a external swf in a movieclip called "container". In the external swf is a movieclip "black_rectangle". How do I have to write the path to this rectangle? My version doesnt't work and i have no idea why not
[Code]...
View 5 Replies
Apr 16, 2009
I know how to do motion guides, but now I also want to control this movieclip with actionscript code, so that I modify the x and y properties, but STILL restrict the position of the movieclip only to that motion guide. I see that once I modify the x or y properties, the movieclip jumps off the motion guide
View 1 Replies
Apr 20, 2010
using a variable in a path to a MovieClip.
I have a menu with 4 tabs. When I click on one I want it to open and the previous one to close.
I'm storing the previous tab as a variable (_previousTab) but am having trouble adding the variable to the path to the MovieClip of the previous tab. The error Flash gives me is:
TypeError: Error #1010: A term is undefined and has no properties.
at MenuRun/menuOpen()
[Code]....
If I replace mainframe[_previousTab] with the name of the MovieClip it works fine. I'm thinking it's something to do with the variable being a String perhaps?
View 8 Replies
Apr 20, 2010
I'd like some help on using a variable in a path to a MovieClip. I have a menu with 4 tabs. When I click on one I want it to open and the previous one to close.
I'm storing the previous tab as a variable (_previousTab) but am having trouble adding the variable to the path to the MovieClip of the previous tab. The error Flash gives me is:
[Code]...
If I replace the variable _previousTab with the name of the MovieClip it works fine. I'm thinking it's something to do with the variable being a String perhaps?? Also, the trace statements return the desired MovieClip names.
View 5 Replies
Mar 2, 2011
I want to drag a object along a curved path , the curve is made up of 50 points(x,y) and I want to display the corresponding (x,y) coordinate of MC.
View 1 Replies
Feb 22, 2012
How could I do: To attach a movieclip (e.g. 'footsteps'), along a path (other movieclip).
That would be within a interval for attaching one movieclip at a time.
I would need rotation, i.e, the footsteps, should rotate according with the path direction.
View 2 Replies
Apr 27, 2006
If I want to change a set of movieclips that all have the same name except they end in a different number i.e
movieclip1
movieclip2
movieclip3
whats the correct actionscript to refer to a movieclips path in terms of the name plus a numerical variable i.e
movieclip + var
so I can cycle through each one by altering the variable.
something like
var x = 1;
_root."movieclip" + x.othermovieclip.gotoAndPlay(1);
my attempts don't seem to have worked!
View 7 Replies
Jun 21, 2008
I've been going through the Transitions Between External SWF tutorials and all is going well except I wish to situate my buttons in a movieclip and not on the main timeline as the tutorial teaches. The tutorial does point out; 'If your buttons are not located on the main timeline, you will have to change the path to the container movieclip. If your buttons are not on the main timeline, you must change container to the appropriate path.'Does anyone know how I'd do that to the below code? (for some reason the code tags were messing up so I've just copy and pasted.)
[Code]...
View 5 Replies
Sep 8, 2009
I am fresher to as2, I'm doing a game, in that i need to rotate the movieclip in a oval path(not in circular path)
View 2 Replies