flash

Flex: -frames.frame

Has anyone used this successfully or found further documentation than just the below (from the Adobe site): frames.frame label class_name [...] Specifies a SWF file frame label with a sequence of class names that are linked onto the frame. This option lets you add asset factories that stream in after the appli...

custom as3 class 04 by Dinesh?

package gpslab.com.facers{ import flash.display.*; import flash.events.*; import flash.net.*; import gpslab.com.facers.resource.ApplicationConst; import gpslab.com.facers.resource.ApplicationDTO; import gpslab.com.facers.resource.EventConst; import gpslab.com.facers.xmlLoader.XMLDispatcher; import br.com...

Flash video playing on top of everything else in IE7

Hi everyone, I've been spending hours now reading up on IE7's issue with rendering Flash content on top of other elements, particularly navigation menus (this is often a problem with dropdown menus and Flash ad banners, for example). I've tried a few of the suggested solutions but none have worked for me so far. I'll do my best to expla...

crash when linking swc with Alchemy

I have a project I'm trying to compile with alchemy. It will compile .o and .a files, but when trying to create a .swc, it will fail. It appears to crash with this error: g++ -swc -o mylib.swc my-flex-interface.cpp mylib.a Cannot yet select: 0x279c810: ch,flag = AVM2ISD::CALL - A call instruction 0x279c7a0, 0x29c4350 0 llc ...

Flash: Loadmovie() in a specific width and height ?

Hi, i'm using loadmovie() to load a youtube video player inside my flash website but i want to specify the width and height so it can fit my box. This is my code: vloader.loadMovie("http://www.youtube.com/v/Alw5hs0chj0&hl=fr&fs=1hJ-mPcGtC"); I have an empty CLIP called "vloader" where i load the video player. Note: it is re...

Is there a more efficient AS3 way to compare 2 arrays for adds, removes & updates?

Hi all - I'm wondering if there is a better way to approach this than my current solution... I have a list of items, I then retrieve another list of items. I need to compare the two lists and come up with a list of items that are existing (for update), a list that are not existing in the new list (for removal) and a list of items that a...

How to accelerate the FLV video in RTMP?

I've been stucked with this requirement for a long time.And how can I do that?Any suggestions would be appreciated! ...

Pixelation effect

Does anyone know how to archieve pixelation effect in AS3 which looks really smooth like this website: http://www.truly-design.com/site ?? ...

Port Flash to iPhone

How hard would it be to port a flash game to the iPhone. Obviously Flash CS5 is no longer an options, I still would like to know if there's anything that can be reused? or do I have to write everything from scratch (Is Obj-C that different than ActionScript?) Is there any other shortcuts? Also, if anyone has done this before please share...

creating a Chat room in Flex.

Hi, I want to implement a Chat room in Flex 3. Please help me. Thanks!! ...

Red5 vs BlazeDS

What technology are better (robust, stable, speed) for rich web app with flash movies, chat, etc. Somebody said that Red5 will drop down if more that 50 users try to suck video stream from it. Is there people who use Java on server side and Flash for client side? ...

Decode amf3 object using PHP

My flash code: var request=new URLRequest('http://localhost/test.php'); request.method = URLRequestMethod.POST; var data = new URLVariables(); var bytes:ByteArray = new ByteArray(); bytes.objectEncoding = ObjectEncoding.AMF3; //write an object into the bytearray bytes.writeObject( { myString:"Hello World"} ); data.data = bytes; ...

html5 vs flash - full comparison chart anywhere?

So since Steve Jobs said Flash sucks and implied that HTML5 can do everything Flash can without the need for a Plugin, I keep hearing those exact words from a lot of People. I would really like to have a Chart somewhere (similar to http://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28HTML5%29#Form_elements_and_attributes ) that ...

Is there anyway to turn off the url "cliking" sound in IE using html, javascript, or flash?

I have a flash application written in action script 2, and at one point it makes multiple back-to-back JavaScript requests using getUrl(). They have to be done as separate requests because IE had a limit on the length of a single request, and fails silently if that limit is passed. When ever this happens, if the user has their sound t...

could i get access to the loaded uri in actionscript for "loadmovie"

i wanna load a movieclip inside another movieclip with loadmovie or anything like this. so my question is.... could have i access to the location of the loaded swf-file inside the loaded swf-file? example: swf#1 loads swf#2 inside itself, so now the swf#2 should check its own uri with an identical key.. but without access to the loaded...

Persistent Preloader: How to have one preloader show load progress of Flex Container file AND loaded Flash movie and assets

I've built a simple class that implements IPreloaderDisplay and handles all relevant events. How can I have data persist between the preloader and the Application? Even when I stop propagation via stopImmediatePropagation, the Application.application.preloader reference is discarded and I am unable to reach that code via the main appli...

Flash player freezes in fullscreen mode

A lot of users on one of our online apps complain about the app freezing in the fullscreen mode. I googled and came across many others complaining about this problem for other flash apps. Is it such a common problem, or are there known causes for it? ...

google analytics with SWFAddress

How do I incorporate Google Analytics into a Flash AS2 site that uses SWFAddress please? What code do I need and where does it go? Many thanks for your help. ...

best-practice to display flash on Iphone / Ipad ?

Hi, I have a website that uses flash. I would like to convert the website so that iphone / ipad users can see my website. I understand that Iphone / Ipad can't render flash. What would be the best-practice to convert flash website to iphone / ipad compatible? I am thinking HTML 5. ...

bitmap data as movie clip

Hi, I import my images with imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete); imageLoader.load(imageRequest); and then try and cast as a movieclip: var newImage:MovieClip = imageLoader.content as MovieClip; addChild(newImage); i keep getting errors, is this possible? Thanks, Ross ...