Actionscript 2.0 is a scripting language used by the Adobe Flash software, introduced in Flash MX.

learn more… | top users | synonyms (1)

0
votes
0answers
7 views

Getting the code of released key

I'm trying to make a simple platformer using action script 2.0 but I have a problem with getting input from keyboard. I have two function "myKeyDown" and "myKeyUp" that get called whenever a key is ...
0
votes
0answers
10 views

ActionScript 2.0 Reading XML and display it as a repeated pattern

a newbie. I'm trying to read an XML file and use the data to fill a repeated pattern with a photo file name, a title and a text for listing (my main goal). The pattern is a movie clip object and ...
1
vote
2answers
18 views

ExternalInterface addCallback repeatedly fails

I'm trying to get JS in a Wordpress webpage and an Actionscript 2 Flash movie to talk to one another. The attempt is failing miserably. On every attempt to call the function that I've set a callback ...
0
votes
0answers
9 views

Flash loading swf causes multiple GET on same file on IE

I have a flash application that loads swf from a remote server, many of these swf's are duplicates and for some reason requesting them dost trigger a cache load but keeps sending out GET to the ...
0
votes
0answers
9 views

loadclip() causing multiple GET request on same file request on ie

I have an application in as2 which loads swf's and places them on stage, to load the swf's the application iterates through the objects on stage that need to be replaced by the loaded swf's and calls ...
0
votes
0answers
12 views

Two Stage Site Preloader

I'm working with a flash site template done in AS2 and having an issue getting the enter button to work in the preloader due to the fact that the site is built on 2 stages and I don't know how to get ...
0
votes
0answers
23 views

Why won't my object be removed from stage? AS2

Hello there I am making a simple game using Flash AS2 and I don't know how you can remove an object from the stage. I have a simple object called "Enemy" having the following code: ...
1
vote
2answers
33 views

how to draw a 'circle' with 'dynamic angle' using action script 2?

I want to have a circle (maybe a movieclip ) to show a timer which change like this picture : And also I need to access its angle in run-time. for example: function setAngle(degree:Number) Any ...
0
votes
1answer
16 views

ActionScript 2.0 Random Boolean Function not working

I have the below code which show be randomly true and randomly false. But in my case its always being false. Any help is appreciated. Thanks. In the below code tail and heads are the tow buttons. ...
0
votes
0answers
5 views

What is the ideal way for actionsscript and javascript to call eachother's functions through ExternalInterface?

My webpage creates an embeded swf when a button is pressed: function onSomeKeyPressed() { var attrs = { 'src' : 'mp3Player.swf', 'type' : 'application/x-shockwave-flash', ...
0
votes
0answers
18 views

as2 onClipevent(enterframe) to as3

So i recently started trying to make my own simple game in flash but and i was using a tutorial that used onClipEvent(enterFrame) to make the character move (run the specific clip when a button is ...
0
votes
1answer
22 views

Flash AS 2, Stacking items in the players inventory

I have an inventory with names, and now I would like numbers with the names that increase as more of the same items are added. Item Code: _root.player_inventory = new Array(_root.array); for (a = ...
0
votes
2answers
38 views

Script Src in Actionscript?

If I have the user type something like movieclip.x += 1; and press a button could I make the user's text execute? Such as a Script Src?
0
votes
1answer
24 views

Only allow a certain amount of touchPointIds

In touchEvents, they handle multi touches, right? So you can use multiple fingers at once. So how do I only allow the event to handle a certain amount of touches? For example, only drag 3 squares, ...
0
votes
1answer
36 views

“else encountered without matching if” in action script 2

this.onEnterFrame = function() { if(Key.isDown(Key.RIGHT)) { asdf._x += 10; }else if (Key.isDown(Key.LEFT)) { asdf._x -= 10; ...
0
votes
0answers
9 views

How to use onRollOver with Nested Movie Clips that are part of an Array Action Script 2.0?

I have, lets say, 5 buttons (Movie Clips) nested inside a parent (Movie Clip). I have placed all 5 buttons inside an array called bArray. I have created this for statement to loop through them. It ...
0
votes
1answer
20 views

Multiply movieclip's content as if dragging corners?

When you put your mouse on the corner of an image, you can drag it and the image will be multiplied depending on how much you drag the mouse. Is it possible to do this through code? For example, I ...
0
votes
1answer
24 views

PHP variables to Flash via AS2 Returns Undefined

Really need another set of eyes on this, and thanks in advance! My php code: <?php header('Location: videorecord.html'); $hour = time() + 3600; setcookie(UserName, $_POST['UserName'], $hour); ...
0
votes
0answers
22 views

Toggling visibility of buttons in Actionscript 2

Ok, I have 3 buttons - one on top of the other. I want to be able to press 'o' to switch from one to the next. I wanted to achieve this with visibility, like so on(keyPress "o") { ...
0
votes
1answer
16 views

How can I simplify this small code with a loop in AS2

the following code I want to simplify: _root.botao1.onRelease = function(){ follow=1; } _root.botao2.onRelease = function(){ follow=2; } _root.botao3.onRelease = ...
0
votes
1answer
11 views

AS2 Code returning a wrong value

I have declared an array called "botoe", which will be receiving the image inside the "block" movie-clip equivalent to the frame iterated by 'x': bot=new Array(2,3,4); for (x=0; x<3; x++) { ...
0
votes
1answer
12 views

Implement the same function in AS2 for an Array

I have an array, and I would like to make a function onRelease for all of the array positions. The code would be like: pick = new Array(2,3,4); var botoes1:MovieClip = lev.attachMovie("block", ...
0
votes
1answer
18 views

flash action scrip 2 remove linkage MovieClip

i'm trying for tow-tree days to solve this problem and i'm this close to kill my self. i'm making a banner and in the banner i have a movie-clip that link fro the libary in action script and call ...
0
votes
0answers
33 views

Text in dynamic text box disappears when animated

I'm trying to animate dynamic text. The text is taken from a variable using mybox.text = somevar; The text appears in the box but once the box start moving the text disappears. I have Googled it and ...
-5
votes
1answer
41 views

Convert from Flash AS2 to AS3 [closed]

here is my AS2 code to write a drawing application in Flash. I'm really headache to convert it into AS3 so please help. Thanks a lot. P/s: It keep promting up the error "It looks like your post is ...
0
votes
1answer
43 views

timer and datagrid flash as2

i have a problem with autorefresh datagrid on flash CS3 actionscript 2.. the datagrid provied data from a sql database.. here is the idea, i want to set a timer function to refresh the datagrid only, ...
0
votes
1answer
57 views

What's the difference between ' and "? [duplicate]

In actionscript, some code goes like this: trace();. So in trace statements I can both use an apostrophe or quotes. So is there any difference if I'm using each one? Example: difference between ...
0
votes
1answer
17 views

Creating level codes with action script 2.0

I want to create level codes, like in sea of fire (http://armorgames.com/play/351/sea-of-fire) I have a text input box with the instance name "code" and a button that has this code: on (release) { if ...
-3
votes
0answers
18 views

How do I load shockwave files in AS2? [closed]

I'm trying to load a shockwave file from a URL in actionscript 2, it would be extremely helpful if someone would tell him how to do this.
0
votes
1answer
83 views

multiplayer flash quiz AS2

Im making a flash web based quiz with AS 2.. Im using Adobe flash cs3, sql database, and PHP to make a connection.. But for the question and the answer choice im using XML which i generate it from the ...
0
votes
2answers
71 views

AS2: Function not calling, using timer— and myFunction();

I'm programming a game for fun. I'm using a timer that when hits 0 it's supposed to call functions (which I think is how games work, right?). Anyway, myFunc; does not do anything at all when timer ...
0
votes
1answer
27 views

Action Script 2 only last function working

I have this problem where only the last function works, and all of the previous ones are ignored by flash. Since all the functions are written the same way, I can't find the problem. This code is ...
0
votes
1answer
23 views

How to populate dynamic textbox with selected data from a List Component?

Currently I have a list component which is automatically populated with data from a mySQL database. Code for this is shown below. Is it possible to select a variable from the list and store it as a ...
0
votes
1answer
24 views

Duplicating enemies with AI

I am working on a flash game in which you fight enemies. I did the whole AI for an enemie I called slime. Now I would like to put multiple of this enemy on the scene and I wondered if I had to ...
0
votes
1answer
34 views

sending message out of a sandbox to a custom application

I got an application which uses flash for it's interfaces, and I want to extract information from this application, and parse/use it in my own application (which processes the data, stores the ...
0
votes
1answer
195 views

Loading external SWF in Actionscript 2

I am creating an animation within Flash CS4 in Actionscript 2.0 / Flash Player 7 At the moment I have a handler (Movie Clip) called myHolder that is used to play other swf files within one main swf ...
1
vote
2answers
95 views

Actionscript 2: Get an instance name from a variable string

I'm trying to take text from an XML file (this text will be translated later so it must be held externally) and import it into separate dynamic text boxes in Flash (AS2). The text boxes are organised ...
0
votes
1answer
48 views

Array elements (MovieClips) are being deleted as I add new ones. Why?

I'm having trouble with some odd behavior in ActionScript 2.0. I'm trying to add a certain number of pages (MovieClips) to the stage, and at the same time store references to the in a convenient array ...
2
votes
1answer
59 views

AS2 getAscii doesn't get Caps Lock in Google Chrome

I'm using Flash AS2 (no other option) to get the letters typed by a user. It seems that in Google Chrome, the Ascii code that I get is different than usual. I'm testing with typing "P" after ...
-5
votes
2answers
104 views

How to convert this AS2 code to AS3 ? (Gallery images)

I'm a flash newbie. I followed this tutorial. Here's the url ...
0
votes
2answers
28 views

Menu buttons not working

I am trying to make a menu screen that allows users to press on buttons that contain their following instances. I know I almost have it but I can't figure out what is wrong with it. stop(); ...
-1
votes
1answer
38 views

actionscript 3 (about ysqu, ydf, and ymo)(making menu)

i am handling with a flash assignment right now. however, there is trouble from changing as2 to as3 will u know what is the code for as3? onClipEvent (enterFrame) { Ysqu = _root.menu._y; Ydf = ...
0
votes
1answer
66 views

Check for banned/inactive

So I'm working on a virtual world and I am currently on the part where I am going to try to make the login.php check if the user is banned or not activated. If the user is banned, the banned column ...
0
votes
1answer
48 views

AS 2 Scroll to the top with delay

I have a scroller and a problem: function scrolling(){ _root.onEnterFrame = function() { function fun() { moz = -94; } setTimeout(fun,5000); container_mc._y = (moz); ...
0
votes
1answer
27 views

Align text area from xml file

I'm trying to align align my text area from my .swf flash. Directly from xml I mention that i have actionscript 2.0 My code is something like this: <?xml version="1.0" ...
0
votes
0answers
40 views

ActionScript 2 RTMP Add video object from flashDevelop ide

To view the stream rtmp, ide flash necessary to add the library video-object. How to add a video object from FlashDeveloper ide, in pure ActionScript 2.0? Everything works, shows fps, but the video ...
0
votes
0answers
66 views

Red5 Simple Recorder

Im using Red5 simple recorder to capture videos and got following questions: How can i stop it from generating meta file for each record im using jwplayer with playlist to stream it back and meta ...
0
votes
1answer
64 views

AS2 Accessing instance names in for loop with numbers at the end

so right now here is my code var binaryArray:Array = [ 1,0,0, 0,1,0, 0,0,1] for(i = 0; i < binaryArray.length; i++){ ...
0
votes
1answer
83 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 ...
1
vote
1answer
31 views

zip code validation in as2

I'm trying to validate zip code entries in an input text box. So far I was able to have it return true if 5 digits are entered. But in some cases where an invalid zip like 00000 is entered, it still ...

1 2 3 4 5 31