Hi Friends,
I think there is bug in Flex charting.
"DATETIME AXIS DOES NOT SUPPORT SERIES STACKING IN CERTAIN CASES WHILE LINEAR AXIS AND CATEGORY WORKS FINE IN SIMILAR CONDITIONS"
This happens for 'clustered' and 'stacked' types when each series has its individual data provider. If data provider is assigned with chart itself it will ...
hello,
i'm trying to access an mxml component from my external as file. e.g
main.mxml:
[mx:text id="myText" />]
file.as:
var mainM:main = new main();
mainM.text.visible = true;
i get the following error:
[TypeError: Error #1009: Cannot access a property or method of a null object reference]
any suggestions on hw to approach it ...
I am trying to trace stage.name in child view after addChild:
import flash.events.Event;
import flash.text.TextField;
public class TestView extends TextField {
public function TestView() {
addEventListener(Event.ADDED_TO_STAGE, handleAddedToStage);
}
private function handleAddedToStage(event : Event) : void {
...
I want to know the type and version the browser that the user is running from within my Flex 4 application. I know I can get that information by using ExternalInterface to call Javascript. I know I can get that information from the server.
I'm looking for a way to get that information directly from actionscript. I mean, isn't there a g...
I'm aware of textAlign property of the Text component. But it doesn't do what I'm trying to achieve:
I have a Text component which is 500x100 (the size does not change). The default font size is 80 px. The text, however, keeps changing. What I want is to resize the text to "fit" inside the textfield.
Let's say the text is changed to: ...
What programming tests do company's give Flash developers?
I would like to level the playing field for developers and recruiters.
I've heard companies give debugging tests with broken documents you have to fix. Flash developers could include Flash IDE users and actionscript programmers.
Everyone would like to know what to expect a...
Ive been doing some research and I cant seem to find anything on writing to a file. My initial question was writing a array to a seperate file. But now I am looking for resources on how to write any data such as XML or a array to a file. What I want to do is create a game editor. I want to eventually save that data to a file to be opened...
Hello again all,
I have built a movieclip (parentMC) that houses two movieclips within it (mcA, mcB).
in mcA, i'm dynamically attaching movieclips from the library through a loop.
in mcB i'm trying to reference a particular movieclip from mcA via "_parent.mcA". Doesn't seem to be working. However, when i reference said movieclips f...
SWFLoader's scaleContent is not able to do what I'm trying to achieve:
<mx:SWFLoader id="img" width="600" height="400" scaleContent="true"/>
When an image of size 100x80 is loaded inside it, the image does does not resize to 600x400. That's because scaleContent = true.
Then, I set maintainAspectRatio = true. The image did resize to ...
The problem is when using function publish from NEtStream object.
Error event is "NetStream.Record.NoAccess".
I think problem is with configuration FMS.
How i connect(it connect successfully)
connection.connect("rtmp://localhost/vod");
connection.client = this;
Trying:
connection.connect("rtmp://localhost/live");
connection.connec...
How do i launched Terminal from air 2 passing arguments and command as well?
...
What's the difference between array and arraycollection?
...
Hi, Im trying to build a script that attaches and positions an instance of a movieclip for each node of an xml sheet. However, I can't seem to get it to loop properly. The script is simply attaching and positioning a single movieclip according to the last node in the xml file. Can anyone tell me what I am doing wrong?!!
Here is my scrip...
hi all,
I want to display some data in a separate browser window instead of using popupManager. How do i do that. Also i need to pass parameter to that window, based on that parameter, i ll call the service and get the required data and display that in the datagrid.
...
I have a problem with the following Flash AS3-code:
When I change "Delete1" to "Delete", the menu item disappears.
When I call it anything else but delete, then it reappears.
Why? It also occurs when I comment out hideBuiltInItems...
// create new context menu
var mymenu:ContextMenu = new ContextMenu();
mymenu.hideBuiltInItems(); // hid...
I am working on a Flash AS2 script that adds an instance of a movieclip for each node in an XML file. I have also included titles for each node in the XML file and I would like to display these when a user clicks on one of the individual movieclips. I have played around with clipevents and attachMovie but for the life of me I can't figur...
hi
i have a code
var timeline:TimelineLite=new TimelineLite ;
timeline.append(new TweenLite(MyClip,1,{y:367,ease:Expo.easeOut}));
I need the corresponding code in Action Script 3.
EDIT: How can i perform this animation with out using the GreenSock plugin functions?
Here "TimelineLite" is a class, and "append" are the member functi...
I've been trying to establish a connection between my flash client and java server for a few days now, but having trouble with the socket policy server.
I've read a lot of info online (including the Adobe guide on how to create one) but still I can't get it to connect, other than in the "Test Movie" option in CS3.
The source for the cl...
Hi,
I'm looking for a way to "inject" some events into a flash movie running on a browser. I know about ActionScript's ExternalInterface.addCallback function, however I'm trying to achieve this with any "random" flash from the web. Eg. send a "SPACE" keyboard event to a youtube video.
...
I am facing a problem as Duplicate variable definition while compiling but it is not at all effecting my program.
Is there any way to remove compiler errors beacause it is coming every time when i run movie.
...