flash

ActionScript 3, Flash Player 10 - 3d carousel changes perspective, alignment issues

We made a 3D carousel with the new native 3D support from flash. Now when I resize, my carousel should drag along the middle. Which it does fine. But for some reason the perspective doesnt come along, therefore it looks like the more i resize, the more the carousel is leaning to the left side. The carousel is set up very simple. Everyt...

capture snapshot with flash control

I would like to capture screenshots of the screen, convert it to a jpg and uploaded to the server using a flash control. I want something similar to what facebook has record a video, take a picture using your system's in-built web-cam, the main difference is that i want a screenshot of the system instead of the input from web-cam. open...

facebook as3 library in flash cs4

How can i use facebook as3 library in flash cs4 to build air application. I don't want to use flex here. Cs4 can build air application. But i can not use the library in cs4. Please help me as soon as possible.... ...

Could u tell me any popular air animation site ?

i want learn more thinks about air animation . not an application so any one know popular air animation site ? ...

Can't get ExternalInterface in flash to work...

Hello all, very new to flash. I'm using the XSPF music player (the slim version found here (http://musicplayer.sourceforge.net/), written in AS2) to play through a list of mp3s on a website. I need to make a javascript call each time it loads a track. I'm attempting to do this through ExternalInterface, but so far with no luck. Here's my...

See trace() of Flash when running in browser

Whats an easy way to see the trace() of Flash/Flex movies when running in any browser? ...

Wimpy Player not working, could it just be an incorrect Flash embedding?

I have a list of clients taken over from a competitor that went under ;) Anyway, they supposedly fixed the Flash Wimpy Player on the home page, here's the link but now I am being told it doesn't work again. I am wondering if it's simply an embedding issue, and I would like to learn how to fix it. Code is below, and it looks like way to...

Flash: addEventListener not detecting Paste events in Input Text boxes

I'm new to Flash, and I can't seem to do this simple action. (I'm using ActionScript 3.0) I created an input text box in my editor. The instance name is "test". In my Action editor I have this: import flash.events.Event; this.test.addEventListener(Event.PASTE, pasteHandler); function pasteHandler(e:Event) { trace("blaaaaaaaaaagh...

ActionScript 3.0 current function called, plus all the previous ones somehow

Alrighty, I don't know how I did this, probably the AS3 gods became angry with me when my scrollbar worked right after I coded it, with no bugs. But I have a very weird problem. I have three different buttons, they aren't nested within each other, and they have event listeners for mouse clicks that call a function. Whenever one of these ...

how to trace all the movieclip from another swf

Hi, i am new to Flash and AS. I have to 2 swf file one in as2 and another in as3 , i have loaded swf file(as2) in as3 swf, its working but i need to access all the movieclip from(swf(as2)) and change the property(like style) dynamically . how can i do it . Here my code:: var loader:Loader = new Loader(); loader.contentLoaderI...

How to recognize sounds (e.g. Clap Hands) with Flash?

What is the easiest way to recognize if my website visitor has just clapped hands twice? My idea: Flash is capable of using the microphone if allowed by the user. ...

FileReference.save() duplicates ByteArray

Hi, I've encountered a memory problem using FileReference.save(). My Flash application generates of a lot of data in real-time and needs to save this data to a local file. As I understand, Flash 10 (as opposed to AIR) does not support streaming to a file. But, what's even worse is that FileReference.save() duplicates all the data before...

Load SWF Compiled for Flash 10 into Flash 9 SWF

Is this possible? I would like to have a main swf that can be viewed by users who either have flash 9 or flash 10 installed. Inside of this swf, a separate module will be loaded only for users who have flash 10 installed. This module will use some advanced flash 10 features. ...

Incorrectly Embedding a Flash Movie - Guess I'm Guilty

I have tried through another user's suggestion, to use the swfobject methos of embedding Flash. I however, must not be as smart. Below is the monster I have come up with, but no movie plays, and I cannot even distinguish it as a Flash movie when I control+click (Mac)... as if it doesn't even exist. Any direction on how I could fix this...

Creating nested movie clips

I need to create 2 movie clips: clipA is be a wrapper movieclip. clipB is a container movieclip. There is about 15 pixels spacing between them. clipB is then passed to another function which add other elements to it ( buttons,graphics etc). Whats the best way to get this done ? ...

AS3 Obfuscation across many RSLs

I'm working on a very large flash project that shares code extensively across runtime libraries. I'm evaluating whether to obfuscate our code, and which obfuscator to use, and I'm having trouble finding one that fits the bill. -Many RSLs, many source trees and projects. -We use some dynamic properties, so I'd like to have a good deal of...

IE7 and 8 smaller font-size issues with SIFR

Howdy, my website http://tweetMP.org.au uses SIFR to render the flash font h2 headings. If you compare the site between Firefox and IE7/8 you'll notice the headings are noticably smaller in IE (7 and 8 only - IE6 looks fine). Adjusting the font-size on my ie(7 and 8 specific css) does nothing. Any ideas why this is the case? -V ...

How does papervision3d transform textures?

How, ultimately, does papervision3d (the popular 3D rendering package for Flash) draw transformed textures onto the screen? Is it internally using any of Flash's rendering apparatus - i.e. by drawing textures into DisplayObjects and transforming them, or with 3D MovieClips for example? Or perhaps filters? Or is it ultimately just readin...

Custom AS3 class is null after being added to Array

I'm a C# developer who is trying to learn some AS3, so this is going to be a pretty newbie question. I'm getting confused with regards to scope and GC, as I have a custom MovieClip-extending class (Slide) which I create instances of within a loop and push() into an Array, but afterwards the items are null when I pull them out of the col...

Accessing ActionScript3 Nested Movie Clips from Class

I'm trying to write a very simple/minimal custom video player in Flash CS3 I have a .fla file with 2 MovieClips in my library, Player and PlayButton. The PlayButton movieclip is found on the first frame inside the Player movieclip. Player is exported to actionscript and linked to a Player.as class which dynamically creates a video obj...