Tagged Questions
2
votes
2answers
533 views
Compile all Opened FLA files in Flash IDE using JSFL
Is there is a JSFL script to compile all opened fla in the Flash IDE?
1
vote
3answers
78 views
Batch Image Trim
I have a Flash fla file that contains a whole lot of images. The majority of each image is composed of transparent pixels with a visual object in there somewhere. Each image at the moment is at {x:0, ...
1
vote
0answers
74 views
Center static textfield with jsfl: strange results
Using Flash CS3, I'm trying to center a static textfield with jsfl after I've altered its text, like so:
textElement.setTextString( text );
fl.outputPanel.trace( 'text width: ' + textElement.width ...
1
vote
3answers
255 views
Accessing via AS3 (for export) the gradient of a rectangle created in the Flash Editor
I need to export the gradient settings of a rectangle created with the Flash editor. Our artist creates a rectangle with the gradient in a .fla. Is it possible to retrieve the gradient parameters ...
1
vote
1answer
473 views
How can I get values from Flash Authoring in JSFL via XMLUI?
I want to set a variable from a flash file so that I can access if from JSFL in a Command.
I am using a element in JSFL's XMLUI:
Here's the JSFL:
fl.getDocumentDOM().xmlPanel(fl.configURI + ...
1
vote
4answers
925 views
How to access group members in Flash CS3
I'm writing a script to access all dynamic textfields in the library of a flash (fla) file and embed certain character sets.
I iterate through all objects looking for textfields, but It seems there ...
0
votes
2answers
42 views
How does one get the stroked bounds of a symbol in JSFL?
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 ...
0
votes
0answers
205 views
Can't import mp3 into flash cs5 with jsfl
'One or more files were not imported because there were problems reading them.'
The issue is an odd one. With my jsfl script I import multiple .mp3 files and each one gets this error. However, the ...
0
votes
1answer
366 views
Accessing child/nested movie clips with JSFL AS3 CS5.5
How can I access a movie clip's children (specifically child movie clips) in jsfl?
I am already at the instance level from
...
0
votes
1answer
162 views
CS5.5 import video through jsfl without video wizard
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 ...
0
votes
0answers
156 views
Insert an image into .fla library and convert to movieclip through JSFL
Is it possible to pull an image from a website (using a loader like in normal as3), insert it into a .fla file and convert it to a movie clip purely through JSFL? Is it also possible to insert sound ...
0
votes
2answers
158 views
using Array argument in jsfl with swfPanel.call
I'm trying to create a swfPanel for Flash CS5.5 using JSFL.
I created my interface in flash and try to communicate with a JSFL command.
So, in my .fla file, I use an ExternalInterface with callBack to ...
0
votes
2answers
62 views
Stalling program until JSFL file finishes
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 ...
0
votes
3answers
191 views
How to make the bitmap generate the SWF file
The bitmap resource, It's usually make the bitmap generate the SWF file ,and use Loader class to load into the application.
I search some answers from google, find two ways to generate SWF File, one. ...
0
votes
2answers
116 views
JSFL - reading metadata onDocumentChanged
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 ...
0
votes
3answers
284 views
How to Trace Placement of Audio Files on Timeline in Flash
I am working on an animation project. I'm not a programmer. I'm working in Flash CS3. I've an animation that I've produced that I need to output the placement of my audio track for use by the ...
0
votes
1answer
289 views
Flex/AIR: call JSFL
I've written a JSFL file to publish some fla's, and now I'd like to call that script from a flex / AIR application.
So the user should browse to the JSFL-file and select it. After selecting the ...
0
votes
2answers
598 views
Using JSFL, pulling items out of a library using libraryPath
I'm making a SWF panel to automate some file setup. I'm using the libraryPath JSFL command to point to some external libraries. How do I put an item from one of those external libraries onto the stage ...
0
votes
1answer
306 views
When building custom panels for Flash CS4 IDE, is there a way to attach callbacks to workspace events?
Is there a way for a custom panel for Flash CS4 to register for IDE events?
I've built a custom panel for the CS4 IDE, and now I'd like to get a callback anytime the current selection on the stage ...
0
votes
1answer
341 views
extending Flash CS4: How can I display info about my current selection in my Custom Panel?
I'm building a Flash CS4 custom panel extension, and while I can call jsfl from actionscript fine, I can't figure out how to get info from the jsfl queries back to my custom panel. MMExecute() seems ...
0
votes
2answers
819 views
how to pass an object from a windowSWF to JSFL?
I'm working with an fla, an as file(document class), and a jsfl file. the swf is generated in the WindowSWF folder (e.g. $flash/WindowSWF)
I have a simple windowSWF and I'm using MMExecute and ...