Actionscript 3 :: AIR SocketServer Cleanup? How To Close When App Quits?

Feb 4, 2012

I have a simple AIR app that listens on a socket using the SocketServer class.I have the following code when I first start up the app:

if( serverSocket.bound )
{
serverSocket.close();[code]....

However I find that if I try to test my movie after making some quick changes, I can't bind to the same address:port. I'm guessing that somehow that the port is still occupied. I get a "Operation attempted on invalid socket" error.But if I wait a bit and then test my movie, I can bind to the address:port. The close() is not taking affect. Can I try to close() this when the user decides to exit the app? Is there some sort of event that allows me to do something before the app quits?

View 1 Replies


Similar Posts:


Professional :: Flash Quits When You Close Window

Jun 7, 2010

Why does Flash CS5 quit when you close the window you were working in? It has to restart every time you close and open a file.

View 3 Replies

Javascript :: Use Flash To Talk To The Socketserver?

Feb 4, 2011

I am working on a chatting app that makes use of flash sockets. I don't want to code the entire interface in flash, so I was hoping to just use flash to talk to the socketserver and call js to modify the dom.

View 2 Replies

IDE :: Socketserver Works From Flash But Does Not On Local Webserver

May 5, 2009

I have followed the tutorial here by obiAdmin (raymond) [URL] on how to connect flash to a php socketserver. The problem is in the development environment it works like a charm but when I put the swf on my local server (wamp) it fails to connect to the socketserver.

View 1 Replies

ActionScript 2.0 :: Cleanup, Reduce # Of Statements?

Jul 21, 2005

I figure that this code can be reduced with a for statement, but I can't figure it out. Here is my code, and below that is my attempt.On the stage I have 6 movieclips named nav1_ani, nav2_ani, etc. I also have 6 buttons above them named nav1, nav2, nav3, etc.Here is my code, here I got #5 and #6 working. Instead of duplicating all this code, is there a way to bunch it all into one "for" statement?

Code:
nav1on = false;
nav2on = false;

[code]......

View 2 Replies

ActionScript 3.0 :: Flash - Do SoundChannels Cleanup After Themselves

Sep 13, 2010

If I call the play() function of a Sound, which returns a SoundChannel object, will the SoundChannel still linger around after the sound clip is finished playing and eat up resources? Or will Flash's garbage collection scoop it up?

View 2 Replies

Flash CS4 Unexpectedly Quits Repeatedly

May 12, 2009

I've been using it fine - until the last month - I've completely uninstalled it - and reinstalled it. I was having this problem before I upgraded to 10.5.6... thought upgrading the OS may work - it hasn't. I'm on a MacBook Pro

View 6 Replies

CS4 :: Flash Quits When Application Closes

Aug 26, 2009

I am running Flash CS4 ver10.0.  I noticed that every time I close the Flash application, the application quits.

View 2 Replies

Flash :: CS4 Quits Unexpectedly Every Start?

Dec 10, 2009

I'm currently running Mac OSx 10.6.2 and Flash CS4 with the most recent updates. Every time I open Flash CS4, the application quits with the following error: Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004Crashed Thread:

I've updated the latest version of Java. What the heck is going on?

View 1 Replies

Force Cookies Refresh - Memory Cleanup?

Apr 3, 2009

Just finished some swf files update, but as computers retain information (cookies) if site as been visited before, im not sure that everybody will see the update. How can i prevent this?

View 1 Replies

Flex :: Cleanup All UIComponents Inside Mx:Application

Jun 2, 2010

I create some elements( UIComponents, mainly Panels) inside the "mx:Application name=¯tst¯ . I need to cleanup all those UIComponent's on MouseClick event , using Actionscript. Is there any way I access the children elements of mx:Application ( I used var totalChildren:Number = this['tst'].numChildren ; but looks like it fails to access the children list).

View 1 Replies

ActionScript 2.0 :: Garbage Cleanup - OnEnterFrame, Intervals, ?

May 23, 2007

A project I'm working on is working just fine at first, but as I perform more actions, it slows down noticeably. I've made sure to clear any onEnterFrame and setInterval events, so I don't think the problem lies there. Most likely, it's because practically every time an action occurs, much of the content on the screen is redrawn/recreated. However, every time I create a movie clip, text field, shapes, etc., I call a function to remove it beforehand:

Code:
function killThis(mc:MovieClip, thingsName:String):Void{
var obj:Object = mc[thingsName];
if (obj instanceof MovieClip){[code]..........

View 1 Replies

Professional :: Clicking Red Button Quits Application?

Sep 10, 2010

In Flash CS5 for Mac, when I click the red button in the upper left corner of the document, the application quits instead of just closing the window. In CS3 this didn't happen. The document window would close and the Welcome Screen would appear.

View 2 Replies

ActionScript 2.0 :: Close Browser By Clicking On Close Button Embedded Swf?

Jul 27, 2009

i want to close browser by clicking on close button embedded swf. I have tried fscommand("quit"), but which is not working on browser.

View 9 Replies

Flash :: Cleanup MovieClips On Scene Change In ActionScript 2

Nov 21, 2010

[Code]...

The main scene is overlayed with all the MovieClips I had in the previous scene. How can I automagically clean them up?

View 1 Replies

Actionscript 3 :: Flash Application Cleanup On Unload From Browser

Nov 15, 2011

Generally when you unload an swf from another swf you would follow a cleanup utilzing removed from stage or unload events. But when you exit an as3 flash application by either navigating away from page or reloading the page or closing/removing the application. what is the best practices you would follow to ensure proper cleanup and garbage collection.

Question : what methods in solely as3 code can be used in this regard. It may be argued that once an swf is unloaded or removed its memory foot print can be verified to have decreased eg via the task manager Is this a good enough measure? Or is it advisable to handle the unloading/exiting in a proper manner ?

View 1 Replies

Professional :: Adobe Flash CS4 Quits When Opening Any File

Feb 23, 2010

I hope someone here can help me figure out why my Flash CS4 on a Mac 10.6.2 machine crashes unexpectedly every time I open a file. (I have posted the entire crash log below) The program will open, and even stay open when I choose a .fla file for about 5-10 seconds and then CRASH every time. For what it's worth, all my other design collection programs work fine.I have tried uninstalling and reinstalled the Flash app., but it didn't do anything. I have also tried deleting all preference files and application support files in my user, and the problem persists.Does anyone have any ideas? I have a Flash job to get out and no way to work on it![code]

View 2 Replies

ActionScript 2.0 :: XML Parsers - Recursion - Only Reads Through The First Tree And Then Quits

Jul 22, 2004

I am loading an xml and looping through it using a recursive function. The problem is that it only reads through the first tree and then quits..??

[Code]...

View 3 Replies

ActionScript 3.0 :: Flash Event.REMOVED_FROM_STAGE - Writing A Cleanup Function For MC?

Nov 29, 2011

[URL] I needed to do clean up before the MC is gone ... so after some digging I found this event:

Event.REMOVED_FROM_STAGE

So I am trying to ask for some conformation here: Is this the ONLY situation that my MC will be deleted automatically by Flash? If so then I can just listen to this even and call my cleanup function when it happens...

View 1 Replies

ActionScript 1/2 :: Windows Projector Quits Fullscreen When Opening Pdf File?

Aug 16, 2011

I'm working in CS5, using AS2 on a Mac.I've built a presentation that requires the need to open pdf files in Acrobat Reader... as I have been building this on a Mac I simply used the geturl code which has been working a treat... today when I tested it on a PC it opened the file in a browser window!
 
I'm not really a coder and have to rely on finding bits online that I can tweak... after many hours I have fixed the pdf opening problem by using the fscommand method, but unfortunately when the pdf file is closed, my presentation (that was running fullscreen) has minimised itself to a window 100% to the original stage size!

View 2 Replies

Professional :: Windows Projector Quits Fullscreen When Opening Pdf File

Aug 16, 2011

I've built a presentation that requires the need to open pdf files in Acrobat Reader... as I have been building this on a Mac I simply used the geturl code which has been working a treat... today when I tested it on a PC it opened the file in a browser window!
 
I'm not really a coder and have to rely on finding bits online that I can tweak... after many hours I have fixed the pdf opening problem by using the fscommand method, but unfortunately when the pdf file is closed, my presentation (that was running fullscreen) has minimised itself to a window 100% to the original stage size!

View 2 Replies

Javascript :: To Execute Flex Cleanup Function When Browser Is Closed By User?

Oct 29, 2009

I have a Flex client application. I need a clean up function to run in Flex when the user closes the browser. I found the following solution on the net, but it only works half-way for me. How could I fix it?CustomEvent triggered, but not executed. >> EventHandler for CustomEvent.SEND_EVENTS is defined by a Mate EventMap. All the handler does is to call an HTTPServiceInvoker. In debug console, I'm able to see the handler and HTTPServiceInvoker being triggered, but neither the resultHandlers nor the faultHandlers were called. I know this event handler has no problem because when I dispatch the same CustomEvent.SEND_EVENTS in a button click handler, it behaves exactly as I expected)Browser seems to wait for cleanUp function to complete before it closes. (all traces were printed before browser closes down)

Code
I added the following into the index.template.html
window.onbeforeunload = clean_up;

[code].....

View 3 Replies

Professional :: Full Screen Player Crashes/Quits In Win Server 2003

Jan 15, 2010

I have an application that runs as a projector and is meant to run full screen in a kiosk. However, when the app is expanded to full screen it crashes and I get an error message of:

Faulting application test.exe, version 10.0.2.54, faulting module test.exe, version 10.0.2.54, fault address 0x0015187e. Event ID: 1000

If I run it in a web browser and try to go full screen the same thing happens. I've been all over the web and haven't found anything. Have uninstalled virus software thinking it might be a problem.

View 4 Replies

ActionScript 3.0 :: Screen Turns Black And Flash Quits On Video Playback

Oct 21, 2010

I'm using a playback control that is giving me problems. The only thing that I'm using is a play/pause buttons and the time scrubber. I found this code on a website. Now, when I preview the swf, it plays fine, but when the video starts playing, the screen turns black and flash quits automatically.

This is the Error that I'm getting:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at Website10_fla::MainTimeline/updateDisplay()
at flash.utils::Timer/_timerDispatch()
at flash.utils::Timer/tick()

And this is my code:
import flash.display.MovieClip;
import flash.utils.Timer;
import flash.events.TimerEvent;
// time to buffer for the video in sec.const BUFFER_TIME:Number = 8;
// start volume when initializing player
// const DEFAULT_VOLUME:Number = 0.6;

View 20 Replies

ActionScript 3.0 :: Call Cleanup Function On Reload Of Page / Relode Of Swf Or Change Of Page

Nov 15, 2011

I have an swf loaded in a browswer (fire fox) and i use log on console using [code]I have initialized my swf in the document class on the Event.Added to stage.and i have a clean up function performing all the clean up/exit process in the code on the event [code]Now Doubt that this is being called/ activated/trigered as i am not able to log the start and end of the function to the console.The console log is of firebug.What exactly am i missing here? I would like to call the cleanup function on reload of page or relode of swf or change of page.How do i trigger and log it properly

View 1 Replies

ActionScript 2.0 :: Put A Close Button In The Window MC To Close The Window?

Mar 23, 2007

*let say i have a mc called A. it can call a MC with an instance name called window_btn.window can be drag and double click.i want to put a close button in the window MC to close the window.

how to call the close button in the MC?

View 14 Replies

Close 2nd Swf And Open Another One?

Feb 28, 2011

I opened from my main swf a new one with addChild. Now in the 2nd swf i need a button to close this swf and open another one ... I done this way because the button i puted in the main swf does n´t work (maybe because i´m using in both swf liquid layout with a resize function). How can i do to close the 2nd swf and open another one.

View 2 Replies

Close A Popup Box With An X?

Mar 10, 2012

I have a pop up box on a button which does open and close but I would like to add an X to the corner which would also close the box.

View 2 Replies

ActionScript 2.0 :: Close Swf From Within Swf Window

Sep 13, 2004

Does anyone know the syntax for closing a swf window using a button, similar to closing a popup window? I am creating a small game, and am giving the user the option to "play again" or "quit" at the end of the game, so i want the quit button(standard library on(press)) to close the swf file.

View 2 Replies

Close Button Not Working

Jan 31, 2008

I have a picture with an invisible button, once clicked on the button runs a movieclip with an instance - box1, once its opened a close button appeared, called closeBtn1 and the idea is when thats clicked, for box1 to gotoAndPlay frame 80, but no matter where I put the code it doesnt seem to let the closeBtn work! Even trace actions aren't getting recognised![code]as u can see I'm trying to trace even if the closeBtn gets rolled over but to no avail.I have also tried it from scene level and still no joy.

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved