active questions tagged flash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T16:34:07Z http://stackoverflow.com/feeds/tag/flash http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1824555/how-many-pressed-keys-flash-can-detect-using-as3 1 How many pressed keys Flash can detect? using as3 Ricardo 2009-12-01T07:29:39Z 2009-12-01T15:46:28Z <p>I'm developing a little game. I use the following code to detect the keys pressed by the player:</p> <pre><code>private function onKeyDown(event:KeyboardEvent):void { //moviment keys if (event.keyCode == 37 || event.keyCode == 65) { this.leftKeyPressed = true; } if (event.keyCode == 39 || event.keyCode == 68) { this.rightKeyPressed = true; } if (event.keyCode == 38 || event.keyCode == 87) { this.upKeyPressed = true; } if (event.keyCode == 40 || event.keyCode == 83) { this.downKeyPressed = true; } if (event.keyCode == this.shootKey) { this.shootKeyPressed = true; } } </code></pre> <p>The onKeyUp event:</p> <pre><code>private function onKeyUp(event:KeyboardEvent):void { if (event.keyCode == 37 || event.keyCode == 65) { this.leftKeyPressed = false; } if (event.keyCode == 39 || event.keyCode == 68) { this.rightKeyPressed = false; } if (event.keyCode == 38 || event.keyCode == 87) { this.upKeyPressed = false; } if (event.keyCode == 40 || event.keyCode == 83) { this.downKeyPressed = false; } if (event.keyCode == this.shootKey) { this.shootKeyPressed = false; } if (event.keyCode == changeColorKey) { trace('color key released'); trace(getTimer()); this.changeColorKeyPressed = true; } } </code></pre> <p>Basically the shootKey will be hold down by the player almost all the time. And the changeColorKey will be pressed very often but not hold down. While testing I noted that holding the shootKey and the right arrow down, the onKeyUp events for the changeColorKey don't get fired. Holding the up or down arrow key instead of the right arrow has the same effect. If I hold the left arrow key the events get fired. Why does it occour? Is there something wrong with my code?</p> http://stackoverflow.com/questions/1827006/embed-flash-transparent-flv 0 Embed Flash Transparent FLV Mindblip 2009-12-01T15:41:10Z 2009-12-01T15:41:10Z <p>Hi,</p> <p>I am trying to embed a flash movie (.flv) into a webpage with a transparent background.</p> <p>Requirements: - Flv runs in transparent mode - I must be able to view html contents below. - Movie does not auto play - Movie is contained in a div and positionend absolutely using CSS - No video controls or overlays, you shouldn't know it's an flv - On load Movie is hidden - Using jQuery, I click an image link to show and play the video, clicking it again stops and hides the video - vice versa</p> <p>I have tried using Longtail Video Player with swfobject.js and javascript controls but no joy. Video is not transparent and controls with a click to play still feature.</p> <p>Am I overcomplicating what appears to be quite a simple task.</p> <p>I happy to explore any implementation.</p> <p>Adobe flash embed parameters have been set correctly and wmode = transparent.</p> <p>Any help would be greatly appreciated.</p> <p>Cheers Paul</p> http://stackoverflow.com/questions/1658828/iframe-include-php-file-in-flash-fla-file 0 iframe/include php file in flash (FLA file) Manny Calavera 2009-11-01T23:53:30Z 2009-12-01T15:22:17Z <p>Hello. How can I load a PHP file into a flash movie ? I need an iframe in Flash or something...</p> <p>Can anybody post some examples ? </p> <p>Thank you.</p> http://stackoverflow.com/questions/1820902/flash-8-datagrid-sort-arrow 0 flash 8 datagrid sort arrow eventdave 2009-11-30T16:36:47Z 2009-12-01T15:20:31Z <p>I am using an array to poulate a flash 8 datagrid, simple enough. I am also pre sorting the array by one of the fields, also simple enough.</p> <p>I would like the sort arrow to be present when the grid is first populated, but it isn't!!</p> <p>The user must click a header cell for the arrow to become visible. Is there any way to override this behaviour.</p> <p>Thanks</p> http://stackoverflow.com/questions/1388531/space-bar-validation-in-flash 0 space bar validation in flash raj 2009-09-07T09:54:47Z 2009-12-01T15:10:32Z <p>Hi I got a form for the first name and last name in my flash website For the two fields I defined them as not null but when you just click the spacebar and click on submit its taking it Can some one please help me how do I write the validation for not taking space bar as an Input and and the field should not be empty (Note: I am using actionscript 2.0) </p> <pre><code>_validateParams[pCnt++] = { type: "notNull", input: win.firstNameInput , isSendData:true, dataName:"firstName"}; _validateParams[pCnt++] = { type: "notNull", input: win.lastNameInput, isSendData:true, dataName:"lastName"}; </code></pre> http://stackoverflow.com/questions/1813821/surefire-way-to-get-html-ontop-of-flash-content 0 Surefire way to get html ontop of flash content? Jeff 2009-11-28T21:24:19Z 2009-12-01T13:21:29Z <p>Hello all,</p> <p>I've been struggling to get some absolutely positioned overlays to show above an flv movie(using flowplayer) in the firefox browser(works in safari)</p> <p>I have the overlays div placed underneath the video html "wrapper" and have tried using a high z-index on the overlays but to no avail. Is there anything i may be doing wrong? Or another trick i could try? </p> <p>edit: The video is using wmmode > transparent</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1626239/fancybox-inline-flash-issue-with-firefox 0 Fancybox inline flash issue with Firefox Lee Englestone 2009-10-26T17:46:52Z 2009-12-01T13:11:26Z <p>I have a number of <a href="http://fancybox.net" rel="nofollow">fancyboxes</a> on a page (one in each repeateritem) which show inline flash when a button in the appropriate repeater is pressed.</p> <p>In Internet Explorer the fancyboxes open correctly and show the inline flash.</p> <p>However in Firefox when opening they open the inline flash in a new tab?? Anyone experienced this issue?</p> <p>-- Lee</p> http://stackoverflow.com/questions/1802585/is-there-a-way-to-embed-flv-files-in-java-forms 1 is there a way to embed flv files in java forms? fealin 2009-11-26T09:30:35Z 2009-12-01T12:43:21Z <p>I want to play some flash videos in my desktop application are there any tools (library,jar file, class... etc) to embed flvs in any java forms?</p> http://stackoverflow.com/questions/1825792/jquery-hide-a-div-that-contains-flash-without-resetting-it 0 jquery hide a div that contains flash without resetting it Hellnar 2009-12-01T12:11:00Z 2009-12-01T12:38:45Z <p>Greetings, I have written a modal using jquery UI and it appears at the front of a flash movie thus the html inside the modal becomes corrupt, I tried to hide the movie right before modal gets triggered and reappears after closing the modal, works well but each .hide() and .show() the flash movie gets resetted while all I want is to hide (without removing the movie) and displaying it once it is triggered to .show that modal div.</p> http://stackoverflow.com/questions/1276977/catch-f11-pressed-when-the-flash-app-is-not-in-focus 0 Catch F11 pressed when the flash app is not in focus Sohilr 2009-08-14T09:46:58Z 2009-12-01T12:00:07Z <p>hi i have a website which has a video playing.</p> <p>what i want is when my browser going into a full screen mode i want to only show my video.</p> <p>when i press F11 by click on the address bar / click on the browser window and press F11 my browser goes into the full screenmode.But i dont understand that F11 is played.</p> <p>Is there a event from my browser to Html code that i can use to understand that my browser has gone into fullscreen mode ?</p> <p>Thanks</p> <p>Sohil</p> http://stackoverflow.com/questions/1701543/clipboard-access-using-javascript-sans-flash 1 Clipboard access using Javascript - sans Flash? Chris Ballance 2009-11-09T14:57:38Z 2009-12-01T11:52:48Z <p>Is there a reliable way to access the client machine's clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use Flash?</p> <p>My primary target is IE8, but would like to support FF and Chrome also.</p> <p>I have seen the technique to do this using Flash, but am looking for a pure js route:<br /> <a href="http://stackoverflow.com/questions/400212/how-to-copy-to-clipboard-in-javascript">Clipboard access using Flash</a></p> http://stackoverflow.com/questions/1638928/flash-media-server-how-to-use-allowedhtmldomains-txt-on-2nd-app 0 Flash Media Server, how to use allowedHTMLdomains.txt on 2nd app jeph perro 2009-10-28T17:51:14Z 2009-12-01T11:47:10Z <p>Hi,</p> <p>I am configuring our Adobe Flash Media Server 3.5 and need some help.</p> <p>I have carefully followed the documentation on how to duplicate the vod service: <a href="http://help.adobe.com/en%5FUS/FlashMediaServer/3.5%5FDeving/WS5b3ccc516d4fbf351e63e3d11a0773cfae-7ff3.html" rel="nofollow">http://help.adobe.com/en%5FUS/FlashMediaServer/3.5%5FDeving/WS5b3ccc516d4fbf351e63e3d11a0773cfae-7ff3.html</a></p> <p>I successfully created multiple applications: vod2, vod3, vod4.</p> <p>Now I would like to use allowedHTMLdomains.txt and allowedSWFdomains.txt to restrict which domains can play video.</p> <p>I have changed the 2 files:</p> <p>allowedHTMLdomains.txt contains only this:</p> <pre><code>purple.mydomain.com </code></pre> <p>allowedSWFdomains.txt contains only this:</p> <pre><code>purple.mydomain.com </code></pre> <p>Then restarted Adobe Flash Media Server.</p> <p>Next I created a web page on a totally different server, banana.myotherdomain.org and used this embedded code to place a video on the page:</p> <pre><code>&lt;embed height="377" width="640" allowscriptaccess="always" allowfullscreen="true" src="http://purple.mydomain.com/swfs/jwplayer.swf" flashvars="&amp;streamer=rtmp:/vod2&amp;file=testfile.flv" /&gt; &lt;/embed&gt; </code></pre> <p>But it doesn't restrict anything.</p> <p>I can still stream video from domains which are not specified in the allowed files.</p> <p>What am I missing here?</p> <p>Thanks,</p> <p>Jeff</p> http://stackoverflow.com/questions/1825278/flash-image-rotator-does-it-cache-xml 0 Flash image rotator - does it cache xml? ile 2009-12-01T10:22:04Z 2009-12-01T10:33:41Z <p>I'm planning to use flash image rotator based on xml where are defined paths from all images that will be rotated. What I wanted to do is to use this rotator for random images rotating. Each time page is refreshed new xml file is created (existing one is replaced with new one). Well, I was thinking and came to this: - user A visits page, a xml file is created with paths to some random 10 images, images are starting to rotate - while user A is watching slideshow, user B comes to page and then existing xml is being replaced with new one. Will this effect user's A slideshow?</p> <p>To be more concrete: Does flash file first reads whole xml file, stores it in it's memory and reads from memory or it reads first line of xml and executes it, then second line and executes it and so on...</p> http://stackoverflow.com/questions/1824562/how-do-i-get-colors-to-work-in-sifr-3-r436 0 How do I get colors to work in sIFR 3 r436? SoaperGEM 2009-12-01T07:31:13Z 2009-12-01T09:05:53Z <p>I've got a <a href="http://gordon-myers.com/sifrtest/index.html" rel="nofollow">demo page up here</a>; you can view source to see what I'm trying to do.</p> <p>As you can see, everything about it seems to be working except for colors. I'm trying to set the color to blue (#0000ff), but it stays as black. I created a custom SWF file for my font, embedding four different variations of a single font in order to accommodate for different styles per <a href="http://discuss.joyent.com/viewtopic.php?id=24567#p193712" rel="nofollow">these instructions</a> (because this particular font family stores regular, bold, italic, and bold italic as four disjoint font names).</p> <p>For posterity I'll paste some of the source code from that demo page I linked to here:</p> <pre><code>&lt;style type="text/css"&gt; h1.sifr { color: #0000ff; font-family: 'Myriad Pro'; font-size: 1.75em; margin-bottom: 0; } &lt;/style&gt; &lt;script type="text/javascript"&gt; var myriad_pro = {src: 'myriad_pro.swf'}; sIFR.activate(myriad_pro); sIFR.replace(myriad_pro, { selector: 'h1.sifr', css: { '.sIFR-root': {'color': '#0000ff', 'font-family' : 'Myriad Pro'}, 'em': {'color': '#0000ff', 'font-family' : 'Myriad Pro Italic' , 'font-style' : 'plain'}, 'strong': {'color': '#0000ff', 'font-family' : 'Myriad Pro Bold' , 'font-weight' : 'normal'}, 'em strong, strong em': {'color': '#0000ff', 'font-family' : 'Myriad Pro Bold Italic' , 'font-style' : 'plain', 'font-weight' : 'normal'}} } ); &lt;/script&gt; </code></pre> <p>What did I forget? How do I get colors working?</p> http://stackoverflow.com/questions/1824848/i-want-to-make-a-image-stand-up-with-a-bend-effect 0 I want to make a image "stand up" with a bend effect Radu 2009-12-01T08:53:19Z 2009-12-01T08:53:19Z <p>I want to make an image "stand up" using actionscript 3. It should bend and change the alpha in the motion progress.</p> <p>Example : <a href="http://www.as3.ro/p1%5Fanim4.swf" rel="nofollow">http://www.as3.ro/p1%5Fanim4.swf</a> (1.4 mb);</p> <p>What would be the best , simplest solution for this ? </p> http://stackoverflow.com/questions/1824553/flash-as3-font-embed-causes-positioning-error-with-chalet-font 0 Flash/AS3 > Font Embed causes positioning error with Chalet Font tonejac 2009-12-01T07:29:03Z 2009-12-01T08:21:32Z <p>I'm trying to embed the Chalet font to some dynamic text fields and it is causing the vertical position of the text to jump up above the actual textfield. (<a href="http://www.tonyjacobson.com/chaletFontProblem.png" rel="nofollow">see screenshot</a>) Is Chalet a messed up font? (or more likely, Flash is sooo screwed up in handling fonts) This font displays absolutely fine in Photoshop and Illustrator.</p> <p>Anyone have some advice on how to get this font to display properly in Flash?</p> http://stackoverflow.com/questions/759719/flash-mesh-tweening-animation 0 Flash mesh tweening/animation jpop 2009-04-17T09:24:58Z 2009-12-01T08:00:07Z <p><strong>Is there a way to correctly tween/animate meshes in Flash authoring tool?</strong></p> <p>Shape tweens don't recognise movement of specific vertices, don't preserve connections and generally mess things up. Shape hints are too few for any non-trivial mesh, and too much manual labor anyway.</p> <p>I am trying to accomplish smooth animation between two mesh shapes, but with all the points and vertices preserved, and no new points/vertices added.</p> <p>Meshes in question are strictly 2D, but I won't mind if the solution called for Actionscript/Papervision3D assistance, although the authoring of keyframe mesh states needs to be done interactively in flash authoring tool (too complex shapes/movements to code them by hand).</p> <p><em>Ideas?</em></p> http://stackoverflow.com/questions/1824374/opening-print-html-popup-from-flash 0 Opening Print-HTML-Popup from Flash? sascha 2009-12-01T06:33:18Z 2009-12-01T07:26:08Z <p>Hi, is it somehow possible to open a HTML popup window from within Flash <strong>and</strong> have it receive text data from Flash which should be printed ... and this all only in AS3 and Javascript (since no server-side scripting is available)?</p> http://stackoverflow.com/questions/1823633/high-performance-encryption-in-adobe-air-flash 0 high performance encryption in adobe air / flash Freddy Rios 2009-12-01T02:24:57Z 2009-12-01T04:34:58Z <p>When looking for encryption related classes/functions in action script / air / flash, I saw the <strong><a href="http://code.google.com/p/as3crypto/" rel="nofollow">as3crypto</a></strong> project. </p> <p>This one provide a v. nice set of options, but I am a bit concerned on what the numbers presented means when these are used to decrypt a <strong>local media file</strong> when its selected about to be played.</p> <p>I am looking for <strong>security vs. performance balance</strong>. </p> <p>For <strong>video/music</strong>, it needs to decode at a fast enough pace so the player <strong>plays it smoothly</strong> - which is something that <strong>depends on the format</strong> used, but is in all cases less than the delay of having to wait to decode the whole file.</p> <p>The hardest part comes from having to use it for <strong>flash apps</strong> as well, since afaik it needs to <strong>wait for all of it to do anything</strong>. Unless this assumption is wrong, this is where the best performance algorithm in the list in the as3crypto page seems <strong>too slow</strong> i.e. <strong>at 1.5 MB x sec, it would take 20 secs to decipher a 30 MB flash app</strong>.</p> <p>The <strong>main questions</strong> I have on this are:</p> <ul> <li>Are there any <strong>other libraries</strong> with higher performance? Anything in adobe air maybe? </li> <li>For <strong>videos/songs</strong>, what would be a good number of <strong>MB x sec for it to be playable</strong>?</li> <li>Does flash waits until loading completely a flash app before running anything of it?</li> </ul> http://stackoverflow.com/questions/1814833/how-to-dynamically-load-a-progressive-jpeg-jpg-in-actionscrip-3-using-flash-and-k 2 How to dynamically load a progressive jpeg/jpg in actionscrip-3 using Flash and know it's width/height before it is fully loaded. didibus 2009-11-29T06:35:04Z 2009-12-01T04:17:09Z <p>Hi,</p> <p>I am trying to dynamically load a progressive jpeg using actionscript 3. To do so, I have created a class called Progressiveloader that creates a URLStream and uses it to streamload the progressive jpeg bytes into a byteArray. Everytime the byteArray grows, I use a Loader to loadBytes the byteArray. This works, to some extent, because if I addChild the Loader, I am able to see the jpeg as it is streamed, but I am unable to access the Loader's content and most importantly, I can not change the width and height of the Loader.</p> <p>After a lot of testing, I seem to have figured out the cause of the problem is that until the Loader has completely loaded the jpg, meaning until he actually sees the end byte of the jpg, he does not know the width and height and he does not create a content DisplayObject to be associated with the Loader's content.</p> <p>My question is, would there be a way to actually know the width and height of the jpeg before it is loaded?</p> <p>P.S.: I would believe this would be possible, because of the nature of a progressive jpeg, it is loaded to it's full size, but with less detail, so size should be known. Even when loading a normal jpeg in this way, the size is seen on screen, except the pixels which are not loaded yet are showing as gray.</p> <p>Thank You.</p> http://stackoverflow.com/questions/1817203/save-and-debug-at-same-time-flash-cs3 0 Save and Debug at same time Flash CS3 JLopez 2009-11-29T23:55:06Z 2009-12-01T01:43:01Z <p>Is there a way where I can save and debug a file in flash cs3 with combo keystrokes?? I'm running cs3 on a windows computer and I usually do ctrl+s to save and then do ctrl+shift+enter to debug... and I was just wondering if I can combine these 2 actions with one combination of keystrokes. Thanx!</p> http://stackoverflow.com/questions/1803671/how-to-calculate-frequency-amplitude-in-flash-as3-with-flash-player-9 1 How to Calculate Frequency & Amplitude in Flash AS3 with Flash Player 9 Tanmoy Mitra 2009-11-26T13:29:27Z 2009-11-30T23:45:44Z <p>How can I calculate Frequency &amp; Amplitude in As3 with FP9. I got the all raw byte using </p> <pre><code>SoundMixer.computeSpectrum(_testbytes, false, 0); var g:Graphics = this.graphics; g.clear(); g.lineStyle(0, 0x6600CC); g.moveTo(0, PLOT_HEIGHT); var m:Number = 0; for (var i:int = 0; i &lt; 256; i++) { m = (_testbytes.readFloat() * 100); g.lineTo(i*2 , 100 - m); } g.lineTo(CHANNEL_LENGTH * 2, PLOT_HEIGHT); </code></pre> <p>Now Can I get the frequency &amp; amplitude data from it? </p> http://stackoverflow.com/questions/1344859/as3-accessing-library-items-from-outside-the-document-class 0 AS3 - Accessing Library Items from outside the Document class sol 2009-08-28T03:16:07Z 2009-11-30T22:05:27Z <p>How do you access Library items from classes other than the document class?</p> <p>For example, if I create a movie clip in Flash and Export it for Actionscript with the name Foo, I can do this in the document class:</p> <pre><code>var f = new Foo(); this.addChild(f); </code></pre> <p>And it appears on the stage, as it should. But I need to be able to create other instances of this object from other classes. If I use the same code above in SomeOtherClass.as, I get nothing on the stage, obviously because this class doesn't know about the Foo object in the library.</p> <p>I know I probably need to use appplicationDomain.getDefinition somehow. This doesn't work:</p> <pre><code>var a = new ApplicationDomain(ApplicationDomain.currentDomain); var foo: Class = a.getDefinition ( "com.me.CustomClass" ) ; var f = new foo( ) ; addChild ( f ) ; </code></pre> <p>TypeError: Error #1007: Instantiation attempted on a non-constructor.</p> http://stackoverflow.com/questions/1709467/why-does-the-flash-player-throw-a-sandbox-error-in-this-case 7 Why does the Flash Player throw a sandbox error in this case? Simon 2009-11-10T16:55:09Z 2009-11-30T22:04:43Z <p>I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache.</p> <p>The sequence is as follows...</p> <p>1 Java server starts, listens on port 843 for policy file request and on port 45455 for my other requests.</p> <p>2 Flex client served by Apache (although I get the same result if I run it from the file system), socket connection made on host:45455.</p> <p>3 Flash Player requests policy file from port 843. This is the standard behaviour with the new security settings looking for a master file. It happens regardless of whether a different policy file has been specified.</p> <p>4 I serve the following XML from Java through port 843:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"&gt; &lt;cross-domain-policy&gt; &lt;site-control permitted-cross-domain-policies="all"/&gt; &lt;allow-access-from domain="*" to-ports="*" secure="false"/&gt; &lt;/cross-domain-policy&gt; </code></pre> <p>5 The player writes the following into the debug policy log...</p> <pre><code>OK: Root-level SWF loaded: http://localhost/bst/BasicSocketTest.swf OK: Searching for &lt;allow-access-from&gt; in policy files to authorize data loading from resource at xmlsocket://192.168.2.3:45455 by requestor from http://localhost/bst/BasicSocketTest.swf OK: Policy file accepted: xmlsocket://192.168.2.3:843 OK: Request for resource at xmlsocket://192.168.2.3:45455 by requestor from http://localhost/bst/BasicSocketTest.swf is permitted due to policy file at xmlsocket://192.168.2.3:843 </code></pre> <p>6 I send a text message from the client to the server on port 45455 using <code>writeUTFBytes()</code> and <code>flush()</code> (this is my own home-baked message protocol, and is correctly processed at each end)</p> <pre><code>REG/REGISTER;simon;Si </code></pre> <p>7 Java server thread listening on port 45455 responds with</p> <pre><code>REG:0/REGISTER:SUCCESS;simon;Si </code></pre> <p>8 The Flex client receives a ProgressEvent and the event listener I bound to the socket gets called. I process the message (write it to a text box on the screen)</p> <p>9 The Flash player throws a 2048 sandbox error and the socket is disconnected! This is <em>after</em> the message is received and processed successfully. In fact it is about 12 seconds after. Nothing else works through the socket.</p> <p>I have tried explicitly loading a policy file with a call to <code>Security.loadPolicyFile()</code> in the Flex client, but the reality of the new player security is that it is basically ignored. The steps are that the policy request will not get sent until a socket i/o operation occurs. At that point the player <em>always</em> goes to port 843 first looking for a master policy file. If it finds one, and it is permissive, it goes no further.</p> <p>I have tried a variety of alternative ways of terminating the policy file and policy file contents, including deliberate errors just to see if the Flash Player is awake.</p> <p>I can see no reason why I would have a 2048 being thrown. I accurately serve a socket policy file on the designated master security port, which the player itself logs as correct. The socket then successfully sends and receives a message from the server the contents of which are available to my code.</p> <p>Does anyone have any clue why this may be happening? Flash Player bug?</p> <p><strong>P.S.</strong> <em>Please</em> don't tell me to use BlazeDS or LCDS or Granite, or something else as a server, I'm looking for a solution to this problem, not a redesign. And please don't ask me to use an XMLSocket instead - I tried that and get exactly the same result. I have chosen my architecture carefully and deliberately and I want a binary socket.</p> <p><strong>EDIT</strong> In response to James Ward's request in his comment, here is the entire error message:</p> <pre><code>Error #2048: Security sandbox violation: http://localhost/bst/BasicSocketTest.swf cannot load data from 192.168.2.3:45455. </code></pre> <p>I have a stripped down test client which has a handler for each socket event and outputs a message to the screen. This is what it shows:</p> <pre><code>RequestPolicy: 192.168.2.3:843 Create Socket: 192.168.2.3:45455 Connect: [Event type="connect" bubbles=false cancelable=false eventPhase=2] Sending: REG/REGISTER;simon.palmer@gmail.com;Si Receiving: REG:0/REGISTER:SUCCESS;simon.palmer@gmail.com;Si/ Close: [Event type="close" bubbles=false cancelable=false eventPhase=2] Error #2048: Security sandbox violation: http://localhost/bst/BasicSocketTest.swf cannot load data from 192.168.2.3:45455. </code></pre> <p>The close event is fired immediately after successfully receiving a response from the server, however the Error #2048 does not appear until about 20 seconds later. If I try and send a further message after close, but before the error, the Flash Player throws an invalid socket exception.</p> <p>I have <a href="http://bugs.adobe.com/jira/browse/FP-3302" rel="nofollow">logged a bug at Adobe</a> about this.</p> <p>I can provide full source code of both client and server if anyone is interested.</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/1231167/flash-net-netstream-is-not-receiving-onmetadata 0 flash.net.NetStream is not receiving onMetaData Boon 2009-08-05T04:16:48Z 2009-11-30T19:00:03Z <p>I have gotten a NetConnection and NetStream set up and the streaming mp3 is playing fine. The only problem is the metadata is not received even though NetStream's client has been set. Any idea what could have caused this?</p> <p>Code snippet:</p> <pre> // set up NetConnection ... private function netStatusHandler(e:NetStatusEvent):void { if (e.info.code == "NetConnection.Connect.Success") { // NetConnection's connection established successfully netStream = new NetStream(nc); netStream.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler); netStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler); netStream.client = new NetStreamClient(); netStream.play("mp3:music/123456"); } } class NetStreamClient { public function onMetaData(info:Object):void { trace("onMetaData"); } public function onPlayStatus(info:Object):void { trace("onPlayStatus"); } } </pre> http://stackoverflow.com/questions/1820966/greensock-library-which-is-the-best-option-tweenlite-tweennano-tweenmax-time 0 Greensock library, which is the best option, TweenLite, TweenNano, TweenMax, TimelineMax? coderex 2009-11-30T16:48:23Z 2009-11-30T18:34:11Z <p>Hi all, i am new in flash development, i heard that Greensock lib is the best one. But when am trying to download its really confusing. there are a lot of names like </p> <pre><code>* TweenNano * TweenLite * TweenMax * TimelineLite * TimelineMax * Tweening Platform v11 </code></pre> <p>Which is the best or full featured lib.. where do i get the download link for the complete package or. Please guide me if am wrong. :(</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> http://stackoverflow.com/questions/1817269/flash-adding-r-to-input-textbox-is-this-normal 0 Flash adding \r to input textbox, is this normal? Kohan 2009-11-30T00:21:10Z 2009-11-30T18:02:20Z <p>Hi there,</p> <p>I am setting a string variable to the value of a input box in my movie but Flash also seems to be adding a \r (Carrage Return) to the end of it's value. This is not something i am typing.</p> <p>Is this normal or am i doing something wrong, i can't seem to find where it is coming from.</p> <p>If this is normal, what is the best way to prevent this from happening as it is causing me problems when i use this variable later.</p> <p>I am using Flash CS4, AS3.</p> <p>Thanks, Kohan.</p> http://stackoverflow.com/questions/1820764/flashlite-2-x-3-0-cross-domain-policy-file 0 FlashLite 2.x/3.0 Cross Domain policy file Kevin Boyd 2009-11-30T16:15:13Z 2009-11-30T16:52:22Z <p>As per my understanding of the Adobe docs for a cross domain request by an swf, two types of policy files are required on the server:</p> <ol> <li><p>URL policy file: this is named "crossdomain.xml" and stored in the root of the server and is generally an http request to the server.<br> <code>System.security.loadPolicyFile("http://foo.com/crossdomain.xml");</code></p></li> <li><p>Socket policy file: this is requested via xmlsocket protocol and on port 843 using say <code>System.security.loadPolicyFile("xmlsocket://foo.com:843");</code></p></li> </ol> <p>The question is if my FLashLite client is only going to be talking to the server using Sockets(via xmlSocket) do I still need to ask for crossdomain.xml over http, or can I skip step 1 and directly ask for the socket policy file at step 2?</p>