Tagged Questions
5
votes
2answers
4k views
Is it possible to publish a FLA from the command line?
In our project we have a large number (hundreds) of FLA files created by the artists in CS3, from which we compile SWFs to use in our Flex/AS3 application.
As part of a streamlined build/deploy ...
2
votes
2answers
530 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?
2
votes
2answers
234 views
JSFL: Suppressing/auto clicking on Dialog boxes
var tmpDoc = fl.createDocument();
/*..some logic...*/
tmpDoc.addItem({x:0,y:0},item);
My JSFL has the above code.
And on the 3rd line, I get a dialog box :
which has title : "Resolve library ...
2
votes
1answer
145 views
Problem with dll called in JSFL
I need to create dll using C. But I saw some problems. OK, first: I need function in dll library to compute angle of the line - tgA = dy/dx. Angle = arctg(dy/dx). And I define this in file ...
1
vote
3answers
77 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
2answers
69 views
JSFL: Detecting when an Element has been flipped
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 ...
1
vote
0answers
72 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
1answer
79 views
Options for configuring element hierarchy relationships in the Flash IDE
The ultimate goal is to use JSFL to export a 2D skeleton from Flash. The file will likely consist of one or more Movie Clips which animate some Graphic symbols. I can happily export the child symbols ...
1
vote
1answer
305 views
How to save .fla files in older Flash IDE format with JSFL?
Since Flash 5.5 by default saves files in 5.5 format that's incompatible in 5.0 editors we need a way to save .fla files in older format with a JSFL script.
Can this be done? How?
Background:
One of ...
1
vote
1answer
217 views
AS 3.0 addChild functionality in JSFL?
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 ...
1
vote
1answer
237 views
Move movieclips to unique layers using JSFL
I have an asset file (FLA) that will be updated a lot by other team members during the project. I would like to have an JSFL script that moves all selected movieclips in the timeline to a new layer ...
1
vote
3answers
593 views
bulk rename flash library items with jsfl
version flash cs5
ok so i know the general code to rename all selected library items
var items = fl.getDocumentDOM().library.getSelectedItems();
for (var i=0; i<items.length; i++){
var item = ...
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
384 views
change text of tlf text field from jsfl
How can I set/change the text of tlf Text Field using jsfl. Apparently .setTextString() only works for classic text fields.
1
vote
1answer
148 views
Rotation + Matrix + JSFL
Flash Tranformation Matrix via JsFL are mean to me :(
I have to write a JsFL script that creates a text on my Flash scene, and rotate it with a random angle.
Imagine I want to create and rotate a ...
1
vote
1answer
471 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
1answer
208 views
Fill figure with JSFL
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});
doc.addNewLine({x:2000, y:500}, ...
1
vote
5answers
1k views
Parsing XML in JSFL?
It seems that there is no xml parsing tool in available JSFL (Adobe Flash-extension Javascript script file) : http://osflash.org/pipermail/flashextensibility%5Fosflash.org/2006-July/000014.html
So, ...
0
votes
1answer
98 views
JSFL export “guides” animations
I need to convert timeline animations in a FLA into AS3 code (through XML, probably). The problem is that there are literally hundreds of layers and thousands of frames.
Though I understand JSFL's ...
0
votes
2answers
46 views
getting the name of a selected item on the stage using JSFL
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 ...
0
votes
2answers
78 views
JSFL fl.saveDocumentAs();
I am writing a JSFL script that resizes flas and saves various versions, with appened names.
I can get a "Save As" prompt to pop up using fl.saveDocumentAs();
But I can't seem to get flash to ...
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
0answers
54 views
JSFL - Element.rotation is NaN
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 ...
0
votes
1answer
345 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
161 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
154 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
119 views
JSFL for…in loop doesn't seem to work
I'm writing a script in JSFL for Flash CS5, and I'm trying to get a list of layers off the main timeline. I'm getting the timeline, then looping through it all with a for...in loop, but the objects ...
0
votes
3answers
190 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
0answers
110 views
JSFL chaging fill.matrix only effects rotation, not scale / position
I'm trying to make some adjustments to the Matrix of a gradient (fill object) thought JSFL.
So the only thing I'm able to do is changing the rotation, and I am only able to do this when I first set ...
0
votes
2answers
114 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
282 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
359 views
Convert text fields in movieclips in Flash with jsfl
I need basically a way to convert a group of selected text in movieclips separately with Flash commands. For example, I know to select just text items in the stage is:
var theSelectionArray = ...
0
votes
1answer
104 views
JSFL setCustomStroke does not work with stroke.style = “noStroke”
So I was messing around with JSFL, and I wanted to set the storke to None. That should be done like this:
var stroke = fl.getDocumentDOM().getCustomStroke("toolbar");
stroke.style = "noStroke";
...
0
votes
1answer
286 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
1answer
663 views
Flash CS4, JSFL: changing settings for exportPNG
I need to export FLA as a sequence of PNG images using JSFL.
The first problem I faced is that I cannot call document.importPublishProfileString to change current publish profile, it always fails ...
0
votes
1answer
396 views
JSFL: Delete all strokes which match a specific color?
I'm looking for a jsfl function that can select all items on a frame and delete all strokes that match a specific color such as #0000ff
Basically I make a lot of notes with the pencil tool using red ...
0
votes
1answer
273 views
Drag/Drop movieclip event in JSFL? (Flash IDE)
Lately im trying to do some experimental things with JSFL, and i was wondering if it is possible to listener for an event when a component (that i have made) or movieclip is dragged from library on ...
0
votes
1answer
426 views
How can I convert flash armature (ik) animation to frame-by-frame animation with jsfl
My objective is to paste together several ( a lot, actually ) armature animations, each in a separate symbol. I have no idea how to do it, armature layers are a bit... strange. So i see only one ...
0
votes
1answer
329 views
Flash JSFL ExternalInterface issue
I can’t get a call from JSFL to a SWFPanel to work via the ExternalInterface API. I am following the instructions here as follows:
In the SWF Panel, in scene 1 action 1, I register a callback ...
0
votes
2answers
555 views
JSFL delete Flash aso files
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 ...
0
votes
2answers
595 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
733 views
How to access the selection of xmlui targetlist from JSFL in Flash?
I have a simply xml ui:
<dialog title="Select Symbol" buttons="accept, cancel">
<vbox>
<targetlist id="target_symbol" height="300" width="400" required="true" class="movie ...
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
816 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 ...