IDE :: Getting The _root Via JSFL?

Mar 2, 2009

I an trying to get the _root node of an FLA via JSFL. A co-worker wrote a script that uses _root via actionscript. I was trying to wrap that code into a panel. I have all the trace functionality running and everything running accept I can't seem to access the "_root". I have tried _level0, and almost everything I can think of... I am looking to have JSFL return the _root object from the current file the same way can can hand "_root" to a function. (IE: myfunction( _root ); ) here is my current attempt:

Code:
var doc = MMExecute( "fl.getDocumentDOM()._root;" );

View 1 Replies


Similar Posts:


IDE :: Execute A Jsfl Function From A Jsfl File Instead Of A Full String With MMExecute?

May 25, 2009

Is it possible to execute a jsfl function from a jsfl file instead of a full string with MMExecute? And above of that how can i change the base class with jsfl? i created a panel to create certain displayobjects but i really need to change the base class instead of the normal class name.

View 1 Replies

ActionScript 2.0 :: Change The _root.broj And _root.logo Variables Inside The Function?

Jan 14, 2010

In the code below i want to change the _root.broj and _root.logo variables inside the function which returns values from .php file. Inside the function everything works fine and all values are correct but when i trace var broj outside the function it's still 0.

var result_lv:LoadVars = new LoadVars();
var send_lv:LoadVars = new LoadVars();
var broj:Number=0;
var logo = new Array();

[Code].....

View 1 Replies

ActionScript 2.0 :: _root.cargo Are Multipled By 10 And Added To _root.totalscore?

Feb 27, 2003

im lookin to make this so that the points taken from the _root.cargo are multipled by 10 and added to _root.totalscore

[Code]...

View 2 Replies

ActionScript 2.0 :: _root._root[eelmine].nextFrame()?

Sep 14, 2004

if a condition is true, then:_root.(MC with instance name that is the value of "_root.eelmine").nextFrame(); is this correct?_root._root[eelmine].nextFrame();

View 16 Replies

ActionScript 3.0 :: No Longer Move The "_root" By Changing The _x And _y Positions Of The _root?

Jan 26, 2009

I just recently began migrating from AS2 to AS3, and I have of course realized that I can no longer move the "_root" by changing the _x and _y positions of the _root (which no longer exists in AS3). How can I do this in AS3 (specifying _x, _y, _z possibly of the "_root")?

View 2 Replies

CS5 :: JSFL Commands Slow In It

Jun 13, 2010

The execution of JSFL files seems to have slowed down in Flash CS5. Or, at least, the updating of the display has been severely slowed down.  I have a command I use all the time -- so much that I don't even think about it -- that worked fine in CS4 and earlier, but in CS5 it seems to execute too slowly. My command is a replacement for the "Step Forward One Frame" and "Step Backward One Frame" commands in the control menu (the "<" and ">" keys). I wrote them so that the selected symbols remain selected when going to a new keyframe.  Of course, I use this all the time just like I did with the original "<" and ">" keys, and they need to run fast enough that I don't notice their execution time. They don't do that much processing at all, so it really shouldn't be a problem.

I also wrote some functions for profiling, and they indicate that the command is actually running in a reasonable amount of time (around 50ms). When I run it again immediately, though, the execution time balloons to about 300ms. Not only that, but in both cases the display takes its sweet time updating itself.  It seems to wait until all activity is finished, and then updates. This means that when I execute the command repeatedly (keyboard-scrubbing the timeline) I don't get to see the current state of the stage until I stop completely and wait for it to update.

As I said before, I never had trouble with this in CS4 and earlier. So my question is: is there any way to tell Flash to update its display in a command, so that I don't have to wait for Flash to get around to it? Relatedly, is there any way to give the javascript interface a higher priority so it'll execute commands faster? keys). I wrote them so that the selected symbols remain selected when going to a new keyframe. Of course, I use this all the time just like I did with the original

View 6 Replies

AS 3.0 :: AddChild Functionality In JSFL?

Apr 8, 2011

Is there a way besides pasting frames inside a layer to add an element into a timeline? I'd like to replicate the addChild functionality from actionScript into JSFL. So basically, I'd like to add a bunch of movieClips instances into another movie clip, does anyone know how to do this in JSFL?

View 1 Replies

ActionScript 2.0 :: Run JSFL Command Through It?

Jan 13, 2008

To issue a command from an ActionScript script:

Use the following syntax (you can concatenate several commands into one string): MMExecute(Javascript command string);

I wanted to know if this opends the possibility of having a swf file, that when run, can execute jsfl script that will create a folder on the user's computer?

View 4 Replies

IDE :: Jsfl - Save The File As CS3?

Jun 8, 2009

So a major problem I have been having is that I run CS4 on my laptop, but the people i work with run CS3 and its quite a nuisance to have to constantly remember to save the file as CS3 every time i want to save. Does anyone have any quick-fix ideas that don't involve forcing my coworkers to buy CS4 or me downgrading?

View 5 Replies

Add Ruler Guides To Stage With JSFL?

May 21, 2009

Since Flash doesn't allow you to specify exact coordinates to place guides, I wanted to create a command to "fit guides to stage". When manually dragging and watching the "Info" panel, you always end up skipping pixels, causing you to zoom way in for precise coordinates.
 
I can't seem to find (and it's possible it doesn't exist) a way to place guides on the stage using JSFL.

View 1 Replies

Delete A Shape For Real In JSFL?

Sep 24, 2009

I have this big JSFL project I'm working on that involves deleting a raw shape (ungrouped) and then replacing it with another one. The problem is that the original shape doesn't always actually get erased (I haven't figured out the precise circumstances where this happens yet though).  Even if it does get deleted, though, when I draw the new shape on the stage (using Path.makeShape), the new shape has extra vertices where its edges cross those of the original shape. So even if I end up with the correct-looking shape on the stage without the one that was there before, my shape I just created is likely to have extraneous vertices (and I need the vertices to be unchanged).

View 2 Replies

Professional :: Adding Frames With JSFL?

Mar 29, 2010

I have a bunch of fla files with a sequence of frames that need to be readjusted due to a change in frame rate requirements. How can i add frames to specific frame numbers using JSFL script? Or at least what API can i use? Is there one in one of the properties and methods of the DOM object from fl.getDocumentDOM?

View 2 Replies

Ant - JSFL Delete Flash Aso Files?

Nov 25, 2009

I'm using FDT 3 and Ant to make a jsfl file that is then executed to compile fla's and I'm trying to figure out how to get the jsfl to remove the aso files. I've tried storing the path to the aso files in a property in Ant the is then added to the jsfl when its created and it works to remove the aso file but it means that everyone must edit that property to fit their machine, we are using Macs and Windows.

My question is, is there a way to have jsfl find and delete the aso files?

View 2 Replies

Flash :: Fill Figure With JSFL?

Feb 14, 2010

I draw figure in Flsh ID with JSFL methods, for example

// draw rectangle
doc.addNewLine({x:0, y:0}, {x:2000, y:0});
doc.addNewLine({x:2000, y:0}, {x:2000, y:500});[code]....

how can I fill it, because this way doesn't work doc.setFillColor('#0000ff');

View 1 Replies

JSFL - Detecting When Element Has Been Flipped

Oct 3, 2011

I'm writing an exporter in JSFL, to export Flash animations into a format that can be replayed in a custom player. The exporter basically iterates through the timeline and through all the elements at each keyframe, and writes out the element's name, position, rotation, scale and a local offset. These are read into the custom player which feeds the data to a sprite engine to recreate each frame of the animation. What I want to be able to do is detect whether a given Element has been flipped (i.e. in Flash you Select the element (a symbol), then Modify->Transform->Flip Horizontal) so that the exporter can include that information too, allowing the sprite engine in the player to flip the UVs of the texture to replicate what's happening in Flash.

This would be useful for (say) using one symbol for a character's right hand, and just flipping it to be their left hand, rather than having to create a whole new symbol. Unfortunately I can't see any way of finding this information out. None of the information I have available for the Elements seems to imply that any kind of flipping has occurred. How can I detect flipping? If it can't be done algorithmically, I'd settle for the animator having to manually indicate that a symbol had been flipped (by creating some kind of plugin that gives them a tick-box which writes a value into the Element with setPersistentData(), for example), but I don't know how to make that sort of plugin either.

View 2 Replies

Create And Save .as File Using JSFL?

Mar 14, 2012

Is there a way to create and save .as file using JSFL?I know that you can save and rename Fla documents, but what about .as classes?

View 1 Replies

IDE :: Repositioning Everything On The Stage (across All Frames) With JSFL?

Dec 16, 2011

I have a bunch of old FLAs with one set of dimensions, including a 60 pixel offset along the y axis. I'm writing a jsfl script to resize the stage (works), delete some unneeded layers (works), and reposition everything (doesn't work) What I'm using is:

fl.getDocumentDOM().selectAll();
fl.getDocumentDOM().moveSelectionBy({x:46, y:-60});

When I run my script, the items do in fact get moved, but on tweened clips, they get "doubled dipped," it seems: if I compare the new x and y values of, say, the end keyframe of a clip (only tweened for alpha, for example) is exactly 46 pixels farther right and 60 pixels higher up than it should be.Is there a better way to reposition everything that avoids this "double dipping" among tweens? I'd love to know! There's got to be a way, and I feel like I'm so close, but not quite there. (Of course, I'm probably way offEdit: I've performed the steps manually by turning onionskinning on for multiple frames, selecting all frames, then dragging a selection rectangle across everything on the stage, then moving everything by the desired amount, which works: when I look at the history and view the js for those steps, they look exactly like what I've typed into my script.

View 1 Replies

JSFL For Automatically Import Ai File To Flash?

Nov 18, 2009

Is there a way to use JSFL to import ai file to flash and automatically create all shapes from illustrator as MovieClip? I want all of them to be in movieclip but amount of illustrator layers are too much to handle with manual hand-tick. Is there anyway to do this?

View 5 Replies

Professional :: [JSFL (fl Cs5)] Fl.selectElement Is Not A Function. Same With FindObjectInDocByName?

Jan 6, 2011

What am I missing ?

// adobe's exemple
var nameToSearchFor = "test";[code]........

View 25 Replies

Professional :: JSFL Parser Converting To Bitmaps

Sep 19, 2011

I am evaluating the possibility of developing a JSFL script to parse a FLA and need to know first if it would be able to do what i want to do. I need the script to parse through all the library's linked assets, recursively go through their children, replace all the children of type "Group" with a bitmap and then save that FLA as a new file. I haven't received an ok to develop this yet at work, but i'm trying to evaluate the possibility for a proposal.

View 1 Replies

Flash :: JSFL - Reading Metadata OnDocumentChanged?

Mar 24, 2011

I am building a flash panel that reads metadata from a .fla when it is active in the Flash IDE. This panel is also storing metadata in the .fla and that is no problem. What is problematic is that I do not know how to stop the event listener from listening for onDocumentChange.

I want it to listen for it as long as it is open, but when it's closed it should clean up after itself because trying to read metadata every time a new document is selected is not a very nice thing to do.

I have tried to listen for all kind of events in the panel to detect when the user closes it, but with no success.

View 2 Replies

C# :: Stalling Program Until JSFL File Finishes

Sep 6, 2011

I am trying to run a JSFL script from within a C# project, where the JSFL script opens up a .fla file, modifies it n times, and exports n .swf files before closing. From the C# project, I am starting up the JSFL script through the Process class. I try to wait for the JSFL process to finish through the myProcess.WaitForExit() command, but it doesn't work. The remainder of my code C# executes before the JSFL process finishes exporting its .swf files. Is there any way I can throw something that the C# project can catch from the JSFL file or some other solution?

View 2 Replies

Flash - Import Video Through JSFL Without Wizard

Sep 16, 2011

I'm trying to have a jsfl script import a video into my .fla project and export the entire thing as a .swf automatically Is it possible to disable the video wizard when importing videos? I'd hate to have to manually confirm all the options every single time. The video is in .flv format if that makes any difference

View 1 Replies

Flash :: Getting The Name Of A Selected Item On The Stage Using JSFL?

Oct 28, 2011

I want to be able to select a item (image, movieclip etc) that has been added to the stage in Flash and access its file name.

So if I drag a image called 'imageOne.png' onto the stage, I want to be able to access its name, 'imageOne.png', and pass it to a Extension for Flash that I'm building. I know I can get details from the library, but not from the items selected on the stage.

Can anyone tell me how to access this information using JSFL.

View 2 Replies

Actionscript 3 :: One Get The Stroked Bounds Of A Symbol In JSFL?

Nov 8, 2011

DisplayObject.getBounds in actionscript returns the bounds of the object with the strokes included. The left, top, width, height properties of a SymbolInstance in JSFL don't seem to include the strokes. That's the only way I've found to get the bounds of a symbol from JSFL.

View 2 Replies

ActionScript 3.0 :: Use Jsfl To Add Parameter To Library Component?

Jan 17, 2009

Does anybody know if it's possible to use JSFL to add a new parameter to a manually added/created list of parameters of a Library item (Component)?

View 0 Replies

ActionScript 2.0 :: Guiding Out Timeline Layers With JSFL?

Feb 15, 2012

I'm working on a project in AS2 and want to set a variable in an external text file.Depending on the value of that variable, specific timeline layers should be guided out.I was thinking that I could use JSFL to do this. However I'd like to do this for multiple flash files without having to open every .fla file manually and run the command within the IDE. Is this actually possible?

View 1 Replies

ActionScript 2.0 :: JSFL / Commands Starting Point?

Apr 8, 2007

Maybe I just such at searching.tell me where I should start for researching the following.I want to create a "command" (JSFL i think) that has a stored AS in it so when I run the command it will type the AS in the AS panel.

View 3 Replies

ActionScript 3.0 :: Auto Embed Movie With JSFL

Jul 19, 2009

I found a JSFL script that can compile the Flash CS4 automatically, but I need to embed a movie to a timeline before compilation. Is anybody familiar with JSFL commands of these sorts?

View 1 Replies







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