|
Review of Dead Leaves (Halloween)monograph...but not Dead Leaves John Almack said to me that it would be great if I did a review of Dead Leaves Fall (Halloween contest) monograph from Chaosium. John being one of the authors, of course, kinda made me feel...
Started by Skyman on
, 14 posts
by 8 people.
Answer Snippets (Read the full thread at yog-sothoth):
Side of completeness, I will add my thoughts about your own adventure, "Dead Leaves Fall", from which the monograph as a whole takes its name....
I hope everyone enjoys "The Lock-In"; I had a great time creating it .
Seen for Dead Leaves Fall.
|
|
I have an HTML wrapper that contains a Flex application, is there an Event that I can listen on, that is triggered when a user leaves the HTML wrapper either by navigation arrows or closing the browser?
Thanks.
Started by mmattax on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
However, you can't really listen for this within the Flex app, as the app may not be running anymore ... .
The closest thing I've found for this is the javascript window.onunload event .
There is Body.onUnload, but i'm not sure how reliable it actually is .
|
|
I have the bad luck of having to downport some ActionScript 3 code to ActionScript 2 and I have a problem with detecting when the mouse leaves the stage.
In ActionScript 3 there is an event called Event.MOUSE_LEAVE , which can be used to detect when the...
Started by Theo on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The problem is that the mouse coordinates stop updating when the mouse leaves the stage.
|
Ask your Facebook Friends
|
I was just reading http://stackoverflow.com/questions/1619930/how-to-check-users-leave-a-page earlier on when suddenly I thought of performing AJAX when user leaves the page to send analytical data back to the server.
Is performing AJAX on the onunload...
Started by thephpdeveloper on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I think you'll end up in race condition
If you spawn another thread, the one who did the AJAX call will be destroyed and the page will unload (because the page was waiting for this thread to finish)
Anyways, unload event are to be avoided at all costs... .
|
|
I've got a JTextField, and I'd like the system to do some processing on what the user typed whenever the user leaves the text field. The ActionListener that you can add to just the JTextField only fires when the user presses enter, however.
I'd like the...
Started by Electrons_Ahoy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Much better to do any relevant.
That happen when focus leaves a field give poor user experience.
|
|
What is the best way to detect if a user leaves a web page?
The onUnload javascript method doesn't work every time (the HTTP request takes longer than the time required to terminate the browser).
Creating will probably be blocked by current browsers.
...
Started by ANaimi on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The default handler.
In Silverlight there is a event in App.xaml.cs Exit.
He leaves.
|
|
I have a number of controls with ToolStrips containing buttons. I need to show or hide some of the buttons when the mouse enters the toolstrip. I know Mystery Meat is bad but it's what I've got to do.
The ToolStrip's MouseEnter event fires when the mouse...
Started by Simon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Quote From : ....
I would stay away from global hooks.
What about using Global Hook: http://www.codeproject.com/KB/cs/globalhook.aspx
So you will be able to manage yourself the correct result .
MouseLeave fires only if the control owns the mouse capture .
|
|
I have a form with a lot of controls on it. How can I detect when the mouse leaves the form? I've tried wiring up a MouseLeave event for every single control and the form, but that does not work because those events fire all the time as the mouse passes...
Started by AngryHacker on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Because if the mouse leaves the form via a space that is covered with a control, form_mouseLeave, and the mouse never enters or leaves anything? While I'd say it's fine to do this kind of thing for eyecandy.
|
|
I want to run a relatively time consuming script based on some form input, but I'd rather not resort to cron, so I'm wondering if a php page requested through ajax will continue to execute until completion or if it will halt if the user leaves the page...
Started by Stephen Belanger on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
That would seem to say the answer to your question is "Yes, the script will terminate if the user leaves.
|
|
Hi Guys,
When i start typing text in a default textView in my viewcontroller, its not going to the bottom of the textfield. It leaves room for 2 more lines of text and then starts scrolling. I want it to start scrolling when i start going beyond the last...
Started by Ton on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's some....
Just adding to what mahboudz already said.
As UITextView is a subclass of UIScrollView, look at UIScrollVIew's properties, like contentInset and others to see if they might be creating a gap between your frame/bounds and the content inside .
|