flash

Application Sharing in Adobe AIR

Iam writing an Application Sharing application, my company has used to choose Adobe Air for this. After Researching on google and posting on Adobe Forums , I found that AIR doesn't allow to access the OS natively. We need to create workarounds. I have tried and implemented Merapi and tried using J2EE based server Queues and also tried ...

Streaming audio receives InsufficietBW from server, what should the player do?

My streaming audio player sometimes receives NetStream.Play.InsufficientBW and shortly after that, the NetConnection is closed. What should the player do in response to the InsufficientBW status? ...

Flash - Continue Script despite Running Slow Warning

My program requires multiple random recursions, and I have to manually let the script continue past a warning that keeps popping up: "A script in this movie is causing flash player to run slowly." Is it possible to automatically continue past this warning? ...

Determining flash component has loaded.

Hi, I have an HTML page containing a flash file, I need to write code in javascript that would execute once the flash file is loaded. (its actually the code to overide the __flash__removeCallback to solve the famous line:52 bug refer: https://bugs.adobe.com/jira/browse/FP-529) The actual solution for the bug is doing so on window.onUnlo...

How to protect swf files from being view?

Hi, I have couple of .swf games files uploaded to my server. I want to run some test, but I dont want to expose or let public/others people to see our swf files. Currently, if I type: www.domain.com/games/game1.swf It will play the swf file. I tried to visit some other flash game based websites. When I visit one of the swf files (e.g ...

Saving and Loading XML file with flex

Hello Community, I want to have a xml file for my configuration and so i have to load it from the same directory the swf file lies in and save it afterwards. I saw articles about filestreams in flex but my compiler didn't allow me to use the filestream. I use the open source flex sdk. anyone got an idea? thanks in advance Sebastian ...

importing an XML document

What I'm working on is a navigation bar populated by an XML document. I'm working from an existing navigation bar while I learn, and the existing bar has a menu, and when clicked each button has a sub menu. I'm trying to remove the submenu so that when you click the navigation bar button, you go to the address defined in the XML. So f...

Passing variable to flash from php

Hello! I have a little problem..but im goin' to crazy... In the html i have this code: <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://macromedia.com/cabs/swflash.cab#version=6,0,0,0" ID=flaMovie WIDTH=554.6 HEIGHT=57.3> <PARAM NAME=movie VALUE="main_menu.swf"> <PARAM NAME=FlashVars VALUE="nye...

Looking for web-based graph editing framework

Does anyone know of a web-based framework for interactively editing graphs (nodes and edges)? Flash or Javascript is fine. I'm looking for something like GEF in Eclipse, or JGraph, or the NetBeans graph framework. Thanks! Just to be clear, I'm interested in editing tools for mathematical graphs (nodes and edges), not charting tools. ...

Is there any security problem in hosting a crossdomain.xml in our servers?

It was asked to us to host a crossdomain.xml file in our servers in order to access some XML files we have developed. The content of this file is: <cross-domain-policy> <allow-access-from domain="*" to-ports="*"/> </cross-domain-policy> Is it OK? ...

Change dynamic text position in Flash via AS

Hi! I have a *.fla that gets its data from a xml file with some nodes. What I really want to know is how can I change my text x and y positions via AS? Thanks!! ...

Having trouble with Interactive Plane

I am having some trouble getting an interactive, animated plane created from a MovieClip in the Library to show any kind of animation or receive any mouse events. Specifically, I am having issues with the different states of Button instances in the MovieClip. Here's the basic code that I am testing with: private function init3D():voi...

Read joystick from Flash

Can I read a joystick as input to a Flash applet? What options do I have? Ideally I want something portable between MacOSX and Windows, but something Windows specific is acceptable. (Is Linux too much to hope for?) I'm also hoping for analog(ish) support; that is I might be told that the joystick is 62% up and 32% left, not just "Up"...

Loading symbols from an AS2 SWF into an AS3 application?

I am converting a large application from AS2 to AS3. Part of the function is that it loads assets embedded in SWFs, which are old things. It is not possible to convert these to AS3 (there's really no code in them, it's just they're produced by tools that output flash 6 compatible SWFs). The question is, how can I use this AVM1 (ActionS...

make a flash app to take snapshot and submit the picture to a url

I want to build a flash app to let me and my users snap a webcam picture and upload it to a url (post multipart data). Where do i start enabling this in flash? I have flash CS4 btw. ...

How to create fluid layout in Flex3? With an Example.

How to create fluid layout in Flex3? With an Example. Thanks for your reply in advance. ...

Embed flash in html

In chrome, ie and safari this is not a problem, but in firefox it is. I use <object> for my flashclip. <object type="application/x-shockwave-flash"> <param name="movie" value="myclip.swf" /> <param name="quality" value="high" /> </object> What am I doing wrong? ...

Does sifr flash display the fonts if they are not installed in the pc?

I want to use the Sifr functionality with the Margarosa font and so i have created my sifr swf with the required margarosa font. This works fine and the effect is visible properly in my pc as the margarosa fonts are installed in my computer. But when i check it in another computer where these fonts are not installed, the effect is not di...

Viewing Flash Socket

I have a flash (ActionScript 3.0) which uses socket connection to send data to the server. Is there any way to view the sent socket data? (like http-requests in firebug) ...

Cannot Convert to ClassFactory

I have this item renderer MyRenderer.mxml <?xml version="1.0" encoding="utf-8"?> <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml" implements="mx.core.IDataRenderer" > <mx:Script> <![CDATA[ [Bindable] public var greylist : XML; public function newInstance() : * { return new MyRenderer(); } ]...