actionscript

Flash disable a button/movie clip, not working?

I am using Greensock to tween and during a rollOver I need to disable some buttons. I am pretty sure the code is right but the buttons do NOT disable? code: import com.greensock.*; btn_skins.addEventListener(MouseEvent.CLICK, function() { TweenLite.to(mtvOrange, .25, {y:0}); } ); btn_teenwolf.addEventListener(MouseEv...

actionscript 3: Loaders silently fail on error prone connections

Hello, Our Flash app has to load 50 or so files from a remote destination. Under normal network conditions, this is no problem. However some of our users started to report that the application "stopped working" during the loading phase. After some tests where we decreased the network quality to a point where 1 out of 3 packets were dr...

How to add a simple button actionscript

Hi, I am using Adobe Flash CS4. I don't know why I do the sample actionscript code here. on (release) { gotoAndPlay(1); } And now I'm dealing with a button function. I already created a box then press "F8" and choose button. Now I click on the button box, and press "F9" for the actionscript. It said that "Current selection cannot...

Flash Components falling apart despite grouping. (AS2)

I am a newbie flash developer who is trying to create a "message box" symbol in my flash application. This message box should appear on an event, so I have as2 code like this which is trying to achieve that: (mcError1 is the instance of my symbol). _root.mcError1.visible = true; _root.mcError1._x = 100; _root.mcError1._y = 8...

Flex/Actionscript - Traceing the contents of a variable of type Function

for eg : var func:Fuction = function ():void { var i:int = 0; return i; }; Is there a way by which I can print the contents of the variable func at run time? By contents I mean the function body. ...

Any advantage to using 'static' on private consts?

Just wondering if there is any advantage to using private static const instead of private const for private constants? Does this change if you have only one instance of the class or multiple? I suspect that there might be some small memory/performance advantage in using static if you have multiple instances of the class. ...

What's the difference between send() and sendAndLoad() in flash?

Quoted from this page: send(url: String, target: String, [method: String]) Sends the variables in the my_lv object to the specified URL. sendAndLoad(url: String, target: Object, [method: String]) Posts variables in the my_lv object to the specified URL. I don't see any difference there... ...

Red5 - Keeping transient shared objects alive on server

I create a transient (non-persistent) remote shared object using ApplicationAdapter.createSharedObject(). Then a client connects to the application. The client then connects to the shared object. But when the client leaves the application and connects again, the shared object is no more there. The properties set by the client in their pr...

My computer got stupid. 0 + 20 = 19.921875!!! Help me!

You know it's bugger-all when your computer can't get a sum right! I have not the slightest idea why this is happening: _root.attachMovie("clippy","aClip",_root.getNextHighestDepth()); trace("alpha 1 = "+aClip._alpha); aClip._alpha = 0; trace("alpha 2 = "+aClip._alpha); aClip._alpha += 20; trace("alpha 3 = "+aClip._alpha); aClip._alph...

loading as2 in as3 from different domain

I'm trying to load swf like this : var _mcl:Loader= new Loader(); var loader_context:LoaderContext= new LoaderContext(); loader_context.securityDomain= SecurityDomain.currentDomain; _mcl.load(new URLRequest(p_url), loader_context); _mcl.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadImageComplete); _mcl.contentLoaderInfo.addEv...

Flash banner not linking

I was following this tutorial http://www.tutorialized.com/view/tutorial/Full-flash-Banner/20583 and I wanted to add links to pictures shown within the banner. So I've edited 'picture 1/2/3' in the library panel transforming them into movie clips, and then opened them in edit mode and added required actionscript. But when I publish/previe...

How can I control the visual affect with Camera class?

I've checked the document: http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/media/Camera.html But still don't find info on how to control the visual affect(like lightness, saturation and so on) of my pc camera. Is that kind of job possible with actionscript? ...

Representing a Monopoly board in flash?

I'm brand new to Flash (and game programming, really), but want to learn a bit of it. My overall learning project is to create a Monopoly clone in Flash. Unfortunately, I'm struggling to get over even my first hurdle - how to create the board graphically, and how then to deal with it in the code. So far, my thoughts are to break the boar...

Autocomplete not working in the Flex Bundle for Textmate. How do I fix?

I am being very hard headed and determined that I am going to give Textmate a solid try for my actionscript and flex projects. Work on the bundle has been a little lacking but what has been developed so far is pretty great. I have run into some slight issues but able to figure them out and get things set up pretty well and I have alrea...

Simple Flash Data type questions...

Hi guys.. I am trying to declare a variable for a button component in AS3. I have one button named btn1 and tried to write: import flash.controls.Button; var btn:Button = mc.test.btn1; I got an error: Definition flash.controls.Button can't not be found.... Anyone has an idea??? Thanks for the help.. ...

AS3 Zooming center of a dragable container with in a Mask

HI, I have container movieclip and one mask layer with the height and width of the current screen. The continer is always bigger than the mask clip. so i need to zoom the container at the center of the mask clip. something link in MicroSoft XL zoom controller at the bottom right. Does any once have the equation or any other demo links? ...

spark.components.VideoDisplay and the DoubleClick-Event

Hey, I stumbled upon and interesting problem concerning spark's VideoDisplay-Component. It seems that it doesn't dispatch DoubleClick-Events. For better understanding look at the following code: <s:VideoDisplay [..] doubleClickEnabled="true" doubleClick="{trace('VideoDisplay_DoubleClick')}" click="{trace('VideoDisplay_Click')}" /> <s:...

ActionScript3 font compilation transcoding errors under Linux

So, in Flash Builder on Windows, my app and all embedded fonts compile just fine. But when I try to build it on my production Linux server (via a Makefile on the command line using make), compilation fails while transcoding the fonts: /home/me/MyFlexProject/SomeModule/src/Fonts.as(29): Error: exception during transcoding: Font for alia...

Find users residing between a specified distance (using user's zipcode)

Is there a way to find the radial distance using the zipcode? My task is to search the all the users residing with in a specified distance. I know the zipcodes of the users. Eg, users between 25 miles from the current location. I have other search categories, for which i am using mysql queries. I am unable to figure anything out fo...

how difficult would it be to bring back local loading of sifr?

I've got a case where we will let our users download an HTTRACK generated copy of their personal site (i.e. subdomain) and would like to do sifr generation from the file:// protocol. How difficult would it be for the author of sifr to add it back in, or what would be required to add it back myself? ...