flash

What does this mean? I see this all the time in comments, in flash actionscript

What does this mean? /** * ... * @author ... */ and now do i use it? thanks! (tried google-ing first, but wildcards are throwing it off) ...

Is it possible to do Flash pseudo streaming with S3?

I've been using S3 to store and serve FLV and MP4 videos. It works great, but the content is progressively downloaded. I was wondering if it is possible to get so-called "pseudo streaming" to work with S3. Pseudo streaming allows viewers to seek ahead in a video before the full video has downloaded as well as send only the bits nece...

PHP + gzip: close connection and continue executing

I am responsible for the backend portion of an API, written in PHP, which is primarily used by a Flash client. What happens right now is: the Flash client makes a call, the backend loads the necessary data, does any necessary processing and post processing, logging and caching and then returns the result to the client. What I would like...

Trace what runs the function

private function dataLevel():void { //Level 2 a1=new Array(b1,b2); a2=new Array(b3,b4); //Level 1 allA=new Array(a1,a2); //trace if the following level exist //if the following level exist, create the Branch if (allA is Array==true) { createBranch(this); if (allA[0] is Array==true) { createBranch(allA[0])...

FLVPlayBack: don't load flv until prompted to

Is it possible to configure FLVPlayback so that it does not auto-load the associated video file, but instead waits for a click on a "play" button to load and then play it? (I'm building a site that will have a player for a rather large video on its front page, and I'd rather not have the video downloaded unless/until the user asks to see...

is there a way that Flash & .Net can work togethere

hi, I would need to create a website that has all the screens using Flash. The Flash screen would be having authentication system and get few data like Menu info, image info.................. Just wondering what is the way that Flash & .Net can talk. Application front end: Flash Platform: .Net (Asp.Net, C#) Back end: SQL server........

Flash - Firefox issue

I realised that if I do have a flash object and do not include a 'wmode' attribute, I will not be able to overlay HTML because the flash will always play on top. But if I do include a 'wmode:transparent' , the flash object completely disappears in firefox, whereas if I use 'wmode:opaque' , I get a white box in place of the Flash object. ...

how to use UIComponent/Flash in Flex

Hi, I am new to Flash/Flex. I would like to use a Component I created in Flash extending fl.core.UIComponent. How do I use this in Flex? Do I just export it as a swc or do I have to use the Flash Flex 3 kit which will convert it to a UIMovieClip. That does not sound right. I would appreciate a few simple steps describing the proc...

Upload a folder in ASP.NET of Flash or Silverlight

Dear all Is there any way to upload entire folder (a folder) in asp.net? Is there any way to upload in Flash or Silverlight? ...

Change the width and height of a swf dynamically

I'm trying to use the following js to change the width and height of a swf. $('object').attr({'width':100,'height':100}); $('object embed').attr({'width':100,'height':100}); The script works well on firefox, safari, IE8. However, it doesn't work on IE7. Is there any solution? ...

Debuging a CRASHING flash application

Hi, What is the best way to debug a CRASHING flash app ? (no exception, my application just crash) I am actualy facing a big problem: my app (full-flash website) was working fine with the flashplayer 9 but crash with the flashplayer 10... Here is the BAD method who crash my app with FP10. After removing the call to this method everythi...

Flash AS3 : how to stop data loading before completion ?

Hi, I'm developing a system which use resources(image/sound) from server. on user action, I download specific resources and use them. now, before all those resources downloading completes, If user perform another action, I want to discontinue/cancel downloading current ones. Is this possible? I tried with Loader.stop() method but it ...

Download multiple file in ASP.NET or Flash

Dear all Is there any way to DOWNLOAD multiple files in asp.net? Is there any way to DOWNLOAD multiple files in Flash? ...

resizing a child makes other child images to scale?

Hello I have this crazy situation when a child I modify height over the edge of it's parent, force another child of same parent display it's inside images scaled. If resized child don't pass the design time height of parent, no scale occur. Thumbs are loaded at runtime and simple added to a mc that is added to brother of resized mc. ...

Changing Tempo (BPM) of an audio stream in Flash

We are trying to adjust the tempo of a song, without changing pitch in a flash audio (mp3) player/streamer. What we're thinking at is a near-instant tempo change at the press of a button. Is this possible within Flash? Thanks Terataz ...

Live video streaming using progressive download (and not RTMP) in Flash

Hi, Is it possible to use progressive download for near real-time playback of a live video stream recorded with a webcam? What I need is that a video stream is recorded on one end, uploaded in real-time to a server and downloaded with a short delay, but in real-time, using progressive download (i.e., HTTP streaming) on another end for ...

TweenLite AS3 moving on x-axis issue

I'm trying to create a simple animation effect with TweenLite AS3, having a movieclip ("selectedFrame"), shift on the x-axis on the stage every few seconds. Other TweenLite effects (using the 'alpha' function) are working fine, but for some reason I can't get this simple shift to work. Here is the block of code I'm trying to move the MC...

Preloader problem in flash actionscript2.0

I am having two problems in the loader, the bar "bar" does not increase and mc_home get the position y = 0 no matter where I place the pages_mc nor their place the pages_mc._y = 100; import gs.TweenLite; import gs.easing.* var mcLoader = new MovieClipLoader(); var mclListener:Object = new Object(); mclListener.onLoadError = function(ta...

konami code in flex

What would be the best way to implement the konami code into a flex application? I want to create a component to add it on all my proyects, just for fun. thanks UPDATE: I made a simple component, thanks to ZaBlanc <?xml version="1.0" encoding="utf-8"?> <mx:UIComponent xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()...

Flash AS3 fluid navigation bar.

hi all. I'm horrible with AS3. I've tried this effect a number of different ways. I'm trying to get a navigation bar in AS3 that does something like this. A|B|C|D click on C bar slides and you get C|A|B|D click on D bar slides and you get D|A|B|C and so on. Help or a link to help is much appreciated. right now i have this muc...