Actionscript 2.0 is a scripting language used by the Adobe Flash software, introduced in Flash MX.
1
vote
0answers
4 views
Flash as2 using xml from dropbox and saving data via xml
I have been googling the crap out of this, and can't seem to find the answer. What I want is my flash to access a xml file on my dropbox account. Problem is I keep getting "Error opening URL...". I ...
0
votes
0answers
5 views
Scrolling site on swf frame - flash as2
So basically I have little bit of problem. I have made swf frame on site, and when I hoover on it, it blocks scroll (like it supposed to do in as2) i would like to have as3 "bug" - intrested in having ...
-2
votes
0answers
7 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
0answers
16 views
guestbook returning database data to flash
I've been struggling with this problem for so long and am unable to make it work, hope someone can help me with it.
First, I know my PHP files are correct and the MySQL database works fine. In the ...
0
votes
2answers
20 views
Matching dynamically drawn triangles and differentiating angles
I am making a game wherein the user draws triangles on a grid and be congruent with other triangles. However, the user gets additional points for having their new triangle in a different rotation ...
0
votes
0answers
11 views
form submission from as2 to servlet
In as2
var my_Var:LoadVars = new LoadVars();
my_Var.cn = cn;
my_Var.pn = pn;
my_Var.email = email;
my_Var.send("http://localhost:8090/Simple/simple.do", "_blank", "POST");
where ...
0
votes
1answer
23 views
Actionscript 2 Proper way to define function on MovieClip
I'm trying to write a function on a MovieClip, and call it from the root clip. What works fine in ActionScript 3 doesn't seem to be working properly in ActionScript 2.
Frame 1 of the _root MovieClip:
...
1
vote
1answer
9 views
ActionScript 2 MovieClip Class or Interface Not Found
I'm converting an actionscript 3 project to AS2 because AS3 is not yet scaleform compatible in CryEngine 3.
I have a MovieClip in the library. Under ActionScript linkage I have "Export for ...
1
vote
1answer
20 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
1answer
66 views
Learning the craft
Kindly help me update this code to AS3, it's in AS2. I am learning ActionScript, so it is still a monster to me... Please be easy on me.
stop();
particles_mc.duplicateMovieClip.visible = false;
trace ...
0
votes
0answers
16 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
30 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
1answer
27 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
21 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
15 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
1answer
30 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
34 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
18 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
9 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
32 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
40 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
25 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
43 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
11 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
23 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
42 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
23 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
13 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
13 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
24 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
37 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
45 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
63 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
59 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
19 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 ...
0
votes
1answer
108 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
87 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
29 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
27 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
37 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
256 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
108 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
61 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
117 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
29 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
42 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 = ...





