I have a sprite in which I have added other sprites.
Something like:
var sp_main:Sprite = new Sprite();
var sp_group:Sprite = new Sprite();
for(i:int = 0; i < 10; i++)
{
var temp:Sprite = new Sprite();
sp_group.addChild(temp);
}
sp_main.addChild(sp_group);
//this part doesn't seem to work... i don't mind doing it another way, ...
Hi,
The application which developed by AIR(flex builder),Could connect with server(php) side.
...
I want to compile images and sound into a embeddable Flash video online, similarly to what onetruemedia.com already does. What technology do they use?
How would I go about setting up a server to do the same?
...
Hi All,
I am developing a desktop RIA. I have a context menu which shows the suggested words. Now I getting boxes
http://www.freeimagehosting.net/uploads/ba90d08e6f.png
Please have a look to the above url.
I am using sqlite as embedded database. I am getting the suggested words in an array, that array items are added in context menu...
Hi all,
I am attempting to monitor the progress of an image scroller I've built and all of the images (thumbs) load separately. What would be the best way of figuring out what the total progress of the images that are loading?
I was thinking it would be cool to use a generic loader and apply it to a function such as
myScroller.load...
Hi.
i have a function that receives a function as a parameter.
example:
function foo(bar:Function):void() {};
how can i set a default value for the function to be an empty function so the user will not have to paste a function as a parameter ?
...
I have a DataGrid populated via an Array. The last column in the DataGrid uses an ItemRenderer (Button). I want to show the Button in certain rows but not in others (leave those empty). I've looked everywhere for an example or even a clue how to do this (tried labelFunction on DG, etc.) but can't find anything about it. Any help woul...
I have this scenery:
1 ScrollPane
1 UILoader.
And i do that:
myScrollPane.source = myUILoader;
Everything is ok here! (The contens apear correctly).
Im using UILoader as source because i need 'loadBytes' method to show my pre-loads ByteArrayData.
The problem is the SCROLLBAR of ScrollPane doesn't show the scroll handler when the...
I'm in a situation where I have a xml document which is going to be updated in the following way: The deepest child within the document which surrounds a certain x,y position (depending on it's x, y, width and height attributes) is going to get a new child element. If multiple childs exist with the same depth, the bottom one is updated.
...
Is there a way to set a combobox component to multiline in Flash CS4 using actionscript 3 ?
...
Hi,
I need to filter log messages based on the log level and a text appearing in the log message. These messages are in the following form:
12/23/2009 17:33:26.379 [INFO] TMSNG.Main Channelset configured with url [http://172.16.34.4:8080/tms-flux/messagebroker/streamingamf]
12/23/2009 17:33:26.380 [DEBUG] org.springextensions....
I have this code I'm trying to load a file .txt in my FLEX project. But something weird is happening, it's giving me this error, but the main point is... I ran this code in Flash using Dynamic text instead TextArea... and it runs perfectly, I'm starting to think that I have some problem with my FLEX software... Does somebody could help m...
Does anyone know where I might get a list of ALL bugs for currently released versions of FP10?
Reason I ask is spent a day debugging one very HUGE issue with the activeX(IE) only version of FP10.02.
This plugin DOES NOT recognize Stage.stageHeight, Stage.stageWidth !!!
What makes this worse is this particular version IS NOT available...
I've got a bit of an issue...
We have an application that needs to load a varying amount of row graphics depending on user input. Currently, each row SWF is being loaded repeatedly using Flash.Display.Loader. The swf is rather large (17k) and loading 10 or so of them takes some time. Is there a way to only load this file one time and us...
So, this article looks at how to get the color from an image in AS3, and one of the answers suggests a better way to grab colors using the 'draw' function of a BitmapData object. But these are somewhat limiting, I'm trying to implement an eyedropper-type utility and need to be able to know what color the user is seeing at a certain pixe...
Hi
Can anyone tell me what is and isn't recommended when it comes to mixing in classes from the mx package in an Actionscript only project?
Specifically I want to use AsyncToken, IResponder and HTTPService classes in the mx package in an Actionscript project.
...
Hi,
I am new to flex, and do not know how to add an image (or other ui component) to canvas, so user can select it (and see that it's selected), also I want to add a possibility for example to click backspace and remove selected image from scene. How to do that?
Maybe you can point me to a doc to read?
...
I have an SWF that loads other SWF files within it. For clarity, the parent SWF I will call Parent, and the child SWF I will call Child. (The child SWF is from an Adobe Captivate export)
The Parent SWF exists within a directory, /webroot/swf/parent.swf
The Child SWF exists within another directory, /webroot/children/child.swf
The Child...
Hi all,
I am using text layout framework in my application. I am using textflow as editor to my application. As text layout framework supports multiple languages. I a m able to see the text in multiple languages.
Now my doubt is, can I type in different languages?
For example: As in word if we choose the font as Hindi then whatever we...
Hello!
I know this is somehow trivial, but I couldn't find appropriate solution so please help me :)
I am using bulkLoader to load dozens of SWFs into my Flex app, and all of SWFs are static (1 frame only). 'Everything' works fine, however, I'm not sure how to handle data from bulkLoader... I am getting MovieClip types for all of my SWF...