flash

Using WebCam images in an ASP.NET application

Greetings, Is there any way asp.net can access/stream web cam content without using flash or silverlight to access the web-cam? ...

Change style on selected text in TextFlow

Hi, I try to figure this example out, but it only assume that a TextArea is used. I only got the TextFlow to work with. I've tried to translate it to only use functions from TextFlow, but with no success. http://blog.flexexamples.com/2009/07/25/exporting-a-textflow-object-in-flex-4/ - (its the second example) Thanks! ...

SWFTools Segmentation Fault

I saw that thread: http://stackoverflow.com/questions/2055061/swftools-segmentation-fault When I tried to convert a PDF to SWF using pdf2swf I got an error: /usr/local/bin/pdf2swf /var/www/html/ny-sto-p.watchitoo.com/content/userContent/2/1GRKm/1GRKm.pdf -i -p 5 -o /var/www/html/ny-sto-p.watchitoo.com/content/userContent/2/1GRKm/1GRKm-...

Can I access Flash data before they are rendered by the browser ?

Is it possible to read numbers and names from a Flash page before they are rendered by the browser ? The webpage is changing dynamically and I would like to capture the data every about 60 minutes. I have no access to the Flash website but I might be able to modify an open source browser if this would help. OS is Win 7 and I can speak a...

Can I use the ASObject.ASType property with flash remoting in AS3?

I'd like to have ASObject's returned to Flash with their ASType property set. I expected that by setting ASType to the full qualified name (e.g. "package.package.ClassName") of an AS3 class that had the same property names as public variables, that flash remoting in the client would automatically look up the class and populate the fields...

Creating an rotating cone with dynamic segments using papervision

I'm trying to create a rotating cone using papervision where all the segments can be filled with a color / image separately. So just like you can use a MaterialsList to render all the sides from a Cube separately. Also I'd like to be able to check if a specific segment is clicked. ...

More HTTP verbs with AS3?

I'm developing a social game in Flash with a team of developers. Our server-side guy has developed a really slick RESTful API for the Flash client to talk to. A lot of the client-server interactions involve adding and removing objects from a persistent world, so the API makes extensive use of the PUT and DELETE verbs. The problem is, ...

AS3 FileFilter for blacklisting

Anyone know a way to use the FileFilter but have it show all files except a list of blacklisted files? Or if anyone knows a way that I can get the functionality of FileFilter but use a blacklist instead of a whitelist? Thanks ...

Can I use a string variable to reference a class variable?

Here's the scenario: I have an external swf file with x number of movieclips in its library that I load into a containing swf. Each MC in the external swf is linked with a class name and referenced on frame 1 as such var unique1:lineSequence1 = new lineSequence1(); the unique1 variable name will match a string variable I create in th...

Use variable name in StringUtil.substitue in Actionscript

If I have the following code: var value : String = StringUtil.substitute("The value {0} requested is {1}", user, value); How can I use the variable name instead of using {0} and {1} in the code. Please advice. Thanks. Edit: The above code is quoted from http://www.rialvalue.com/blog/2010/05/10/string-templating-in-flex/. It says t...

Instruction works outside of a function but not inside on ActionScript 2 Flash

Hello, i dont know why this instruccion works when i write it in this way: lv = new LoadVars(); lv.sVar1 = "value1"; lv.sVar2 = "value2"; lv.onLoad = onLoadCallBack; lv.sendAndLoad("http://localhost/tiempo/flash/rsstoflash.php?" + new Date(), lv, "POST"); But if a put this code into a function in this way: function carga() { lv = new...

How to fix stage.stageWidth and stageHeight to be recognized on Firefox 3.5??

Hi all, Working on personal full flash site and I can't really figure out how to make MC's position on Stage aligned on Firefox browser. Everything goes fine using Safari. I have tried a method of set a timer every time it goes off (every 200 ms or so) it checks to see if stage.stageWidth > 0. If that is the case, do stop the timer an...

FLASH/AS3: Figure that follows the cursor yet constrained to an irregular area

How can I make in Actionscript 3 in Flash a MovieClip that follow the cursor, but is constrained to the irregular shape of another MovieClip? Edit: this is somewhat what I need: stage.addEventListener(MouseEvent.MOUSE_MOVE,follow); function follow(evt:MouseEvent){ if(container.hitTestPoint(mouseX, mouseY, true)) { cursor.x = ...

Online Image Slideshow Question. File Access Problems.

Hi, I have a flash .swf file that I embed on my webpage. On my server I have the .swf file and multiple image folders. I would like to load every file in one of those folders into the flash slideshow. How should I go about doing this? I tried used Air but it doesn't work on my system as an application so I doubt it will work online. ...

Is jQuery forcing Adobe ColdFusion to abandon the dead flash product line?

I have been reading a lot about how flash development/design had died, and as jQuery and in the near future html5 comes out, will this start to push Adobe/Coldfusion away from flash towards less product linking? I mean, I love coldfusion, and want that to continue to grow, however, if Adobe only bought Coldfusion from Macromedia, so the...

multiple URLLoader

I am loading multiple xml files with URLLoader. for (var i=0;i<xmlCount;i++) { loadXML(xmlFiles[i], i); } public function loadXML(req:String=null, _id:Number=0):void { var loader:URLLoader = new URLLoader(); loader.addEventListener(ProgressEvent.PROGRESS, function a(e:ProgressEvent) {XMLLoadProgress(e, _id)...

dynamically embedding youtube videos with jquery

Hello all, I'm trying to retrieve a listing of a user's youtube videos and embed them in a page using jQuery. My code looks something like this: $(document).ready(function() { //some variables var fl_obj_template = $('<object width="260" height="140">' + '<param name="movie" value=""></param...

SampleDataEvent.data.writeFloat() - Why call it twice?

Below is a snippet from the Adobe Live Docs SampleDataEvent class. It demonstrates how to create an audible sine wave by pushing samples into a ByteArray. The part that I am hung up on is why you need to push the same value into the writeFloat() method twice? var mySound:Sound = new Sound(); function sineWaveGenerator(event:SampleDataEv...

Is there any opensource Flash+PHP multyuser whiteboard?

Is there any opensource Flash+PHP multyuser whiteboard? ...

Using flash api to access WebCam in an ASP.NET application

Greetings, I'm trying to play with live web cam using asp.net with C#. I want to access/stream web cam content using flash then send the captured streams using Real-time Transport Protocol. How is possiable to do that? do you know any simple asp.net application related to this? ...