flash

Problem with video in flash on fullscreen

Hello, sorry for my bad english. I added video to my flash in right bottom corner. In normal screen all good, but in fulscreen stretching only video(on full screen), but not all contetnt. [image][1] http://img2.pict.com/cb/d2/2b/1161169/0/320/problem.png ...

Flex: Testing UI components at the click level?

I've been working on a Flex component and I'd like to write some automated tests for it. The trouble is, the UI testing tools I've looked at (FlexMonkey and Selenium Flex API) don't simulate "enough": Most of the bugs which have come up so far relate to the way Flex deals with dragging and dropping, which these libraries can't simulate ...

How to make Flash 8 print WYSIWYG

I have an application that requires dynamic, rich-formatted printing of a .swf using Flash print. The contents of the .swf get created dynamically using XML and styled using CSS. Each bit of content (usually html styled text) is added to its own movie clip. The movie clip is then measured and placed on the master page wherever it will f...

Actionscript 3 using keyboard to focus on HTML elements inside a TextArea

I am attempting to add section 508 (Accessibility) compliance to an application built on Actionscript 3. We have popups triggered by HTML links in text. One of the requirements of the section 508 standard is that the entire application be navigable with the keyboard, including any uses of the anchor tag in the text. How do I assign fo...

Flash Player 10 real-time audio playback

I'm trying to playback some sample data through the new real-time audio capabilities of Flash Player 10. I started with the example given at the bottom of this page on livedocs, which seems to work fine and plays a crystal clear tone. I assume that the two writeFloat's in the example write to the left and right audio channels respective...

Flash Player deep linking problem

I'm working on this Flash project and I've constructed a swf where all the assets are exported into frame 5 and the first frame contains the pre-loader. When the pre-loader is finished it jumps to frame 10 where the actual site begins. This works great. However, in every browser I've tested so far (FF, IE, Chrome and Safari) when I plac...

Parent-Child Constraints

Example: var circle1 :Canvas = new Canvas(); var circle2 :Canvas = new Canvas(); circle1.addChild( circle2 ) circle1.scaleX = 2; After the example before when Flash will render circle2 because it is child to circle1 it will be scaled to. Is there a way I can scale circle1 without affect circle2 or what can I do to circle2 so it can h...

Disable Flash Player alert messages

Is it possible to disable Flash Player alerts (eg. "A script in this movie is causing Mactromedia Flash Player 6 to run slowly.")? I'm not saying I want to do it: I only want to know if is it possible to disable them. :-) ...

Purchase Flash Player license

Have you ever purchased a Flash Player License for commercial applications? Could you tell me more about procedures, prices, etc.? ...

how to read particular xml value using flex?

i used httpservice for read xml get full xml but i want particular xml fled value only like first node id only how can i split xml ? <mx:HTTPService result="getid(event)" id="xml_coupon" url="###" useProxy="false" resultFormat="e4x"/> public function getid((evt:ResultEvent):void { var id:number=evt.result.id; ...

Flash: How can I Disable or block all mouse events temporarily for an externally loaded SWF

I have SWF files that I load into my flash movie and those SWF files sometimes have mouse events that can interfere with dialogs and buttons in my flash movie. I'd like to temporarily disable the loaded SWFs mouse event handlers or block them from having any effects on my flash movie. My flash movie is AS 2. ...

Complex movement within animation

I've this application, where two children are playing catch. One throws and the other catches. While I can show a ball object moving between two stationary objects, how do I show the objects "releasing" and "catching" the ball, in a way that is close to lifelike? EDIT: The movement of the hands in this game: http://www.acreativedeskto...

FLASH: Unable to connect to endpoint .Net ASMX Web service

I am troubleshooting a legacy flash application built using Flash MX 2004 and actionscript 2. It interacts with web services. I am getting the error mentioned in the title. Does anyone have any experience dealing with such errors? Url in the config file is http://XX.XX.XX.XX/abc/abc.asmx%3FWSDL ...

Layers in a swf refuse to load (occasionally, after a cache clear)

Hey guys, I have a swf with four frames. The first frame loads an external class that acts as traffic controller - looks at the root flashvars being passed in and redirects to frame 2, 3, or 4. Frame 2 is a basic login screen. There's 5 layers - 2 background layers, the login screen, and a dummy text field. I also have trace statements...

RSS Video Feed Enhancement - Need to get duration on items that dont include it in feed

I have a working DNLA device (Xbox360, PSP...) RSS Video feed reader in C#. It parses .opml files to get the feed uri. Sometimes an RSS feed item will not have a duration value, so I am hard coding a default duration value when it doesn't. I want to get the true duration of the video file. My idea is to use httpWebRequest to get a b...

How do I write a KEY_DOWN Handler in ActionScript 3?

Okay, I've tried about 8 different ways to get a key event into my code, and none of them seem to work. Can someone please tell me how I can move this ball when I press shift? Thank you in advance <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" styleName = "plain" xmlns="cyanprim...

Can I dynamically generate a 300 dpi image from a flash file?

I'm using a compination of actionscript's getPixel and php's imagecreatetruecolor and imagesetpixel to generate a png image of an swf movie inside a browser. At the moment it will output a 72 dpi image at the same resolution as the swf movie, but I've been asked about the possibility of generating a 300 dpi image instead. Is this possi...

Disable flash or other plugins in .NET WebBrowser control

Is it possible to disable Flash Player or any other plugins from being used by the .NET WebBrowser control? ...

where are the flex libraries? can i clear the cache?

Where are the signed, cached flex libraries on a windows / mac / linux system? They don't appear to be in my browser cache... so where is adobe keeping them? So, as my answer below shows, I found the files. But can I clear the cache? After trashing the files in windows, I don't see the files get downloaded again (with fiddler). ...

How do I animate a sprite?

I'm using Flex and AS3 to try and create a game, and I'm wondering how I can animate things easily. I would prefer to use sprite sheet images. I'm going to go a head and post the code (It's really short) I got so far, can someone look over it and tell me the best/simplest/easiest way to add animation support? Thank you in advance. <?xml...