flash

Library for playing Matroska (.MKV) in Flash?

So.. Is there any lib for playing MKV (matroska) in flash (AS3, MXML) OpenSource or KindOf opensource? (In my MKV I have Theora video H264 video... If library supports only 1 type of video codec Ill live with that=)) ...

Why wouldn't a flex remoteobject be able to work within a custom component?

Please enlighten this flex noob. I have a remoteobject within my main.mxml. I can call a function on the service from an init() function on my main.mxml, and my java debugger triggers a breakpoint. When I move the remoteobject declaration and function call into a custom component (that is declared within main.mxml), the remote functio...

Flash-based Document Viewer/Converter (FlashPaper alternative, but with automated converter support)

Hey stackoverflow community, I am looking for a Document Viewer application that I can embed in a Flash/Flex application that supports Microsoft Office documents as well as PDF. I have looked into print2flash as a possibility, but their automated converter executable requires access to the files and directories. Does anyone know of oth...

Intercept a request to read a particular file and instead generate the apparent output of that file read programatically

Sorry for the long and yet still somehow vague title! A friend of mine has a Flash Action script running on a LAMP server that currently reads an xml config file. He's asked me if it's possible to remove the xml file, and replace it somehow with a system (lets call it an 'auto xml generator') that intercepts the request to read that fil...

Flash swf to play PCM WAV files?

I am in need of a Flash swf that is capable of loading PCM WAV files via a url passed to it. An example of the file can be found here: http://msdn.microsoft.com/en-us/library/ff512405.aspx The swf does not need a visible interface, as it is meant for audio playing only and not user interaction. The swf should have a simple javascript...

Action Script 3.0 : How to extract two value from string.?

HI I have a URL var str:String = "conn=rtmp://server.com/service/&fileId=myfile.flv" or var str:String = "fileId=myfile.flv&conn=rtmp://server.com/service/" The str might be like this, But i need to get the value of "conn" and "fileId" from the string. how can i write a function for that. ...

Calling WCF Service from Action Script 2

Hi All, I am a .NET programmer working with a Flash designer on a project. The design is that they will create a flash UI (implemented with AS2) to present a questionnaire. After it is completed by an end user, the will send me (a .net web service of some form) the answers to the questionnaire, I will perform a calculation, and I will...

Flash 10 - read file from a drag and drop action?

Hi, I'm looking at how to read a file in flash 10 here: http://www.thedesilva.com/2008/11/flash-10-file-reference/ is there a way to initiate the file read from a drag and drop? For example, the user drags and drops a text file onto my flash element in the browser - can I initiate the file read from that? Thanks ...

sifr 2.0.7 only working when font is installed on user's computer?

Hey all. I am using sifr 2.0.7 and here's the deal. The sifr is working (I can see it in the DOM) however, the font is wrong. It doesn't pick up my swf font (DIN) unless you have it installed on your computer? The css font style is: HelveticaNeue which is what the sifr seems to render if you don't have DIN installed. I see it on my c...

can I prohibit users from loading swf files by AS3 / Flash Loader.load() and only allow loading images?

I want to have an AS3 app load images from url supplied by the user. But I don't want a malicious user to be able to load an SWF file in place of the image, such as with an altered extension "maliciousSwf.png". Well, not sure how big a security threat that is above and beyond the ability of the hacker to decompile swf, but I think that i...

Flash Builder Update Query Issue - Channel disconnected Channel disconnected before an acknowledgement was received

I am trying to build my first CRUD application and cant get the update query to work. Here is the MXML and AS. <?xml version="1.0" encoding="utf-8"?> <fx:Script> <![CDATA[ import mx.controls.Alert; import mx.events.DataGridEvent; import mx.events.FlexEvent; import mx.rpc.events.ResultEvent; ...

Flash - eval() available?

Hi, Is there any way to execute arbitrary code in Flash, like javascript's eval()? I'd like to take some code as a string and execute it, if possible (I understand this is not a great idea), Thanks ...

does google crawl flash

i have one domain link text i want to know that does google crawl flash like in the intro of mentioned website thanks ...

Flash Game Help

What do I need to download to make flash games and how much does it cost? Also will I be able to use a mac to do this? ...

FlashRadioButon

var opt1_MC = ansr.createClassObject(mx.controls.RadioButton, "choice_Mc", ansr.getNextHighestDepth(), {label"test",data:"test",groupName:"questionChoiceGroup"}); opt1_MC.setStyle("fontWeight", "bold"); here font weight i had changed as italic , but it not set .. flash cs2 --? why.. any one can help me ?.thanks ...

how do i display the coordinates of a random triangle in actionscript 2.0?

Hi I wanna generate a random triangle with coordinates, which shows the arcs of each corner in actionscript 2.0 with flash 8.0. Thanks in advance ...

Flash : Local connection gives error

I am trying to connect to FBJS bridge. It keeps giving me the following error.When I'm opening only one connection and I do not have any other window open. ArgumentError: Error #2082: Connect failed because the object is already connected. at flash.net::LocalConnection/connect() at BabyVille()[C:\Documents and Settings\user\Desktop\baby...

How do I manage library symbols with linked classes in Flash CS4 to compile/debug in Flash Builder 4?

I'm building a video player using Flash CS4 (hereby referred to as "Flash") to create the graphic symbols and compiling and debugging with Flash Builder 4 ("FB4"). Here are the steps I take in my current workflow: --Create the graphic symbols in Flash. I've created a few different symbols for the player, but I'll focus on just the play/...

How could I generate instances of an object randomly at the top of the screen and make them "fall"?

I am making a game in Flash CS4 (actionscript 3) and I would like to be able to make "copies" of an instance that would randomly appear at the top of the screen and fall. For example, multiple objects(that are the same one) are falling from the top of the screen continuously, starting at random X positions. (i think this would be consid...

Mixing alignment on a single line in Flex TLF

Hi I want to mix alignments in a single line in flex using TLF. Ie., on each given line, I'd like something like this: the quick brown fox|1 jumps over the|2 lazy dog|3 In essence there's simply 2 columns there - the left column is right aligned, and the right column is left aligned. The docs on this are pretty scar...