flash

Radio buttons and textboxes in Flash SWF disappear on IE

Hi there I have developed a Flash application for a client (wedding RSVP) and implemented it on the web. She complains that the textboxes and radio buttons disappear on IE6. Can anyone confirm this for me? http://toolboxstudio.co.za/phoebe/ Please don't submit the RSVP, as I don't want to spam my client, but please just tell me if you...

how is this survey made?

Does anyone know how this survey is made? And how something like it can be created? I know it's made with Flash but how do they export the results to a shopping cart? Have a client that would like something created similar to this. Thanks www.vitaminid com ...

360 degree rotation in flash actionscript 3

how to rotate an object 360 degree in as3 is any solution ...

Get size of ActionScript 3 Dictionary

var d:Dictionary = new Dictionary(); d["a"] = "b"; d["b"] = "z"; How to get the length/size of the dictionary (which is 2) ? ...

Trying to create a flash app that dispalys photos from facebook.

Hi there, i'm intending to create a flash app that pulls images from facebook and displays them in a slideshow format. Has some here tried this? or does anyone have suggestions/advice/links on where to find information on this. i have had a look at; http://components.zerofractal.com/FacebookBridge/ has anyone succesfully used this? i ...

Flash scrollbar component - removing down/up arrow

Hey there, i just want to remove the down and up arrow from a scrollbar component in flash cs3. I've tried to remove the movieclips but than the flash would throw errors(which is obvious), than i tried to delete the graphics inside the arrows but with no luck. Thanks in advanced! Edit: I forgot to mention that i want the actual scrollb...

Youtube downloader.

string host = "http://youtube.com/v/"; string end = ".flv"; WebClient Client = new WebClient (); StreamReader sr = new StreamReader(@"ids.txt"); string line; do { line = sr.ReadLine(); Client.DownloadFile(host+line+end,line+end); } while...

Flex: align Checkboxes horizontally, but Wrap To a New Line

I have a form and one of the fields is a check-all-that-applies type field with several checkboxes under it. I need to display the checkboxes side by side, but since there are many, I want them to wrap to the next line. I tried using HGroup inside the FormItem and around them all, but this displays them all on the same line without line...

Is it possible to make this Flex/Flash application safe?

I'm back with another Flex/Flash security question. I've already received some help from the community on this topic, but I'm still not quite sure this is the best way to do. Here's the thing. A flex web app, a lot of users (1000+), custom configuration of the application depending of the user group. Can I make this thing safe... or saf...

PDF to FLASH Converter

Hi, Is there any free library available which I can use in asp.net and C# which convert pdf to flash/swf. Thanks ...

flash video not working in aspx files

i have a .swf and .flv file and they work perfectly when i open them by double clicking on the swf file. But when i call it inan aspx page, it doesnt open. i checked IIS7 and in MIME types i have .flv and video/x-flv inherited. why wont it work? ...

Any workarounds for getting swfupload.js working in Linux?

Hi, SWFUpload doesn't work on ubuntu, I can see various mentions of it throughout the internets but I'm wondering if anyone here as found any work arounds? I'm developing on Windows, so the code executes fine. But my colleague is running ubuntu, and SWFUpload crashes instantly. Has anyone encountered that and found a work around? I've...

Is it possible to turn a string with base64 encoded image data into a displayable image in flash lite?

I have tried using a data URI to load the image data into a movie clip, but flash lite does not appear to support the data URI scheme. I also thought it might be possible to base64 decode the image data and write it out to a file and load the file back into the movie clip using the file URI scheme. However, I do not see a way to write ...

Flash: Closest point to MovieClip

I need to constrain a point inside a DisplayObject given to me by the artist. I got it working but only for the occations where the cursor is still inside bounds. The limited object is called limited. function onSqMouseMove(event:MouseEvent) { if(bounds.hitTestPoint(event.stageX, event.stageY, true)) { limited.x = event.st...

"lost in strings" AS3

Can someone follow what doing, and show me how to do it correctly? I'm new with strings and arrays. Anything you can suggest would be appreciated. GOAL I want script to calling display objects to the stage, and the timer to move images up and down to appear like a scrolling numbers. I start getting sloppy, and mess up passing to Tweene...

actionscript switch statement not working in flex

Hey all, I have a students xml from a database. The student_state column can have a value of "passed", among other values (hence the need for switch statement). When the list_changeHandler function is called, depending on the value of student_state, I want a form to display different fields. So I tried to dynamically create the form in ...

Can AS3 set the Accept Header for Flash Player (not AIR)

"Accept" is not listed in the forbidden headers in the documentation here: http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/URLRequestHeader.html but cant seem to set it in a GET request. Help! ...

Error #1006 value is not a function in C++ code compiled by Alchemy

I'm trying to port a big library to Alchemy. I've run into something that looks like an Alchemy bug. I have a class with a static member. There's a static function that uses it. Something like this: In foo.h: class Foo { static Bar m_pBar; static void doSomething (int a); } In foo.cpp: Bar Foo::m_pBar; void Foo::doSomething...

How to load PHP dynamically generated XML in FLASH

Question Updated for Bounty In Flash I need to load a dynamically generated XML file, which is created using PHP. I'm using the Bulk-loader library for all my loading. Currently my Flash can only load a manually created XML file, what I need Flash to do is to load a PHP generated XML File like this: http://dev.touchstorm.com/ten_hpn_...

How to reset Flex Progress bar in the datagrid?

I've developed a simple file upload program with flex. After adding files, and clicking on upload, the progress bar works fine. However, when I click on remove all and start adding files again, the progress bar does not seem to reset. I have tried searching this forum for answers but failed to find any. Could anyone help me with this ple...