Flash CS4 Professional is a tool for creating Flash Applications. It is part of the Adobe Creative Suite 4.
Questions tagged [flash-cs4]
662 questions
-1
votes
1 answer
Nav in Flash with AS3. Code not working
Im having trouble getting my nav code working. I am not very proficient in actionscript, can anyone spot out what im doing wrong? Thanks in advance
//nav
var home:int = 1;
var about:int = 2;
var projects:int = 3;
var press_id:int = 4;
var…

user1118159
- 11
- 1
-1
votes
4 answers
How to capture audio from browser and save it on a server?
I'm currently working on a project - an online education system, and I need to make it possible for studs to introduce themselves in a 30 sec audioclip.
I need to implement it with Adobe Flash. The problem is that I have no idea how the Flash + Red5…

NoobDev4iPhone
- 5,531
- 10
- 33
- 33
-1
votes
2 answers
How to Configure FlashPlayer10.3
i am using flash CS4 for my flash projects. now how can i export swf for Flash player 10.3 i have downloaded flashplayer_inc_playerglobal_051211.swc from http://www.bytearray.org/?p=3066
but i dont know how to use it. will you pls guide…

hardik
- 9,141
- 7
- 32
- 48
-1
votes
2 answers
how to handle multiple game modes in actionscript 3 - flash
I'm new to actionscript flash 3.0. Anyways, i have written code for one whole game level including the character. Is it now possible to create a class, and when i press for e.g. 'Level 1' the first level starts?(create an object of the class) When i…

user648244
- 1,240
- 7
- 26
- 41
-1
votes
1 answer
Hittesting works fine but setting values to the same object results in error?
Im working on shooting some bullets and the collision testing works perfectly fine it even hurts the zombies. Except the one problem, i want the bullets to disappear when they hit a zombie this sounds easy sense Im already hit testing inside the…

Xenland
- 510
- 1
- 6
- 19
-1
votes
1 answer
Actionscript code errors
I am currently working on a personal project on a money counter and am really stuck with my code. If somebody can assist me, the final textbox with the answers is not showing up in my project.
The project is a money calculator that includes 1¢, 5¢,…

L4ROCQUE
- 1
-1
votes
1 answer
how do you display a variable in a text field? AS3
I am new to AS3 and I have been creating myself mini-projects to learn and my newest one is to have a variable that counts up.
for (var i = 0; i < 0; i++)
{
trace (i);
}
I have a dynamic text field that
I am trying to display the variable i…

Sam Richard
- 5
- 1
- 1
- 2
-1
votes
1 answer
Actionscript 3 debug logging
Is there a way to log debug messages with Actionscript 3 like log4j? i want to log user interactions in a Flash app(all the events and the user inputs).

iceman
- 4,211
- 13
- 65
- 92
-1
votes
2 answers
Error 1105: Target of Assignment must be a Reference Value
Flash says the code is on my second line, but I've done some reading and it says this error is mainly due to me trying to assign a value to a value, and I've looked back over my code, and I can't seem to find any instance of this.
Here is my…

15leungjs1
- 35
- 8
-1
votes
1 answer
How can I change colors of list component with AS3?
I have tried all kinds of solutions but nothing works. Does someone know how I can change color of background, selected item, etc.

Sterna
- 21
- 5
-1
votes
1 answer
How to do transition to next frame
I'm a beginner in AS3 and Flash.
There are index.swf and intro.swf, which is loaded in first frame of index file.
In intro.swf I placed a button, which should send command to index.swf main timeline to go to frame 2.
If i use parent's construction,…

Indra
- 3
- 3
-1
votes
1 answer
How to connect registration form made from Flash to phpMyAdmin?
I made this simple registration form using Flash and I want it to connect to a database in my localhost using PHP, here is my code so far,
function register(evt:MouseEvent):void{
var jpa:URLVariables = new URLVariables;
var…

Patricio
- 11
- 1
- 9
-1
votes
1 answer
Balloon animation
I am not an action script developer nor flash designer, i just want to have a small animation with a balloon, I want to make three buttons, and fixed balloon like shape that will get inflated and deflated on button click events. On one click the…

Rohan
- 1
- 1
- 2
-1
votes
7 answers
ActionScript 3 Array Casting problem in Flash CS4
I have these Arrays
//Array elements are Sprites (Class) in Flash Library
var elements:Array = new Array (el1_spr, el2_spr, el3_spr);
var container:Array = new Array();
for var (i:uint; allElements.length; i++){
…

dd .
- 572
- 2
- 13
- 28
-2
votes
1 answer
Intangible Flash textfields
I'm currently trying to mimic a screen from a flash game for my own inscrutable purposes, and a typical screenshot of the screen in question looks something like this . I've successfully found and extracted the background image from the file, and…

mayhew
- 5
- 2