actionscript-3

acceleration ramp "increments" for Counter AS3

My counter goes to 100 at a constant speed. Is there a way to ramp the speed of a counter? Flash can use trigonometry values to effect speed, but I don't know if that can change the timer class on-the-fly. There's a couple parts to it. (a.) ramp the speed of a counter? (b.) ramp in certain parts? - have a range - 90-100 starts ram...

Can I change a function reference of a class in ActionScript-3?

Ok, I have a class like this: public class Foo extends Sprite { public function Foo(x:Number, y:Number):void { this.x = x; this.y = y; } public function bar():void { trace("I'm a happy class."); } } And I want to do something like this: var foo:Foo = new Foo(); foo.bar = function():void { ...

Can empty sprites or movieclips slow down a application

Just curious to know if empty movie clips or sprite can slow down a application or game. Reason being is because I want to use multiple sprites as containers for my object. So I can easy manage what objects are in front of others. Some points in the game, layers will be empty so I am just curious if I should just make those layers null i...

work around needed for bizarre flash player bug involving htmlText

There is this bug I found in flash player, I described earlier today in this thread: http://stackoverflow.com/questions/2227048/fix-needed-for-bug-in-textfield-text I was able to confirm via that thread that it is in fact an actual bug in flash player, and now I'm just trying to discover some work around, because from my vantage point...

“zero placeholder” for working counter as3

How do make a zero placeholder for the counter? My thought was an "if" condition with greater and lesser would work. if count is more than .00 and less than 10.00, add "0000000" etc. CODE "from some of the best minds" //counts var timer:Timer = new Timer(10); var count:int = 0; //start at -1 if you want the first decimal to be ...

combo box in datagrid in flash cs4 as3

Hi All, Can some one please direct me to a example where a combo box has been inserted in a datagrid using as3 in CS4. I have a idea that it can be done using the cellrenderer, but i am not able to figure out how to achieve it. i tried searching on net but could not find any working example. I am working on a project where there are mut...

AS3: Can't Deserialize Object from ByteArray .. Error #2006

Hello, I am trying to serialize & deserialize Vector. using ByteArray Here is my code: public static function serializeToString(value:Object):String{ if(value==null){ throw new Error("null isn't a legal serialization candidate"); } var bytes:ByteArray = new ByteArray(); ...

When is the right point (from the life cycle view) to set data provier for LIST container on Flex 3

Hello again, I'm making a LIST container with my own item renderer to display xml file. Now, I'm overriding the public override function set data(value:Object):void method in my item renderer, the problem is that this function been called many times(!!) (more then the data provider length). Maybe I'm not setting the data provider righ...

Load remote favicon and then convert to png with PHP before loading into AS3.

As of now I am using cURL to load a remote favicon, but it outputs it as a .ICO, which AS3 will not load. I tried to convert the .ICO with imagepng, but that caused errors. Is there a way I can load a remote favicon and convert it to a png with PHP before loading it into AS3 without relying on Google's s2? Some of the code: snip $imag...

Flash MovieClip extend

Question: In Flash ActionScript 3, I extend a MovieClip as show below. But when I create a ToolBar with ToolPictures, and set Xscale and Yscale, then it doesn't resize if I use cMyClip, it works correctly when I use MovieClip. Am I missing something ? Or is extending not the same as inheritance ? package { import flash.display.Sta...

Basic usage of swffit. How to make it work

How swffit (http://swffit.millermedeiros.com/) can be used? I mean in my project I have dynamically expanding flash application, so once the expanding part riches the bottom I see standard flash scroll bar. Not browser scrollbar... Here is how I defined my application: public function addPanel(evt:Event):void ...

Can a modal-window-type blur be created for any Component in Flex?

I'm aware of PopUpManager and that custom modal windows can be created. But let's say I have a simple Canvas(or any component) and when I show it the background needs to be blurred out like how PopUpManager does when a new pop-up is shown. Is this possible? ...

Keep Remote Shared Object Alive

Hi, I am creating a game which 2 users can play. For this I have implemented the concept of RTMP and Remote Shared object. I have implemented this successfully. Now as per the requirement, If player close window and again join after some time then the current status of the game should be loaded. For that purpose I have converted remote...

Problems when printing a SWF in browser

I'm trying to print a SWF and have come across some problems. When using the Print function in the browser, the SWF will be distorted, and not scaled correctly. So I've tried to implement a Print function using Actionscript instead. The different approaches I've taken are: Printing using the right click context menu of the Flash Pl...

flash cs4 combobox component totally ignore styles and events

Hi, I have simple combobox component in flash cs4, I try to add and event listener like this mycombo.addEventListener(Event.ADDED_TO_STAGE, added); function added(e:Event):void { trace("HI"); } never get called even if I have the component in the stage manually or via AS, but if I add a listener to MouseOver it works, why the ADDED_T...

As3 - How to clear an array efficiently?

I've been looking to clear an array in ActionScript 3. Some method suggest : array = []; (Memory leak?) Other would say : array.splice(0); If you have any other, please share. Which one is the more efficient? Thank you. ...

convert an integer to a string as3

How do I convert an integer to a string value? This must be easy. "Ya guys in SO are da best at explaining." I'm still working on these dumb counters. NEED TO JOIN THIS TOGETHER //My counter project "sends to dynamic text field" var timer:Timer = new Timer(10); var count:int = 0; //start at -1 if you want the first decimal to be 0 ...

How to sequence events in Actionscript 3

I've been working with AS3 a lot over the last weeks and I've run into a situation that google hasn't been able to help with. The crux of the problem is that before I run a function I need to know that certain conditions have been met, for example loading my config.xml and putting it into a class variable. Where I run into trouble is tha...

How can I test for an event sequence in FlexUnit 4?

I have a component that, on creation, dispatches two events to populate data fields. The events should remain separate because they're used elsewhere for distinct actions. I want to write an asynchronous flexunit test to confirm that these events are both sent. The problem is, they're both variants of the same event. Here's the code: ...

replacing backslashes with forward slashes in actionscript

var aText:String = "C:\\folder\\folder\\file"; var filterVal:String = aText.toLowerCase().replace( /\//g, '/'); trace( aText ); trace( filterVal ); results as: C:\folder\folder\file c:\folder\folder\file this code was based on this site and nascent regex skills. What am I doing wrong? Thank you. ...