The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
14 views

When navigating on a site, how can i make animations complete fully before browser jumps pages

i want to use animate.css in my webpage, on the navigation menu. E.g the menu flies out of the screen navigating. The main problem is: How i can delay the page load that i'm clicking until the ...
0
votes
1answer
54 views

How to detect in Page_Unload, that an unhandled exception has occured already?

Page_Unload is called even if an unhandled exception has occurred. I need to deal with that situation. I have a variable state validation throwing an exception when the variable is not in correct ...
0
votes
0answers
44 views

Unload event in IE10, no form data

I have window.unload hooked to save my form data in emergencies when the user just closes their browser. I send this using ajax via POST. This works in IE9, Chrome etc, but not in IE10 where the form ...
-1
votes
0answers
25 views

jquery unload event not working with cometd

I am trying to deal with cometd It connects to server. But problem is $.cometd.disconnect() not working on unload event. I also tried binding beforeunload. Client side code: ...
0
votes
1answer
51 views

jQuery unload() only in a certain case

I have a jquery function, it goes like that: $(window).unload(function() { chat.logout(); }); I want to active the other function, chat.logout(); only when the user leaves the page, or when the ...
0
votes
2answers
199 views

Disable VBA UserForm 'x', but still allow Unload Me

I have a user form that, when closed, needs to run cleanup steps. I would like for the X button to be disabled and/or not visible, but I still need to be able to unload the form. I've used code like ...
0
votes
0answers
42 views

Vimeo still playing after froogaloop api unload

I'm hosting several vimeo videos in a gallery using foundation 4 framework with Reveal modal as a lightbox effect. Unfortunately the videos continue to play after each modal is closed. I'm still new ...
0
votes
0answers
22 views

ASP.NET reload stress

I'm creating a project for reading variables from a plc and i've had a few questions about asp.net website behavior: The script: The script creates a connection with the local plc over ip+port and ...
0
votes
1answer
104 views

Unloading Storyboard View

I'm opening a storyboard view using the following: GroupProximity *proximity = [self.storyboard instantiateViewControllerWithIdentifier:@"groupproximity"]; [self.navigationController ...
0
votes
2answers
155 views

external swf should unload when reaches final frame

I have a swf file loaded into a main movie. When the child is finished playing, ie reaches its final frame, I would like the swf to unload. Can anyone tell me what bits I can add to this code? Thank ...
0
votes
1answer
96 views

unload external swf (child) from the main screen when it has reached last frame?

Help! I have an external swf loading into a main frame (the URL request), and when the swf reaches it's final frame I need it to UNLOAD itself. I need to do this without any code on the CHILD swf, as ...
0
votes
1answer
93 views

Action script 3.0 issue, my swf not unloading

Having a little trouble with an Flash for iOS application! I have a button "start" which loads an external swf. Then I have a different button, "home", which should do three things: 1) unload the ...
0
votes
0answers
62 views

Force the users to logout properly

I'm developing an internal web application (asp.mvc + JS) that performs a key function for its users. Once they migrate away (navigate, close tab, close browser) the app stops. Ideally what I would ...
0
votes
1answer
68 views

Execute a function after the url changes in jQuery

I would like to know if it's possible to use .unload(...) or a similar function in Javascript or jQuery in order to execute an action after the user changes or reload the page. In my specific case, ...
1
vote
2answers
136 views

How do I load and unload a Python module dynamically, disassemble and inspect it, but not execute init code or add it to sys.modules?

I'm experimenting with disassembling Python modules into bytecodes. Must I import a Python module statically or dynamically in order to disassemble or inspect it? If not, what are the (pythonic, ...
0
votes
1answer
142 views

Unload a .swf upon exit of a frame

I realise that this question has been asked before and I have tried all the majority of the solutions and to no avail. In my flash file I have an external .swf loading in a the goGallery frame but now ...
0
votes
1answer
176 views

jQuey - unload vs java script - onbeforeunload

working on a way go recognize when user exits my website. ive read some threads on the site aboout methods do to this with ajax calls simulating pings ive found documantation for unload event that ...
3
votes
1answer
60 views

Load textures while playing

For my 2D game : While playing, I have to load some large texture2D (2000x2500 pixels) and Unload some others. Of course I want to Load and Unload texture2D without game/draw freeze (or the lesser...) ...
1
vote
0answers
50 views

Bug with AppDomain.Unload?

I've implemented code simlar to the 4th answer in How to load a .NET assembly for reflection operations and subsequently unload it? When I try to load two assemblies, one debug and the other release, ...
0
votes
1answer
69 views

Windows 8, WinJS, and unload event. What should be unloaded?

I'm building a Windows 8 app, and I have an empty unload event handler on each page view. I'm just wondering what should be unloaded? I'm assuming Listviews, attachedEventListeners, etc.? But, ...
2
votes
1answer
119 views

complete unload external swf and sound

I am using this code for load and unload an external swf for a button. when I click on button, swf loads and when again I click on button swf unloads, but sound still exist and just swf screen ...
2
votes
1answer
345 views

Informix SQL 11.5 storing query results in a file with a dynamic name

I am trying to store the results of a query in a file. The following command accomplishes this task: UNLOAD TO '/usr/data/report.csv' DELIMITER ';' SELECT COUNT(*) FROM table1; Problem: I don't ...
0
votes
2answers
60 views

Jquery onunload disconnect user

I'm trying to disconnect a user when "unload" event is fired ! $(window).bind('unload', function() { $.ajax({ url: "deconnexionUser.php", async: false }); }); It works but i ...
0
votes
0answers
59 views

Necessary to unload images after view scrolls out of view

I have multiple views loaded on a main scrollable page. addOneMuse: (muse) -> view = new Onethingaday.Views.Muses.IndexView model: muse source_section: "main_feed" @subViews['muse-' + ...
0
votes
1answer
224 views

Having issues unloading rxtxSerial.dll

I am doing some serial communication via Java Applet and rxtx library. Applet is working fine but when loaded more then once I am having issues with UnsatisfiedLinkError: rxtxSerial.dll already ...
0
votes
1answer
145 views

How to unload swf with GreenSock SWFLoader if the swf file has external class references?

I try to load a swf file to show on the stage, if the swf file has no external class, i use swfLoader.unload();, then ide consoln "Unloaded: E:\Projects\TweenTest\bin\ui.swf", but if the ui.swf has ...
9
votes
2answers
190 views

Quickly unload bitmaps from memory

I am creating this Android game in Java. I have quite a lot of images but don't need to use them all at once so I have created a Resource Manger class which takes care of the Bitmaps that are in use. ...
0
votes
2answers
257 views

as3 - unloading an swf upon exiting frame

i'm brand new to flash so apologies if i'm not being clear. i've had a search around and couldn't apply anything i found to my code to get it to work. im building a site where navigating to each page ...
0
votes
1answer
537 views

In AngularJS, how to detect when user leaves template/page?

I am using the Javascript command: setInterval. I like to stop it when the user leaves the page. This code seems to work well: http://jsfiddle.net/PQz5k/ It detects when a user leaves a page. It ...
1
vote
1answer
262 views

Re-load Unloaded Projects in EnvDTE

I have listed all the projects in my solution, using EnvDTE, but I found a bug in my code: I can't get the projects that are Unloaded. I found a way to skip the Unloaded projects: if ...
3
votes
1answer
208 views

kext hid under 10.7 unload failed but 10.6 works flawless

I'm working on a virtual USB bus driver for MacOSX (Windows already running) connected via network with a linux box. It works fine under 10.6 and 10.7 with a mass storage device and HID devices like ...
0
votes
2answers
61 views

Can we undeploy a Spring container managed bean which is no more needed

I a get a get a bean from Spring container say MyClass obj1 = Context.getBean("obj1"); After using obj1, I am sure that it will not be needed in rest of my application. Then is there any way to ...
-3
votes
2answers
79 views

Jquery issues related to unload function in body

When i try to get out of the page it should ask confirm message if i click ok it redirected to some other page if i click "Cancel" it shold stay on the same page Who?
-2
votes
1answer
170 views

jQuery unload(): Syntax error after updating a Cookie - how to find the cause?

Solution below: Edit #2 I've a HTML-list the user is able to sort. I don't want to save the data after every drag/drop action, so I save the data on unload: in a cookie and database. Thats working, ...
2
votes
1answer
78 views

Unload externally loaded SWF when clicked outside SWF

I have a button on stage which loads an external SWF using the Loader class. I want to be able to unload the SWF when a user clicks outside of it, i.e. anywhere else on the stage. So far I only have ...
-1
votes
1answer
114 views

View controllers not being deallocated

I have 2 controllers InitViewController and SettingsViewController. Each view has a button that calls another view: InitViewController @interface InitViewController : UIViewController - ...
0
votes
0answers
228 views

video.js: How can I “unload” videos?

Is there a possibility to "unload" videos? I'm loading and unloading video-elements dynamically with javascript and I would need to unload videos to reload the same id again later. Since there seems ...
1
vote
1answer
115 views

Trying DB2 unload using IKJEFT utility

I am trying unload Below is jCL /STEP90 EXEC PGM=IKJEFT01 //STEPLIB DD DSN=DB2.SYS.LOAD,DISP=SHR //SYSPRINT DD DUMMY,DCB=BLKSIZE=8000 ...
0
votes
1answer
270 views

IE/Chrome unload event behavior: Refresh button vs. Selecting URL and pressing Enter

I have an event like this that logs the user out when they navigate away from my page: $(window).unload(function () { $.ajax('/Account/LogOff', { async: false }); }); In IE, if the user hits the ...
0
votes
0answers
54 views

UIScrollViewContentSize after childView did unload?

I have a problem: I got a UIScrollView with a changeable ContentSize. After a childViewController unloads and this view is the presentviewcontroller again, the height seems to just be 360. Any idears ...
1
vote
1answer
219 views

Doing a postBack in a unload event on firefox causes to stay always in the same page

Using c# .net Hi, I´m trying to do a postBack on a unload event, in google chrome the currently script works fine window.onbeforeunload = function () { __doPostBack('<%= ...
1
vote
0answers
401 views

kext not loaded sometimes

I have some random kext loading issue with a kext developed. Basically kext is written to update the mouse DPI on need. Here are some points related to kext 1. kext driver class is derived from ...
0
votes
0answers
78 views

Unload Prompt Checkboxes

I am working on my website and I am trying to make this unique way of keeping statistics on my page. I want to know is it possible to create an UnLoad prompt for my page when for example I leave my ...
0
votes
1answer
228 views

Deal with unloading forms on Windows 7 Aero theme [duplicate]

Possible Duplicate: Disable aero fade-in effect on dialog I am trying to take a screen shot of the application when a user presses okay on a form. When the user presses OK, the form should ...
0
votes
0answers
1k views

How to disable browser back button

I have web app which contains iframe. In main part client communicates with server by ajax, additionally i added beforeunload = function(){ return "something";} , so when user clicks browser back ...
0
votes
0answers
40 views

Give user text to copy onbeforeunload

I have a page where people can build an itinerary of events. I do not require users to login to use this feature, and a unique URL is built for them as they put their itinerary together. There is a ...
0
votes
0answers
115 views

Can I force external web content to load in my iframe when it tries to unload my page WITHOUT showing a confirmation box on unload?

I apologize because I know my question has probably been answered indirectly in other posts, but I just need a simple, categorical answer. I am using JQuery and am presenting my users external ...
1
vote
2answers
577 views

javascript's unload and beforeunload alternative

I need to monitor when the user moves away from a page (to a different site not the same site) or closes the window/tab. I can achieve that with $(window).bind('unload', function() {}); but onload is ...
1
vote
0answers
48 views

How to unload previous level (class) in iOS

In my game, when I load a new level, the previous level seems to be still remaining in the view.. Each level has its own class and they all draw something on the screen. So if I have 2 or more levels ...
0
votes
1answer
283 views

When i unload projects in visual studio, where does VS save this setting?

i check the solution file and project file, and can not find anything related to this setting. When people get latest version from TFS source control, they always see the 'loaded' status, which is not ...

1 2 3 4 5