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 + 'Commands/ATest.xml');
fl.trace(fl.xmlui.get('secretword'));//this traces undefined
The XMLUI:
<dialog buttons="accept,cancel">
<textbox id="...
I need to use the Button component from the UI Components Panel in the Flash IDE, with the toggle property set to true.
If I use it with a timeline script it works great.
If I use within a class(a Document Class), the selected property is reversed
(I get true when it's not toggled and vice versa).
Also if I set toggle to false in the...
When I add a ComboBox component into a Sprite, the height of the container is larger than it should.
Here's what I mean:
import fl.controls.ComboBox;
//add combo box inside a container sprite
var combo:ComboBox = new ComboBox();
var container:Sprite = new Sprite();
addChild(container);
container.addChild(combo);
//draw the outline of t...