flash

Is there an easy way for users to print Flash (Open Flash Charts) from their browser?

Is there any easy way to print Flash Charts (Open Flash Charts 2) within a web page. Flash doesn't seem to print at all. I'm maintaining a health site for a client, and we use Open Flash Charts to draw multiple line charts for patients dynamic data. The client would like for patients to be able to easily print these charts, although Fla...

Identify MovieClip in AS3 among DisplayObjectContainer

in ActionScript 3, if I loop through the children of a movie clip, it will return a DisplayObjectContainer, which is a list of DisplayObjects. However, the AS3 typeof cannot identify MovieClip as MovieClip is now an object, instead of a data type. How can I correctly identify MovieClip? I found 3 solutions online: Solution 1 (the sol...

Is there any way to get around a Security Sandbox violation when a swf is loading another swf which loads another swf?

I have a AS3 swf [1] that is loading another AS2 swf [2] which is loading another AS3 swf [3]. I'm getting a Security Sandbox violation on the AS2 swf trying to access the last AS3 swf (3), but I'm using Security.allowDomain("*") in practically all the classes of the first AS3 swf (1). Is there any way to get around this? Thanks. ...

Flash FlowPlayer crossdomain.xml error

Hi, I posted a problem I'm having with the FlowPlayer jQuery plugin at http://static.flowplayer.org/forum/1/29367, but I've had no response, so I thought I'd try the larger user base here... :) I am having a problem with crossdomain.xml and the audio plugin to play an mp3. The player loads ok but I get an error like this when I click ...

How to make 3D wall gallery in Flex?

I like to create a Flex application, an image gallery, which comes like 3D wall. How can I do that? Is there any examples available? ...

How do i pass arraycollection to Advancedatagrid using HierarchicalData ?

Problem with passing arraycollection to Advance datagrid. My Arraycollection structure like `   private var groupList:ArrayCollection = new ArrayCollection([ {Country:'India', children:[ {Country:'Series1', children:[                                {Matches:'India Test series 1',isEnable:false,id:1,isSelected:true},        ...

flash activate internet explorer

as you all know that if we use flash object in web page in internet explorer Internet Explorer displays a box around Flash content and show a tooltip telling the user to click to activate the content. i am using fixit it work fine but problem is once page loaded completely. this object load it again. any other solution...? Thanks...

Adding unobtrusive progress bar to old-school file uploads

You all know the new generation of fancy, mostly Flash-based file uploaders like SWFUpload that can show a progress bar while uploading - a great improvement especially for shaky and low-bandwidth connections. However, these uploaders all bring their own logic of how to handle uploads on the client side. I am looking for an unobtrusive ...

How do I tell when a swf file is done playing in C#?

I am playing a swf file in a C# program. I am able start the video, stop it, rewind it, etc., but I want to know the exact time when video has finished playing so that I can move on and do some other stuff. Can the flash externalInterface interface be used so that the C# can get a notification of when the video is finished? I don't wa...

ActionScript 3.0, Flash 10.0, Maximum Number of Cue Points, Video

Is there a limit on the number of Cue Points you can use in Flash Video targeting Player 10.X? ...

actionscript 3 init()

I have often seen an init() within the constructor of AS3 classes, sometimes even being the only code in the constructor. Why would it be useful to do this, if you could simply use the constructor function itself to initialize a class? package { import flash.display.Sprite; public class Example extends Sprite { ...

Getting error when using the removeChild method

Happy Pre-Halloween everyone :) My issue today is a DisplayObject error I'm getting when remove a child object. I have code that will launch(addChild) a video container and video controls as well as add a close button. Now the close button works fine and everything, removing the video and controls and I'm able to choose another video ag...

Hosting Flash ActiveX control in WPF

I want to host a Flash animation in a WPF project. It is okay. But the problem is it shows in a tabcontrol. When I click second tabitem I want the flash animation to start. It gives this error: Exception of type 'System.Windows.Forms.AxHost+InvalidActiveXStateException' was thrown. My codes are as follows: C# code. private void M...

Should I encode flash videos using cbr or vbr for streaming?

We are going to be hosting some videos that will be streamed (not progressive download). Which is recommended? CBR (constant bit rate) or VBR (variable bit rate) encoding? ...

Ways to load images in AS3

How to load images in as3: Load them all at once, for example like this (pseudo as3 code): for each (var url:String in images){ loader.load(url); } Or to load them one by one (again, pseudo code): loader.load(images.shift()) onComplete(){ loadNext(images.shift()); } Which way is faster and better for performance? ...

Problem with Advancedatagrid in tree using flex3?

In my application i used Advance datagrid . On this arraycollection based to binding the dataprovider like <mx:dataProvider> <mx:HierarchicalData id="GC" source="{groupList}"/> </mx:dataProvider> my arraycollection like private var groupList:ArrayCollection = new ArrayCollection([  {Country:'India', children:[      {Country:'S...

actionscript 3 and JSON

Hi, I've been trying to get JSON working with AS3 for a while now, but to no avail. I keep getting the following error when I get the JSON back: TypeError: Error #1034: Type Coercion failed: cannot convert Object@26331c41 to Array. I've tried changing the datatype of the variable "jsonData" to object, which fixes the error, but I'm n...

AS3 Scale Multiple Image Holder Flickering

I have 5 item spirits (each has a bitmap within it) within a container sprite each 200px x 100px, I have the container sprite scaleX and scaleY set to .3 when I use TweenLite and animate the scales to 1 I get flickering between each item sprite until the animation is finished. any ideas on how I can reduce the flickering? ...

Embed an swf within a firefox extension without showing a security warning.

I need to embed an swf within an XUL panel. The issue I'm running in to is that, because the swf is a local file, flash displays a security warning to the users saying that the local swf is trying to connect to a website. Would it be possible to trick flash into thinking the swf is hosted externally to get around this issue? ...

ASP.Net and Flash animation: How to set the path?

Hi, I want to have a flash animation on my site. When I insert a "http:..." adress in the field "Data" and "Value" in the code, its completly okay But when I insert a "~/PATHHERE/FILEHERE.swf" in this fields, it don't function. Code: <object data="~/Images/Flash/banner.swf" type="application/x-shockwave-flash" width="936" ...