Flash CS5 is part of Adobe's Creative Suite released on 30 April 2010. Its main features over its predecessors are the iPhone packager, new text engine (TLF), and code snippets.
-2
votes
0answers
2 views
On release, go to fifth keyframe inside button. AS2, Flash CS5.5 [closed]
Besides the up/over/click/hit states on my button, I created a fifth where I changed some properties. I want that on release, the button change its state permanently to that fifth keyframe. Any way to ...
0
votes
1answer
22 views
AS3 Error #1010
Im taking an AS3 course and on one of the lessons, i get this on the output of my program:
TypeError: Error #1010: A term is undefined and has no properties.
at Main()
this is my code:
package
...
0
votes
0answers
8 views
AS3 FDT How to instantiate an fla asset with a custom class?
I jsut started working at a company that uses flash builder, but I am using fdt at the moment. I am hvaing trouble getting FDT to instantiate the sprite in an fla project along with the custom class ...
1
vote
1answer
18 views
Adobe Flash Professional CS6 for Android: Navigate from One movie-clip to another move-clip using Actionscript 3 class
I have created one 'login page' which is a movieclip. and my another page is 'home' which is another movie clip. so what i want to do is.. i wanna navigate my one move-clip to another movie clip. and ...
-3
votes
1answer
37 views
Confused about ErrorMessages while debugging Flash
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at savethetiger_fla::MainTimeline/frame168()
stop();
home_btn.addEventListener(MouseEvent.CLICK,home);
...
0
votes
1answer
36 views
Blood flow in a circular maze?
How can I create an animation in flash as3 in which I can show a blood stream ppassing through a circular maze?
for example, here's a maze: http://lonestar.texas.net/~dianes/labyrinth/maze.jpg
I want ...
0
votes
0answers
15 views
stageVideo zoom and pan properties not working
Has anyone had any luck using the pan and zoom properties of the stageVideo object? I was only able to find one example here: ...
-3
votes
1answer
45 views
Sliding gallery in AS3 in Flash CS5 [closed]
I'm trying to create a sliding gallery in AS3 in Flash CS5, but I get these errors:
does it have something to do with AS3 ? Because i guess it had to be done in AS2 and i had done it in AS3
Scene 3, ...
0
votes
1answer
54 views
Flash push item inside of an array
Im needing some help in AS#3 and arrays
Basically i am having trouble of pushing items into a 2D array with errors.
Below is what i have and trying to use:
var j = 0
var i = 0
var ...
0
votes
1answer
38 views
MouseX and MouseY not working as expected
I have an old flash app that worked ok when double the size of what it is now. The problem is, there is nowhere in the script that does math with MouseX and MouseY, i use the position directly so I do ...
0
votes
1answer
28 views
Download and save jpeg with Action Script 3
Hi I need some guidance on how to download a jpeg image addressed through a URL, and save it to local disc using action script 3.
Most of the solutions Iv found require JPEG encoding libraries but I ...
0
votes
1answer
96 views
Enemy move randomly
To make things quick, I have an arrangement of tiles that a player and an enemy are on.
public static var floor1:Array = new Array(7);
floor1[0] = [0,1,1,1,1,1,0];
floor1[1] = ...
0
votes
3answers
36 views
referencing objects in different functions as3
I have an object in my mouse event functions that I want to reference in my time function.
Example, I basically created tiles and have mouse events:
var cell:MovieClip = new Tile();
...
0
votes
1answer
52 views
As3: Instantiation attempted on a non-constructor (BitmapData)
I'm so sorry if this question has been answered before or the answer is painfully obvious, but I could really use some help.
So I have this Class I want to create instances off of. The idea is to ...
2
votes
1answer
95 views
Why do odd aspect ratios look stretched in browser on Mac using actionscript 3?
I have a simple AS3 swf that captures the user's webcam feed and displays it. I am trying to set the video to 16:9 aspect ratio. According to Adobe, if I use setMode() on the Camera object, I can set ...
2
votes
1answer
35 views
Action Script 3. How to disable Allow Click function?
I'm creating Flash "memory" game, Idea to discover 2 equal cards, but I have 1 problem.
When I discover second card program write: "Wrong turn" and It is shown for 1 second, but at this time I can ...
0
votes
1answer
35 views
HitTestObject issues
I have a bit of a problem with hitTestObject in Flash.
I have these tiles generated on the screen and I have a player added to the tiles. I created an invisible square bitmap for the player, which ...
4
votes
2answers
57 views
Action Script 3. How to add timer?
I'm creating Flash "memory" game, Idea to discover 2 equal cards. But when I choose 1, if second card is wrong It discover only for half second, but this is not enough. I need to make that second card ...
0
votes
1answer
46 views
DataGrid consuming XML data from URLLoader
I have two functions; submitIngredientChoices, that passes variables into a query string to a website called Recipe Puppy in this format: /?i=chicken,lamb,pesto&q=italian&format=xml. The ...
0
votes
3answers
72 views
FLASH/AS3: Getting error on removing child. Parameter child must be non-null
I'm trying to remove MovieClip but it says Parameter child must be non-null.
This My Script:
To make it in stage, i use:
function sayam (e:MouseEvent):void{
nilai = 8;
if(nilai == temp) {
...
0
votes
1answer
7 views
Using Event hander or something familar
I'm working on Adobe Flash C.S5 and on actionscript 3 - My question is how can I make a button that only becomes avaiable to click on once the four other buttons have been clicked and the scenes have ...
0
votes
2answers
38 views
Passing Model to View constructor for Stage Instances
I'm looking for an elegant solution to setting the Model argument for a View that is a stage instance.
My View constructor looks like this:
public function View($model:Model, ...
0
votes
2answers
33 views
Disable a function temporarily as3
On my screen are tiles generated from an array. I have a mouse roll over function called rollover, that adds a movieclip that highlights the edge of the tiles that I am currently on. I want it so that ...
-1
votes
2answers
36 views
Cannot access a property or method of a null object reference. at blast_game/moveObjects() urgent
i keep getting this error message above in my code when trying to get my game working. the code is as follows where the error seems to be occurring but i cannot locate it; the error that it brings up ...
0
votes
1answer
47 views
How do I select a part of an array? Or match parts of one array with parts of another?
I have some drag and drop function where there are 8 items (dragArray) that can be dropped onto 2 big 'landing zones' (matchArray). But since I don't want them lie on top of each other, I've made an ...
0
votes
1answer
63 views
Auto goto next scene without button click as3
Is it possible to go to next scene in flash Cs5 using acs3 after a certain activity is done in the one scene? If possible, how can this be accomplished?
Thanks.
0
votes
3answers
99 views
How do i detect collision detection in flash AS3?
i wanted to create a maze in flash AS3, with the user guiding the character. I tried using this (below) but this will require me to make all the maze walls individual and setting collision detection ...
0
votes
2answers
41 views
Having trouble loading an image instead of using a drawn object in actionscript-3
I am trying to make a ball shoot from a canon, which is fine, but i want to change the canon from a drawn canon into an image i have OF a canon.
But when i do this i get the following error when i ...
0
votes
2answers
45 views
here is the code to fetch username and password from the xml file but it does't fetch the the data?
Here is the code to fetch username and password from the xml file but it does't fetch the the data?
private var myXML: XML = new XML();
private function connect(event: Event): void {
var str1: ...
0
votes
1answer
69 views
How to load new swf on mouseclick event of movieclip in as3?
I want to create a flip effect button, on click event of which a external swf should be opened removing all the contents of current swf.
I have created both components, a button and also a movieclip.
...
1
vote
0answers
43 views
Flash Pro CS6 Unable to transcode assets?
I was testing my project in CS6. Everything was fine. I literally changed nothing. I test. Tons of errors that it is unable to transcode embedded movieClips. I am literally going insane trying to find ...
0
votes
1answer
119 views
turn based movement on a tile grid, isolated tile(s)
This is written in as3 and FlashPunk.
My problem? I have a tank that can move 4 tiles in the 4 directions; north,south,east and west.
Image can be found at ...
0
votes
1answer
24 views
Adding a variable object
I'm trying to add an object based on the level number. I've got the following declaration:
var lvlmapping:Object;
Later on, I run the following code:
if (levelnr == 1)
lvlmapping= new ...
0
votes
1answer
35 views
Error #1009 …(done some research still no solution !)
So this is the continuation of a project ...1021: Duplicate function definition in my action Script
I am making an interactive flash Project...It has has 17 Separate scenes ...
Intro Scene
"Main_ ...
1
vote
1answer
78 views
1021: Duplicate function definition in my action Script
This is a follow up to my previous question (Problems Scripting Multiple Buttons(nearly identical) in a single Action Script)
I am making an interactive flash Project...It has has 17 Separate scenes ...
0
votes
0answers
29 views
Export android application with captive runtime on Flash CS5
I try to make an android application using Flash CS5, but when I export it and run it on my device I got this error : " This Application requires Adobe AIR ".
I found a tutorial to embed the AIR ...
0
votes
0answers
40 views
Definition com.revmob.airextension:Revmob could not be found.
I am using Flash cs5 to make iOS App I have referenced Revmob.ane in the File->Actionscript settings->Library path and then imported the revmob extension in my Game.as by
import ...
0
votes
0answers
46 views
Differentiate variables
var gridArray:Array = new Array(7);
gridArray[0] = [4,2,1,1,2,3,1];
gridArray[1] = [2,2,1,4,2,1,2];
gridArray[2] = [1,2,1,2,1,1,2];
gridArray[3] = [2,2,2,5,1,1,2];
gridArray[4] = ...
0
votes
3answers
94 views
Problems Scripting Multiple Buttons(nearly identical) in a single Action Script
I am a noob to action script 3 so please forgive this detailed Posting ! (and code posting errors)
I am making an interactive flash Project...It has has 17 Separate scenes ...
Intro Scene
"Main_ ...
0
votes
2answers
44 views
How to know for sure something was made in Flash?
If you right-click on a game of movie in a website and see a box with the bottoim line "About Adobe Flash Player..." does that necessarily mean that the content was made with Flash (Either Flash Pro, ...
0
votes
1answer
37 views
Access MovieClip within a MovieClip
I have a MovieClip called Tile, which has its own class. I have the below code in a for loop, which creates a grid.
var tile:MovieClip = new Tile();
tile.gotoAndStop(Floor1[i][u]+1);
tile.x = ...
0
votes
1answer
119 views
Action Script 3 : Hover over button to play a movie clip
I have a button on the main time line. When I hover over the button, I want a movie clip to play. When the movie clip is over, I would like for it to go to the next frame. Is this possible?
0
votes
0answers
34 views
how to hear the embedded flv audio in flash timeline
Simple question I know but I can't find any relevant answer on Stack...
I have an embedded flv in my flash timeline. When I export/test as swf I can hear the audio.
When I hit enter/return and the ...
0
votes
0answers
41 views
Which is cheaper to create - a Flash builder application or HTML5 applicatioin [closed]
I need a website that will deliver videos online. Also, I need to restrict and downloading of the video from the website. I believe this is possible if I create an application using Flash builder OR I ...
0
votes
0answers
17 views
How to create a website such as GMATPill or eGMAT?
I need some help to understand the underlying technology behind websites such as GMATPill and eGMAT. If you right click on the video there, though it seems to be adobe video. But then it also allows ...
1
vote
2answers
97 views
create (webcam capture like youtube) in my website
I have a website working the same as youtube. At this moment I am trying to create a video image captured by WEBCAM.
The video image should be saved on my computer (by FLV format) first and then if ...
0
votes
1answer
34 views
How to lock a file in Actionscript?
Using ActionScript 3.0, how can I lock a file? I'd like to write my highscores to a file and place the game on a server, but I don't want things to go wrong when two players submit their highscore at ...
0
votes
1answer
34 views
Algorithm for matching ingredients to recipes in AS3 (High Level)
This is a high level question; I don't want you to post any code or examples, but rather just roughly list how I would achieve what I want to do programatically - Please do not delete this question as ...
0
votes
1answer
94 views
Exporting Flash CS5.5 project to .apk file causes all movieclips to play
I am loading an AS2 .swf into an AS3 project. When compiling and running the project inside of flash the .swf file loads perfectly and I can play the game I am loading as I normally could. However ...
0
votes
1answer
161 views
Add/Remove Event Listener to/from child Movie Clip in AS3
In short, here is what I'd like to accomplish:
Click Movie Clip, add child
Click child movie clip, play sound
Click child again, stop sound
Click child a third time, remove child
Sadly, I've only ...



