Tagged Questions
0
votes
1answer
61 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
26 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
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
22 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 ...
-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
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 ...
-5
votes
2answers
116 views
How to convert this AS2 code to AS3 ? (Gallery images)
I'm a flash newbie. I followed this tutorial. Here's the url
...
-1
votes
1answer
41 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
96 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 ...
6
votes
1answer
121 views
Unable to do copy/paste on textfileds in loaded SWFs in AIR
My AIR app is loading an SWF file which contains a text filed for input. I can type into the text field but copying and pasting is broken. When I try to paste something using the keyboard shortcut, ...
0
votes
1answer
59 views
Reverse engineering - Flash app
I have that code:
private function handleFlashVarsXmlLoaded(event:Event) : void
{
var secondsplit:String = null;
var item:Array = null;
var string:* = ...
-1
votes
2answers
128 views
Convert AS2 code to AS3
I have never worked with AS2 and I was wondering how you would convert this to AS3? Any help would be greatly appreciated.
stop();
var nr:Number = 0;
var $mc:MovieClip;
this.onEnterFrame = function ...
0
votes
2answers
95 views
scrolling menu doesn't fully work
I know AS2 is old but I don't know as3 well enough yet and i haven't touched AS2 in years as it is.
Here is my issue: I have two horizontal thumbnail scrolling menus (one on the left and one on the ...
1
vote
1answer
74 views
Set text into clipboard from flashVars
What i want to do:
Get Flash Var, Set flashVar Into ClipBoard.
Html:
<embed src="setClip.swf" FlashVars="res=123" quality="high" TYPE="application/x-shockwave-flash">
action script(3):
...
0
votes
1answer
52 views
Is there a method like URLStream in as2?
i need to receive data continuously from server to flash client and it is possible in as3 with this code :
public class ASHXTest extends Sprite
{
public function ASHXTest()
{
...
0
votes
1answer
118 views
AS3 ahow to control the pause button of the external swf
I just trying to control buttons of external loaded swf .
var swfRequest:URLRequest = new URLRequest('http://mysite.com/player/001.swf');
var swfLoader:Loader = new Loader();
...
0
votes
1answer
69 views
How to receive data continuously from asp.net server into flash?
I want to receive XML data continuously like stream download from server to flash , is it possible?
i call response flush in asp.net every second while printing data and i want flash to receive data ...
0
votes
0answers
63 views
loadMovieNum with action script 2 and 3
I have three file First is made with action script 2 and renaming ones are with action script 3
file are clip1.swf , clip2.swf , clip3.swf
end of first movie file i put loadMovieNum("clip2.swf", 0); ...
0
votes
1answer
105 views
move background object actionscript 3 middle
I am currently making a 2d game for Android.
I am now having a trouble with the movement of my character.
Here's what I want to do:
when i touch the button left / right the HERO should walk to his ...
0
votes
2answers
67 views
Error joining AS2 with AS3
I have problems joining two scripts into one.
This is main part of the script: AS3.
And this is already joined script.
And here is part of the code that I need to import (AS2) :
stop();
var ...
1
vote
1answer
56 views
over drawn the circle when input angle in actionscript?
var theTextField:TextField = new TextField();
var theText:TextField = new TextField();
theTextField.type = TextFieldType.INPUT;
theTextField.border = true;
theTextField.x = 50;
...
0
votes
1answer
58 views
get angle from a circle actionscript?
I found this answer (Circular Slider in ActionScript 3) which creates a drag-able point over a circle..In the answer there is the code in the CircleSlider class .
private function ...
-4
votes
1answer
49 views
Need converting to AS3 [closed]
Hi i need this code for 3 different frames converting to as3 i just cant do it :(
'*fire._visible = false;
i = 0;
duplicateMovieClip("fire","fire"+i,i);
setProperty("fire"+i, _x, random(20));
...
-3
votes
1answer
122 views
Scoring quiz in AS2 to AS3
i have problem making quiz in as3, this is the code in AS2 for scoring,
i wonder how the code is in AS3, can anyone help me, thanks a lot.. :)
{
salah += 1;
if (jumlah_frame>=0) {
...
0
votes
2answers
135 views
random code in AS2 convert to AS3,
i try to make random quiz in flash cs5.5 for android,
so i convert this AS2 code to AS3, but i have 1 error.
AS2:
stop();
benar = 0; salah = 0; total_frame = 11; array_frame = [];
for (i=2; ...
0
votes
0answers
129 views
how to draw a circle which includes the grid,radius of the circle,middle x,y and x,y of point on the circle?
I want to draw a circle on grid which shows the middle point x,y coordinates,radius of the circle( a line should be drawn center to the point on the circle that clicked) ,and angle of the circle when ...
0
votes
1answer
190 views
How to draw a triangle by two(or three) given angles and a side(a line) with angles written at each corners in actionscript?
I want to draw a triangle using two angles and a side length(or a just a straight line).Can anyone give me a code for ActionScript.Also each corner there should be the angle of that corner. Thanks in ...
-1
votes
1answer
134 views
How to draw a triangle by two(or three) given angles with angles written at each corners in actionscript ?
I tried to google it but couldn't find a solution.there are method to draw a triangle with one given angle and two lengths .but i want to draw triangle with given two angles.Can some one guild me..
0
votes
0answers
121 views
Crossdomain confusion while loading as2/as3 files
I have an AS3 file (I have source control over this) which is supposed to load external swf files which maybe made using as2\as3.The url of the loaded files is supllied to the parent file at runtime ...
0
votes
2answers
161 views
is it possible to open external swf in new flash player with AS3 or AS2?
is it possible to open external swf in new flash player with AS3 or AS2? I've been searching everywhere for this, but most of what i found is that it's loading into new browser tab not other flash ...
0
votes
1answer
224 views
Images and Thumbnails not loading in AS2 XML gallery when loaded in AS3 Flash Website?
I've had the time to continue working on my flash site. I already have the entire layout built in Flash.
My site is built using timeline control scripts (AS3).
Because I couldn't figure out how to ...
0
votes
0answers
76 views
I need help converting the following code from Actionscript 2.0 into Actionscript 3.0
This is the code for a dynamic button scrollbar, but I need help making the conversion from AS2 to AS3.
onClipEvent(load) {
//variables
scrollMovieClipW = this._width - Stage.width;
leftScrollMargin ...
0
votes
1answer
58 views
Flash & Backbone.js - How to make routing links work without refreshing the page?
Supposedly I have a page ("A.php") using Backbone.js with the following route defined:
routes: {
'item/:num': 'showItem'
}
And there is a Flash SWF that'll get embedded in both A.php and B.php ...
-1
votes
2answers
128 views
Drag stuffs, Actionscript 2.0 to 3.0
I have done a drag and match flash stuff by using Actionscipt2.0, but now I need to change it to 3.0. After I changed it, the flash can no longer drag the stuffs, can anyone please take a look at the ...
-2
votes
1answer
110 views
Actionscript 2.0 to 3.0, please give a hand, am I converting wrong?
I'm doing the Actionscript 2.0 to 3.0 work but I have very few idea on 3.0, Can somebody good guys help to make a translate please!
I have try to finish a version but my work just cannot being "drag ...
0
votes
1answer
89 views
Alert and mouse & key events
When showing an alert box with mx.controls.Alert.show() and clicking it's buttons with the mouse (or Enter key) or clicking anywhere, these events are passed to the parent window as well, eventually ...
0
votes
1answer
84 views
flash: Math.pow calculates wrong answers for larger numbers
why is this so?
when i try out:
Math.pow(2,58)=288230376151711740
while in fact, it is 288230376151711744
or
Math.pow(2,57)=144115188075855870
while it really equals 144115188075855872
it just ...
0
votes
1answer
312 views
AS3: add event listeners to loaded AS2 SWF
What I am trying to do is - simply load an external SWF into my AS3 code.
I then want to show it on my stage - and be able to catch the 'ROLL_OVER', 'ROLL_OUT' and 'MOUSE_CLICK' events that happen ...
-2
votes
1answer
69 views
Trying to work out how to call an array from a seperate array
I am very new to flash but I am learning fairly quickly. I understand about arrays etc but I have promised my boys i would try to make a Yu-Gi-Oh game for them. I know there are some already out but I ...
4
votes
1answer
66 views
can't access stage in flash as3
I just switched to AS3 I am having problem accessing variables of the timeline from MovieClips. In AS2 we used to do _root.myvar, I checked for references, I found _root is root now in AS3.
I have a ...
1
vote
1answer
90 views
Multiple Webcams in Actionscript
My company is looking to play Hollywood Squares for next year's Christmas party, and rather than build an entire 3x3 rig for people to sit in, I proposed that I just create a Flash presentation that ...
1
vote
1answer
178 views
Control sound in embedded swf in Flash
I have an external .swf I have loaded into flash, and I don't have control over what code is in this .swf. I have it loaded into a movieclip in my scene, and I want to control the volume of the ...
0
votes
1answer
121 views
onLoadComplete not working with AS2 SWF loaded via AS3
So I have run into an issue and I think it is mostly because I haven't worked with as2 in about 5 years so things are pretty hazy. Anyway, my problem is that I need to display PDF files within the ...
0
votes
2answers
161 views
AS3 Argument Error #1063 … expected 1 got 0
So I got a very basic class
package {
import flash.display.MovieClip;
public class XmlLang extends MovieClip {
public function XmlLang(num:int) {
trace(num);
}
...
2
votes
2answers
574 views
Convert as2 to as3
I found a script for searching and selecting a specific text from a dynamic text box
But the problem is it is AS2
I started Flash by only studying AS3 so i have no idea on how to convert AS2 to AS3
...
2
votes
2answers
123 views
Calling/Loading AS3 into AS2 and calling/loading AS2 into AS3
Im really hoping that someone can help me! I have built a project in flash AS3 and have done everything that I needed to, however when attempting to build a game I couldn't get my head around writing ...
1
vote
1answer
63 views
roling object by mose over on left and right side
I have to make a banner ad (swf). So I have a circle object in the middle and i need to start rotating from left to right when you move the mouse on the right side and to start rotating from right to ...
1
vote
2answers
136 views
Game conversion from AS2 to AS3
I have an example of very simple shooter. But it on AS2. Here the source:
speed = 4;
depth = 0;
nose = 50;
_root.onMouseMove = function() {
updateAfterEvent();
xdiff = ...
0
votes
1answer
82 views
How can AS3 front-end code and AS2 server-side scripting send objects back and forth, while keeping their methods?
Given the following AS3 front-end code:
m_nc.connect("rtmp://" + pPrimaryIP + "/appname/"+ pVID, pUID, pConfig);
and the following AS2 server-side scripting code:
application.onConnect = ...



