0
votes
1answer
10 views
Flash Pro’s should be able to solve in seconds loading a movie
I have this action script that pulls images from a xml file
> myPhoto = new XML();
> myPhoto.ignoreWhite = true;
> myPhoto.onLoad = function(success) {
> //portfolio …
0
votes
1answer
9 views
[AS2] Get current, “real” frames-per-second (fps) of a running Flash movie?
What is the best way to get the current, "real" frames-per-second of a running Flash movie using Actionscript 2? By "best", I mean it should be accurate over a period of time (i.e …
0
votes
1answer
118 views
Looking for 3-D rotating Cube-ActionScript 2.0 code
We are looking for the Flash ActionScript 2.0 code for a 3-D rotating cube to be used to display ads on a website. Any ideas where to start?
0
votes
2answers
22 views
AS2 to AS3 hitTest Migration
I am stuck in as3 hit test problem. this is the code i wrote in as2. please help me migrate this in to as3
target.hitTest((_x - _width / 2) * (1 / (100 / _root.game._xscale)) + _ …
0
votes
1answer
102 views
loadSound: don’t wait for the entire download before play, but not have it start automatically
I am trying to play an MP3 using Actionscript 2. I have the following requirements:
I don't want to wait for the MP3 to load before playing it.
I want to know when enough of the …
1
vote
2answers
19 views
Volume slider - volume doesn’t change until mouse over
Hi all,
I've created a small music player with a sliding volume control. I'm having trouble with the volume. Though it does control volume properly, if I set the initial volume …
0
votes
2answers
54 views
How to tween (with ease out) a movie clip using only Action Script 2.0
I would like to tween a movieclip (with ease out) using purely action script 2.0. Does anyone know where to find any resources on this or could point me in the right direction?
T …
0
votes
1answer
35 views
ActionScript 2: Is it possible to test is the mouse is pressed without setting up an event ?
Is it possible to read the mouse key, like you do with Key.isDown(), ie. without setting up an unPress event/callback?
0
votes
0answers
10 views
Dynamic masking using the drawing API
I can't quite get this circular mask to work.
onClipEvent(load)
{
_root.stop();
dO = 3.6;
r = 75;
function addSlice(O)
{
x1 …
0
votes
1answer
206 views
ExternalInterface Woes
Hello all. I know there are an abundance of articles and forum post (many of them from myself) regarding ExternalInterface, I guess I'll add one more...
I have a small flash app ( …
0
votes
2answers
34 views
Flash MovieClipLoader instance behaves incorrect
Hi there
I currently have a few movieclips that I load into another movieclip container. I use the MovieClipLoader class to load them and make use of the onLoadProgress, onLoadSta …
0
votes
4answers
58 views
Flash parsing XML without loading an external file (as2)
Hi,
In my flash, the socket server returns some xml data that I need to parse, but it seems that the only way to start the XML object is with the XML.Load() which loads an external …
0
votes
1answer
17 views
Run Jquery function on actionscript 2.0
I have a function in jquery I would like run in flash using action script 2.0
The Jquery:
<script>
$(document).ready(function(){
$("a").click(function(event){
$("di …
0
votes
2answers
384 views
Changing the highlight color of text in Flash with ActionScript 2.
I've got several input text fields, and my design requirement is to have gold text on a black background that, when highlighted, is black text on a gold background; however, Flash' …
2
votes
3answers
1k views
Best practice for ActionScript 2 events - is there a way to simulate ActionScript 3-style events?
I love the AS3 event model - it helps keep my code clean and lossely coupled. When I used to work on AS2 projects, my code was not so neat and classes were more reliant on one anot …
