active questions tagged swf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T20:10:36Z http://stackoverflow.com/feeds/tag/swf http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1219890/flash-document-viewer 0 Flash document viewer cory 2009-08-02T21:22:58Z 2009-12-20T18:50:58Z <p>Is there a flash based document viewer? I am looking for something similar to iPaper that Scribd.com uses. </p> http://stackoverflow.com/questions/1935333/flash-custom-language-instead-of-actionscript 0 Flash - custom language instead of ActionScript Alon 2009-12-20T09:16:26Z 2009-12-20T09:27:33Z <p>Hi, </p> <p>I recently heard of a language that gives the same functionality as ActionScript (creating flash SWF files) with a certain speed increase. The language was called something along the lines of 'hex'.</p> <p>Does anyone have any idea what this language is?</p> <p>Thanks</p> http://stackoverflow.com/questions/1934936/flash-swf-inside-a-swf-creates-a-problem 0 flash swf inside a swf creates a problem? Abhilash M 2009-12-20T05:24:11Z 2009-12-20T05:24:11Z <p>i've made a personal portfolio, </p> <p><a href="http://abhilash.co.nr/" rel="nofollow" title="abhilash views">link text</a> ,the frames overlap when viewed? i've used transition states, when i'm in other page, other frames just flickers, what is major problem here? actually i've used swf inside swf as finally when i export from flex builder, is this the problem? how to overcome this problem?</p> http://stackoverflow.com/questions/1931287/how-to-set-focus-on-fbswf-tags-in-facebook-app 0 How to set focus on fb:swf tags in Facebook app? unknown (google) 2009-12-18T23:31:11Z 2009-12-18T23:31:11Z <p>My code is as follows:</p> <pre><code>&lt;input id="input" type="text" onfocus="Focus('Input')" /&gt; &lt;input id="text" type="text" /&gt; &lt;fb:swf id="game" onfocus="Focus('Game')" swfsrc="http://ventoline.com/frozenbubble/preloaderbustamove.swf" width="640" height="480" /&gt; &lt;script type="text/javascript"&gt; function Focus(msg){ new Dialog().showMessage('Debug','Focus on: ' + msg); } &lt;/script&gt; </code></pre> <p>When I run it through my Facebook app (canvas page), the 'Focus on: Game' message does not display, but the 'Focus on: Input' does.</p> <p>You can try this for yourself if you like, you will see it as I do with a copy-paste of this source code.</p> <p>Tried on Facebook developer forums and no joy. Hope the guys here can help, they have so many times before.</p> <p>Cheers</p> http://stackoverflow.com/questions/1927627/how-to-add-click-event-to-swf-file 0 how to add "Click" event to SWF file Laith 2009-12-18T11:20:47Z 2009-12-18T11:29:56Z <p>hello i have SWF file. i want to send the user to another page when he clicks the SWF file 1- i tried to wrap the SWF file with tag but it did not works 2- i tried to add javascript events like "onclick" but it didnot works too so i think the best solution is to make another SWF file that takes two parameters "hyperlink" and "SWF URL" it will load my SWF and when the user click it it will open the "hyperlink" but i have no idea how to do this </p> <p>Is there any better solution ? if not do you have any idea how to do this in ADOBE FLASH ?</p> http://stackoverflow.com/questions/1922476/detect-the-size-of-swf-flex-as3 1 detect the size of swf. flex/as3 Phil 2009-12-17T15:24:15Z 2009-12-18T03:23:33Z <p>I'm creating a map that has points of interest. (POI) When a user mouses over the POI an info bubble pops onto the screen and it loads an swf. I currently have 3 problems. My 4th problem is that this is due Monday 21st! so any help would be greatly appreciated!</p> <ol> <li><p>I can't detect the size of the swf so that my infobubble will size itself to the size of the swf.</p></li> <li><p>When I mouse over my swf file, it disappears.</p></li> <li><p>I would love to have the my swf file pop up in a layer on its own instead of being on the stage of my main flex file...but i have no clue how to do this.</p></li> </ol> <p><code></p> <pre><code>package com.modestmaps { import flash.display.Graphics; import flash.display.Loader; import flash.display.Shape; import flash.display.Sprite; import flash.filters.BlurFilter; import flash.geom.Matrix; import flash.geom.Rectangle; import flash.net.URLRequest; import flash.text.TextField; public class InfoBubble extends Sprite { public var textField:TextField; public var background:Shape; public var shadow:Shape; public function InfoBubble(text:String) { //I name the instance of my POI marker on my map to the url link of my swf file. So whatever marker i click on the correct url will this.name = urlLink; this.mouseEnabled = true; this.mouseChildren = false; //this creates a shadow behind my infobubble shadow = new Shape(); shadow.filters = [ new BlurFilter(16, 16) ]; shadow.transform.matrix = new Matrix(1, 0, -0.5, 0.5, 0, 0); addChild(shadow); background = new Shape(); addChild(background); textField = new TextField(); textField.selectable = true; textField.multiline = true; textField.wordWrap = true; //textField.text = urlLink; textField.width = textField.textWidth+300; textField.height = textField.textHeight+288; //addChild(textField); var request:URLRequest = new URLRequest(urlLink); var loader:Loader = new Loader(); loader.load(request); addChild(loader); //marker clips are positioned with (0,0) at the given location //current measurements of swf file w432 h288 //if i could dynamically determine the size of the loaded swf file its position would be automatically calculated loader.y = -288 - 37; loader.x = -8; //marker clips are positioned with (0,0) at the given location textField.y = -textField.height - 35; textField.x = -10; //currently my rectangle's size is determined by the textField size. I don't even use the textfield. I want the rectangle to be drawn using the dimensions of the swf file instead. var rect:Rectangle = textField.getRect(this); // get your graph paper ready, here's a "speech bubble" background.graphics.beginFill(0x12345); shadow.graphics.beginFill(0x000000); for each (var g:Graphics in [ background.graphics, shadow.graphics ] ) { g.moveTo(rect.left, rect.top); g.lineTo(rect.right, rect.top); g.lineTo(rect.right, rect.bottom); g.lineTo(rect.left+15, rect.bottom); g.lineTo(rect.left+10, rect.bottom+15); g.lineTo(rect.left+5, rect.bottom); g.lineTo(rect.left, rect.bottom); g.lineTo(rect.left, rect.top); g.endFill(); } } } } </code></pre> <p></code></p> <p>I hope you more skilled coders can help me out. I'm new to flex and as3</p> <p>Edit: There is no javascript in this file. All of it is AS3. Edit2: This is the temporary site I am testing it on <a href="http://cjbutchershop.com/temp/adtypes/mapTest.swf" rel="nofollow">http://cjbutchershop.com/temp/adtypes/mapTest.swf</a></p> http://stackoverflow.com/questions/1925874/why-are-my-html-templates-disappearing-in-flex-builder-when-i-target-fp10 2 Why are my HTML templates disappearing in flex builder when I target fp10? dmarr 2009-12-18T02:13:57Z 2009-12-18T02:34:47Z <p>When I target flash player 10 in flex builder 3, the index.html template along with some other files (history.js, etc) are removed and no wrapper html page is built. </p> <p>Anyone else experiencing this? I have an ant build script as well, but I was trying to run the built in fb builder.</p> <p>Thanks, Dave</p> http://stackoverflow.com/questions/381434/javascript-form-submission-to-activate-spring-web-flow-transitions-with-jsf-integ 0 Javascript form submission to activate Spring Web Flow transitions with JSF integration Alexandre 2008-12-19T16:20:05Z 2009-12-17T22:58:37Z <p>Hello guys,</p> <p>I`m developing an application using Spring WebFlow 2, Facelets and JSF. One of my flows does have a page that must trigger a form submit at certain events. For each different action, a different view must be presented. So, I'm trying to activate the following javascript code to perform the submission:</p> <pre><code>function myFormSubmit( eventId ) { var formAction = document.myForm.action; document.myForm.action = formAction + '&amp;_eventId=' + eventId; document.myForm.submit(); } </code></pre> <p>Unfortunatelly, this doesn't triggers the requested transition in my flow. The page doesn't change. Does anyone knows how to deal with this?</p> <p>Thanks, Alexandre</p> http://stackoverflow.com/questions/1924427/passing-parameters-from-trinidad-controls-to-the-flow 0 Passing parameters from trinidad controls to the flow ndle 2009-12-17T20:39:51Z 2009-12-17T22:07:03Z <p>Hi,</p> <p>I am new to JSF, Facelets, SWF and Trinidad technologies, and I having a problem submitting parameters from the <code>&lt;tr:commandButton&gt;</code> on a xhtml page to the flow (using the <code>&lt;f:param&gt;</code>). The interesting thing is when I use <code>&lt;h:commanButton&gt;</code> instead of the <code>&lt;tr:commandButton&gt;</code>, everything works fine. The reason I need to use trinidad button is that I have to put it in <code>&lt;tr:forms&gt;</code> to support PPR.</p> <p>I really appreciate your helps. </p> http://stackoverflow.com/questions/1922625/extract-embedded-pdf-fonts-to-an-external-ttf-file-using-some-utility-or-script 0 Extract embedded PDF fonts to an external ttf file using some utility or script Max 2009-12-17T15:42:57Z 2009-12-17T15:42:57Z <p>Is it possible to extract fonts that are embedded in a PDF file to an external ttf file using some utility or script?</p> <ol> <li><p>If the fonts that are embedded (or not embedded) to a PDF file are present in system. Using pdf2swf and swfextract tools from swftools I am able to determine names of the fonts used in a PDF file. Then I can compile respective system font(s) at run-time and then load to my AIR application.</p></li> <li><p>BUT if the fonts used in the PDF are absent in the system there are two possibilities:</p> <p>2.1. If they are absent in the PDF files as well (not embedded), we can only use similar system font basing on the font name.</p> <p>2.2. If they are embedded in the PDF file, then I want to know is it possible at all to extract them to external ttf file so that I can compile each of them to separate swf files at run-time?</p></li> </ol> http://stackoverflow.com/questions/1915235/how-to-use-flashpaper-in-asp-net 0 How to use flashpaper in asp.net Ajit 2009-12-16T15:09:03Z 2009-12-17T13:11:57Z <p>hi friends,</p> <p>i want to display swf document via Adobe Flash Paper software in our asp.net web page. can any one describe how i embed flash paper API in .net?</p> http://stackoverflow.com/questions/1857026/does-flashplayer-support-screenvideo-codec 0 Does FlashPlayer support ScreenVideo codec? alexm 2009-12-06T23:34:08Z 2009-12-16T21:39:37Z <p>I have swf file with embedded movie encoded with ScreenVideo codec, swf spec says FP supports it, but I can't see any frame.</p> http://stackoverflow.com/questions/1910330/flash-and-seo-what-am-i-missing 0 Flash and SEO: what am I missing? Khuffie 2009-12-15T20:51:38Z 2009-12-16T09:48:13Z <p>We're trying to get our company website to be better indexed by Google and other search engines, and at this point I'm not quite sure what's missing. All of our text content is loaded in by our flash application via XML files.</p> <p>In summer, we wrote a PHP script that reads out all the XML files, and generates google friendly index.html files in subdirectories. The files include navigatable links to other sections in the site, and HTML content of the XML files.</p> <p>For example, for our 'work' section in the flash site, there will be an index.html file generated in the following directory: site.com/work/index.html</p> <p>This file contains links to other sections of the site (site.com/overview, site.com/contact) which all have appropriate index.html files. So people who hit those links can see the site properly, that page actually loads in the site swf from the root directory and goes to the appropriate section of the site automatically. Ie, if you hit site.com/work/ in your browser, you will see the Flash application and be directed to the 'work' section within it. However, if you browse the site without javascript/flash enabled, you can actually see a series of html links and some paragraphs/text content.</p> <p>This was all done before Google's announcement in June of being able to index external content loaded into SWFs (<a href="http://googlewebmastercentral.blogspot.com/2009/06/flash-indexing-with-external-resource.html" rel="nofollow">http://googlewebmastercentral.blogspot.com/2009/06/flash-indexing-with-external-resource.html</a>).</p> <p>Unfortunately, google seems to only have indexed the main page at site.com (even though they say they are capable of indexing flash sites as a user sees them, as above, but I don't even see that working.)</p> <p>A couple days ago, I figured a few things may have been missing, so I did the following: - submitted a sitemap.xml file to google. It sees 49 URLs, but has only indexed 1. How long would google take to index those files? - our main site.com/index.html only had the swf embedded, it didn't have any HTML links to the subsections, so I added those in swfobjects no flash content area - I gathered google wasn't seeing the generated HTML files and instead seeing the embedded SWF, so I disallowed the swf file and the swfobject.js file in the robots.txt file</p> <p>Do the last 3 changes make sense? If so, how long after implementing them should I expect to see some results? Any help would be appreciated!</p> http://stackoverflow.com/questions/1648845/how-do-i-pass-arraycollection-to-advancedatagrid-using-hierarchicaldata 0 How do i pass arraycollection to Advancedatagrid using HierarchicalData ? R.Vijayakumar 2009-10-30T09:39:01Z 2009-12-16T05:00:02Z <p>Problem with passing arraycollection to Advance datagrid. My Arraycollection structure like ` </p> <p>  </p> <pre><code>private var groupList:ArrayCollection = new ArrayCollection([ {Country:'India', children:[ {Country:'Series1', children:[                                {Matches:'India Test series 1',isEnable:false,id:1,isSelected:true},                                {Matches:'India Test series 2',isEnable:false,id:2,isSelected:true},                                {Matches:'India Test series 3',isEnable:false,id:3,isSelected:true}]},              {Country:'Series2', children:[                                {Matches:'Australia Test series 1',isEnable:false,id:25,isSelected:true},                                {Matches:'Australia Test series 2',isEnable:false,id:26,isSelected:true},                                {Matches:'Australia Test series 3',isEnable:false,id:27,isSelected:true}]} ]}, {Country:'Austrila', children:[ {Country:'Series1', children:[                                {Matches:'Australia Test series 1',isEnable:false,id:46,isSelected:true},                                {Matches:'Australia Test series 2',isEnable:false,id:47,isSelected:true},                                {Matches:'Australia Test series 3',isEnable:false,id:48,isSelected:true}]}, {Country:'Series2', children:[                                {Matches:'Australia Test series 1',isEnable:false,id:49,isSelected:true},                                {Matches:'Australia Test series 2',isEnable:false,id:50,isSelected:true},                                {Matches:'Australia Test series 3',isEnable:false,id:51,isSelected:true}]}, {Country:'Series3', children:[                                {Matches:'Australia Test series 1',isEnable:false,id:52,isSelected:true},                                {Matches:'Australia Test series 2',isEnable:false,id:53,isSelected:true},                                {Matches:'Australia Test series 3',isEnable:false,id:54,isSelected:true}]} ]} </code></pre> <p>passing AD in dataProvider="{new HierarchicalData(groupList)}" It's working fine. it's show two menu of tree and childrens based on country .But i tried dynamic xml convert to Arraycollection by below code </p> <pre><code>private function convertXmlToArrayCollection( file:String ):ArrayCollection { var xml:XMLDocument = new XMLDocument( file ); //var decoder:SimpleXMLDecoder = new SimpleXMLDecoder(); var decoder1:SimpleXMLDecoder = new SimpleXMLDecoder(true); var data1:Object = decoder1.decodeXML( xml ); var array1:Array = ArrayUtil.toArray(data1); return new ArrayCollection( array1 ); } </code></pre> <p>my xml structure is</p> <pre><code> &lt;Country Country="India "&gt; &lt;Country Country="Series "&gt; &lt;Matches Matches="BIndependiente-Colon" id="701536" isEnable="false" isSelected="true" startDate="2009-10-29 01:30:00" EndDate="2009-10-29 01:30:00"/&gt; &lt;Matches Matches="Boca Juniors-Chacarita Juniors" id="701633" isEnable="false" isSelected="true" startDate="2009-10-29 19:00:00" EndDate=""/&gt; &lt;/Country&gt; &lt;/Country&gt; &lt;Country Country="Australia"&gt; &lt;Country Country="series"&gt; &lt;Matches Matches="BIndependiente-Colon" id="701536" isEnable="false" isSelected="true" startDate="2009-10-29 01:30:00" EndDate="2009-10-29 01:30:00"/&gt; &lt;Matches Matches="Boca Juniors-Chacarita Juniors" id="701633" isEnable="false" isSelected="true" startDate="2009-10-29 19:00:00" EndDate=""/&gt; &lt;/Country&gt; &lt;/Country&gt; </code></pre> <p>So if i tried to convert this format of xml code to arryacollection , it converted the array collection but when will i pass to Advance data grid it not show any result . What did i wrong ? </p> <pre><code>groupList1= convertXmlToArrayCollection(string1); Alert.show(groupList1[0].Country[0].Matches[0].id.toString());// output is =701536 </code></pre> <p>Where did i mistake it ? Plz kindly any one refer me , What will i changed ?</p> http://stackoverflow.com/questions/1908303/how-can-i-play-a-swf-file-on-my-wpf-application 0 How can I play a .swf file on my WPF application? Papuccino1 2009-12-15T15:43:35Z 2009-12-15T23:23:01Z <p>I want to display a simple .SWF file on my WPF Form. It's a simple animation on loop.</p> <p>Is there a control "box" type element I can place on my form and just load the .swf file to it so it can play?</p> <p>Thank you for the help. :D</p> http://stackoverflow.com/questions/1444562/javascript-onclick-event-over-flash-object 0 javascript onclick event over flash object Pedro 2009-09-18T13:30:26Z 2009-12-15T16:35:31Z <p>Hi Guys,</p> <p>I have one embed flash movie inside one div, I put one javascript onclick event handler in the main div, but isn't catching the click, what is wrong?</p> <p>Code:</p> <pre><code> &lt;div id="top-box-player" onclick="alert('Hi Bananas!');"&gt; &lt;object width="400" height="300"&gt; &lt;param name="movie" value="general.swf"&gt; &lt;embed src="./swf/general.swf" width="400" height="300"&gt; &lt;/embed&gt; &lt;/object&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1697246/p2qembedflash-using-remotely-hosted-flash-files 0 p2q_EmbedFlash using remotely hosted Flash files strangerpixel 2009-11-08T17:27:06Z 2009-12-15T15:49:42Z <p>I've embedded a virtual tour on <a href="http://www.castlegibson.com/locations/house/index.html" rel="nofollow">one of my client sites</a>.</p> <p>The site is hosted by Slicehost, and as you can see the load times for the Flash movies are very slow, so my idea was to serve the swf files from Amazon S3 Europe. </p> <p>To test it, I have all swfs uploaded to the same directory / bucket on Amazon, while the <code>index.html</code> and <code>p2q_embed_object.js</code> files reside on my local machine. The js file is changed to refer to the Amazon-hosted swfs. The first swf loads fine, but the others don't. What am I doing wrong? Is there a better way to do this that would allow me to serve my Flash assets from elsewhere?</p> http://stackoverflow.com/questions/1888954/detecting-lost-window-focus-in-google-chrome 0 Detecting lost window focus in Google Chrome Daniel Crabtree 2009-12-11T15:49:08Z 2009-12-11T15:49:08Z <p>I need to know via javascript whether a page has focus or not.</p> <p>When the user switches to another tab, minimizes the browser, or clicks outside the browser, the page shouldn't have focus.</p> <p>When the user returns to the window, by opening it, returning to the tab, clicking on the page, the page needs to have focus.</p> <p>The problem is the method must correctly report whether the page has focus or not when there is a flash swf on the page that may or may not have focus and I don't have control of the swf content.</p> <p>The window's focus needs to be independent of the flash swf's focus. So when the swf has focus, the user leaves the browser whilst the flash swf has focus, or when the user returns directly to the swf, the window's focus must be reported correctly.</p> <p>I have methods of doing this in FireFox 3.0, 3.5, IE 6, 7, 8, Safari 4.0.3, 4.0.4, Opera 9.0+.</p> <p>The standard focus/blur window events do not work properly in Google Chrome. When the flash swf gains focus, the window loses it (the window blur event is triggered). This is not desired.</p> <p>I need a method that will work in Google Chrome 3 and 4.</p> <p>Ideally, I would also like a method that works in FireFox 2 and Safari &lt; 4.0.3. In these browsers, focus/blur do not work either as if the flash swf has focus and you leave the window, the blur window event is not triggered at all.</p> http://stackoverflow.com/questions/23439/flvplayback-component-memory-issues 1 FLVPlayback component memory issues vanhornRF 2008-08-22T20:44:55Z 2009-12-10T19:45:14Z <p>My website is entirely flash based, it moves around a 3D model which was given to me as chunks of video that I've converted to FLV files. I'm using the FLVPlayback component to control the video inside of my program. While running memory checks using System.totalMemory I've noticed that whenever a video is loaded, it will eat up a chunk of memory and even when I remove all the event listeners from it(they are all weakly referenced), remove the component from its parent, stop the video and null the component instance, it still will not give that memory back.</p> <p>This has been bothering me since I started working on this project because of the huge amount of video a user can potentially instantiate and load. Currently every video is loaded into a new FLVPlayback instance whenever it is required, but I have read that perhaps the best way to go about this problem is to simply have a global FLVPlayback instance and just reload the new video into the old instance, that way there would only be one FLVPlayback component in the application's memory.</p> <p>Has anyone else run into this problem as well? Have you found a better solution than using a global instance that you just re-use for every new video? </p> http://stackoverflow.com/questions/1685959/as3-swfmill-how-to-access-assets-in-swfmill-generated-library-swf 0 AS3 & Swfmill: How to access assets in swfmill-generated library swf Cambiata 2009-11-06T07:21:52Z 2009-12-10T04:18:27Z <p>Hi!</p> <p>I'm creating library swfs in as3 this way, works like a charm (except for the slow mxmlc compiler):</p> <pre><code>package { import flash.display.Sprite; public class Library extends Sprite { [Embed(source="assets/test.png")] public var TestBitmap:Class; } } </code></pre> <p>I would like to create the same kind of libary using swfmill. I've tried the following swmfill simple xml:</p> <pre><code>&lt;movie version="10"&gt; </code></pre> <p> </p> <p>Examining the libraries in FlashDeveloper's explorer reveals that the as3 library exports BOTH classes and symbols, but the swfmill library exports ONLY symbols. My host application is accessing the as3 library assets this way:</p> <pre><code>private var loader:Loader = new Loader(); private function onCreationComplete():void { this.loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete); } private function onComplete(e:Event):void { var resourceClass:Class = loader.contentLoaderInfo.applicationDomain.getDefinition("Library") as Class; var resources:Object=new resourceClass(); var testBitmapClass:Class = resources['TestBitmap'] as Class; var testBitmap:Bitmap = new testPngClass(); this.addChild(testBitmap); } </code></pre> <p>But with no exported swfmill classes, there's obviously nothing to instatiate...</p> <p>Is swfmill expected to export classes this way? If not, is there a way of accessing the symbols without instantiating them as classes?</p> <p>Jonas</p> http://stackoverflow.com/questions/1868937/why-are-there-dedicated-activescript-editors-like-flashdevelop-if-you-cannot-ma 0 why are there dedicated ActiveScript editors, like FlashDevelop, if you cannot make SWF with them? EndangeringSpecies 2009-12-08T18:31:25Z 2009-12-09T23:22:35Z <p>suppose I want to make a small SWF app, basically a couple of buttons, textboxes and event handlers. Something like this in C# or Java would be a single easily readable source code file that can be compiled with a freely available compiler and run. Now, I may be a clueless newbie here, but so far, from what I can see, the only way to make a file that can be compiled to SWF is to make a FLA file, and that requires the official IDE.</p> <p>Well, so if there is no way of going around the FLA file, why do people bother with the special editors for ActionScript? What am I missing here? Or are they actually able to somehow "debug" the app without seeing it in WYSIWYG format and without generating an SWF file? If so, do they eventually generate an SWF file on a friend's machine that has the IDE or what do they do for the final product?</p> http://stackoverflow.com/questions/1877041/swf-reading-rendering-outside-of-flash-player 1 SWF reading/rendering (outside of Flash Player)? mhughes 2009-12-09T21:32:50Z 2009-12-09T21:32:50Z <p>I would like to use SWF files as source video data within a tool chain I am developing. The problem is, I can't seem to find a consistent way to convert them, and I'm concerned about the loss of quality that the conversion will introduce.</p> <p>I actually even have Flash CS3, but the export process to anything other than swf is flaky at best. It does different things depending on what video format you export to, and doesn't seem to be consistent across Flash (fla) files.</p> <p>The options I have come up with are:</p> <p>1) integrate someone else's source code to parse/play back the swf files, and capture the output directly that way.</p> <p>2) create some kind of frankenstein work flow using Air or Flex to play the swf and export each frame to an image format, and then read those into the application where I want the data.</p> <p>Integrating someone else's code seems pretty gross to me. The code available that I can find is at least 2 Flash versions old, so I'd have to do a fair amount of work for this. And when Adobe releases the next version of Flash, I'll have to add support for the new features in myself anyways. Were I to write a player myself from scratch, using the SWF specifications Adobe has published (assuming everything is actually documented enough), I run into the same issue: continued maintenance on a regular basis. And for most likely undocumented (or slowly documented) features.</p> <p>Creating a frankenstein work flow using Air/Flex seems like a smarter approach, but will be really cumbersome and most likely slow.</p> <p>Does anyone have any other suggestions? Have I missed something? Has Adobe released source code for their player somewhere, or better yet, a (C++) library that I could use?</p> http://stackoverflow.com/questions/1867638/load-a-flash-swf-in-debug-mode 0 Load a flash swf in debug mode Kristian Schmidt 2009-12-08T15:18:02Z 2009-12-09T07:09:56Z <p>Hello</p> <p>I'm trying to debug a problem in a client side flash application (the swf) which communicates with a server side .asc. </p> <p>How do I get the client side flash to load in debug mode? I can get it into debug mode after it has loaded but I need to debug the loading of the flash. The application is a video conference app and it has a problem reconnecting to the server if a user navigates away from the page with the flash and back again. So I would like to be able to see why it won't connect. I've done some logging on the server which seems to work as it should.</p> <p>I'm totally new to flash, but I've been reading and googling for some hours today, so any help would be appreciated.</p> http://stackoverflow.com/questions/1869927/asp-net-mvc-swf-files-not-loading 0 ASP.NET MVC - SWF files not loading Scott 2009-12-08T21:22:12Z 2009-12-08T22:10:00Z <p>In my asp.net mvc site, I'm loading flash files using swfobject. These files work fine, locally, using Visual Studio 2008 server (F5). But, when deployed to the Test server, they don't load at all. My routing table looks like this:</p> <pre><code>routes.MapRoute( "Default", "{controller}.aspx/{action}/{id}/{title}", new {controller = "Home", action = "Index",id = "",title=""}); routes.MapRoute( "Root", "", new {controller = "Home",action = "Index",id = "",title = ""}); </code></pre> <p>And I'm loading the swfs like:</p> <pre><code>&lt;div id="home-container"&gt; &lt;div id="flash-content" style="outline:none;position:absolute; top:0px"&gt; &lt;h1&gt;GET THE LATEST FLASH PLAYER TO VIEW THIS SITE.&lt;/h1&gt; &lt;a href="http://www.adobe.com/go/getflashplayer"&gt; get it now &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; // Embed the SWF var flashvars = {}; var attributes = {id: "whole-grains-home", name: "whole-grains-home", style:"outline:none;"}; var params = { allowscriptaccess: "always", menu: "false", wmode: "transparent", swliveconnect: "true" }; var flashFile = '&lt;%= Url.Content("~/files/flash/Homepage/R9IN03_PostH&amp;W_Homepage.swf") %&gt;'; swfobject.embedSWF(flashFile, "flash-content", "990", "538", "9.0.0", "expressInstall.swf", flashvars, params, attributes); &lt;/script&gt; </code></pre> <p>I'm suspecting that root route is to blame, but I just can't figure out why this works locally, but not on the server.</p> <p>Anyone have any ideas?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1855197/xml-swf-help-needed 0 XML/SWF help needed Mind Tricks 2009-12-06T12:01:36Z 2009-12-08T12:45:27Z <p>I'ld like to make a little swf application to use it on my XP desktop place.</p> <p>And I'ld like to run movies directly from this swf. So, I need to know parameters like movie name and subtitle name to parse it to the button link.</p> <p>And I thought that if I create an XML file to contain all data (1db for .avi,.mpeg etc and other from .srt,.sub files) I can parse the selected data to flash and create that button link - Use: to see all movies on my desktop and control swf with my remote control.</p> <p>Does anyone knows how can I put all the movies and subtitles addresses in an XML file ? Note: My database is very big, no chance to put it all manualy.. so I need a button like.. refresh database to recreate the XML file every time a new movie is added.</p> http://stackoverflow.com/questions/574996/can-any-flash-compiler-put-scripts-on-multiple-frames 1 Can any Flash compiler put scripts on multiple frames? Jeremy Rudd 2009-02-22T14:30:50Z 2009-12-07T21:08:34Z <p>Can any Flash compiler put <strong>specific scripts</strong> on specific <strong>frames</strong> of the Flash movie SWF?</p> <p>Like you can do from within the <strong>Flash IDE</strong>, just place a script on the required frame using the <strong>Timeline</strong> panel, and the script gets compiled to that frame of the Flash movie SWF.</p> <p>Eg. script on frame 1 :</p> <pre><code>trace("Reached frame 1"); </code></pre> <p>Eg. script on frame 2 :</p> <pre><code>trace("Reached frame 2"); </code></pre> <p><strong>SWF Compilers:</strong> (Hopefuls)</p> <ul> <li>AS3 Compiler - <a href="http://haxe.org/" rel="nofollow">haXe</a></li> <li>AS2 Compiler - <a href="http://www.mtasc.org/" rel="nofollow">MTASC</a></li> <li>Adobe Flex Compiler - <a href="http://livedocs.adobe.com/flex/15/flex_docs_en/00000860.htm" rel="nofollow">Mxmlc</a></li> <li>C# to SWF Compiler - <a href="http://blog.debreuil.com/archive/2004/08/18/376.aspx" rel="nofollow">Debreuil</a></li> </ul> http://stackoverflow.com/questions/1858795/checking-if-browser-is-using-cached-swc-swf 0 Checking if Browser is using Cached SWC/SWF? viatropos 2009-12-07T09:17:50Z 2009-12-07T09:35:41Z <p>How do you know if the browser is actually using the cached swf RSL/library for Flex projects? I would like to be able to do different things from the preloader based on whether or not the user has never downloaded the library vs. they have it already cached by their browser. Is this possible?</p> http://stackoverflow.com/questions/1857234/optimizing-flex-swc-swf-size 1 Optimizing Flex SWC/SWF Size viatropos 2009-12-07T01:09:08Z 2009-12-07T01:09:08Z <p>Hey,</p> <p>I am trying to optimize a few library projects I have for deployment. I have read Optimizing RSL SWF Files and have run this command on my decompressed library swc file folder (library.swc plus catalog.xml):</p> <p>optimizer -keep-as3-metadata="Bindable,Managed,ChangeEvent,NonCommittingChangeEvent,Trans ient" -input /path/to/swc_folder/library.swf -output /path/to/swc_folder/output.swf</p> <p>It cut the swc file down in size by more than half, which is great! Still haven't used it yet, that's the next mission.</p> <p>But my question is, how do I manage the assets/resource-bundles in the decompressed folder, many of which I don't want. The unix command "ls -Rla" shows all the files in the decompressed swc:</p> <p>./swc_folder:</p> <p>catalog.xml library.swf locale mx spark</p> <p>./swc_folder/locale: en_US</p> <p>./swc_folder/locale/en_US: base.properties collections.properties components.properties controls.properties core.properties effects.properties layout.properties logging.properties messaging.properties rpc.properties skins.properties sparkEffects.properties styles.properties textLayout.properties</p> <p>./swc_folder/mx: controls</p> <p>./swc_folder/mx/controls: Button.png HScrollBar.png Image.png List.png SWFLoader.png TextInput.png Tree.png VScrollBar.png</p> <p>./swc_folder/spark: components</p> <p>./swc_folder/spark/components: Button.png DataGroup.png Group.png HGroup.png HScrollBar.png Label.png List.png Panel.png RichEditableText.png Scroller.png SkinnableContainer.png SkinnableDataContainer.png TextArea.png ToggleButton.png VScrollBar.png</p> <p>First, I am not using any of those pngs in my project, so how do I get rid of them? And second, for the resource bundles, if I have 5 library projects all using the same bundles (plus a few of their own), how do I extract them out of this swf/swc and make them all reference the same one, so I can cut down on size/duplication? Can't seem to find this kind of detail anywhere.</p> http://stackoverflow.com/questions/1813355/haxe-simple-flash-preloader 0 HaXe simple flash preloader Mk12 2009-11-28T18:43:29Z 2009-11-30T21:39:30Z <p>Is there a simple way to have a preloader that just traces the percentage and then goes on to the main game? Just as simple as possible, so that I can add in the progress bar/logo animation after. I tried the thing at mindless-labs, but its really complicated, it seems kind of hackerish, I don't really understand what it's doing and it uses mochi ads which I don't want. I was going to use SamHaXe, but it won't compile on Snow Leopard. And I'd prefer one swf.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1821386/link-a-blog-into-scrolling-text-of-swf-file 0 Link a Blog into scrolling text of SWF file Jeron 2009-11-30T18:03:46Z 2009-11-30T18:22:30Z <p>I'm working on an entirely flash-based site for a client who has already been using Blogspot for his News/Homepage updates. He wants to continue updating through Blogspot, but wants the blog to automatically fill in the text box on the flash site Homepage. I'm not sure if this is possible, or how I would go about doing it.</p> <p>Here is the blogspot page: <br> <a href="http://atmarsamps.blogspot.com/" rel="nofollow">http://atmarsamps.blogspot.com/</a></p> <p>Here is an example of what the scrolling SWF text box will be like:<br> <a href="http://eloquentcreative.com/" rel="nofollow">http://eloquentcreative.com/</a></p> <p>Is this possible? Any help would be absolutely amazing!</p>