Hi,
At the top of my php file I have got :-
<body onblur="self.focus();">
so when I click off onto another window, my window comes back up in front
which is perfect. The problem however, is that when I try to type into my
form boxes, the key transfers are all being lost (i.e. keyboard is
disabled)!
Can anyone shed any light?
Thanks, Mark 14 4484
"Andrew Thompson" <Se********@www.invalid> wrote in message
news:13*****************************@40tude.net... On Wed, 17 Nov 2004 20:34:41 GMT, Mark wrote:
Can anyone shed any light?
'Let there be focus'
Translation: Stop stuffing with the focus in the first place.
Er....say again?
Thanks, Mark
On Wed, 17 Nov 2004 21:01:21 GMT, Mark wrote: "Andrew Thompson" <Se********@www.invalid> wrote in message
On Wed, 17 Nov 2004 20:34:41 GMT, Mark wrote:
Can anyone shed any light?
'Let there be focus'
Translation: Stop stuffing with the focus in the first place.
Er....say again?
I'll try it again, slower..
<body onblur="self.focus();"> creates problem. :-(
<body> fixes problem. ;-)
--
Andrew Thompson http://www.PhySci.org/codes/ Web & IT Help http://www.PhySci.org/ Open-source software suite http://www.1point1C.org/ Science & Technology http://www.LensEscapes.com/ Images that escape the mundane
Mark wrote: Hi,
At the top of my php file I have got :-
<body onblur="self.focus();">
so when I click off onto another window, my window comes back up in front which is perfect. The problem however, is that when I try to type into my form boxes, the key transfers are all being lost (i.e. keyboard is disabled)!
Can anyone shed any light?
Maybe you can shed more light on the whole context. Is that a secondary
window? Why do you need to make that window always up in front of other
windows? Can you elaborate on the analysis, webpage context, design
decision? You maybe trying to find a correct/exact solution to a
bad/wrong design decision.
You understand that making a window get the focus like you do is very
restrictive, very constraining, very user-unfriendly. That's why browser
manufacturers (Opera, Mozilla for starters; don't know about Konqueror,
Safari) are now granting users absolute veto powers over raising and
lowering (against pop-under) windows.
DU
--
The site said to use Internet Explorer 5 or better... so I switched to
Mozilla 1.7.3 :)
"DU" <dr*******@hotNOSPAMmail.com> wrote in message
news:30*************@uni-berlin.de... Mark wrote: Hi,
At the top of my php file I have got :-
<body onblur="self.focus();">
so when I click off onto another window, my window comes back up in front which is perfect. The problem however, is that when I try to type into my form boxes, the key transfers are all being lost (i.e. keyboard is disabled)!
Can anyone shed any light?
Hi Du,
Maybe you can shed more light on the whole context. Is that a secondary window? Why do you need to make that window always up in front of other windows? Can you elaborate on the analysis, webpage context, design decision? You maybe trying to find a correct/exact solution to a bad/wrong design decision.
It is for a personal-use script. The program does a 'window.open' to display
a page
which shows current horse-prices. The main window then goes to Betfair. I
then need
to be able to navigate the betfair website, without my 'information' window
disappearing,
so that I may compare prices.
I agree it may not be the best way to do things, but I was told it would be
the simplest :-}
Basically, I need some code which makes sure my window is always at the
front of the
betfair window. I do not care whether its java, win32, PHP or ASP as long as
it gets the
job done :-)
Any help would be appreciated.
Thanks, Mark
"Andrew Thompson" <Se********@www.invalid> wrote in message
news:14*****************************@40tude.net... On Wed, 17 Nov 2004 21:01:21 GMT, Mark wrote:
"Andrew Thompson" <Se********@www.invalid> wrote in message
On Wed, 17 Nov 2004 20:34:41 GMT, Mark wrote:
Can anyone shed any light?
'Let there be focus'
Translation: Stop stuffing with the focus in the first place.
Er....say again?
I'll try it again, slower..
<body onblur="self.focus();"> creates problem. :-(
<body> fixes problem. ;-)
Yes, but will sadly create a new problem - My window will no longer stay at
the front :-(
Thanks, Mark
On Wed, 17 Nov 2004 23:35:28 GMT, Mark wrote: It is for a personal-use script.
That changes *everything*, I was thinking you meant on an
internet site visited by others.
For a personal script, you can guarantee the environment
(including single browser) and adjust security settings and
plug-ins (such as pop-up blockers) as required.
Have you tried framing the two pages? What are the URLs?
--
Andrew Thompson http://www.PhySci.org/codes/ Web & IT Help http://www.PhySci.org/ Open-source software suite http://www.1point1C.org/ Science & Technology http://www.LensEscapes.com/ Images that escape the mundane
Mark wrote: <body onblur="self.focus();"> creates problem. :-(
<body> fixes problem. ;-)
Yes, but will sadly create a new problem - My window will no longer stay
at the front :-(
How do you know your viewer *wants* your page at the front? That is why they
clicked another window, isn't it? To, you know, look at the *other* window.
If I were to encounter such a page I would immediately press the back
button.
--
Cheers
Richard.
"rf" <rf@.invalid> wrote in message
news:q0******************@news-server.bigpond.net.au... Mark wrote:
> <body onblur="self.focus();"> creates problem. :-( > > <body> fixes problem. ;-) >
Yes, but will sadly create a new problem - My window will no longer stay
at the front :-(
How do you know your viewer *wants* your page at the front? That is why they clicked another window, isn't it? To, you know, look at the *other* window.
If I were to encounter such a page I would immediately press the back button.
Because it is for an inhouse development on an intranet - and they /will/
obey me ;-)
Thanks, Mark
"Andrew Thompson" <Se********@www.invalid> wrote in message
news:1x****************************@40tude.net... On Wed, 17 Nov 2004 23:35:28 GMT, Mark wrote:
It is for a personal-use script. That changes *everything*, I was thinking you meant on an internet site visited by others.
For a personal script, you can guarantee the environment (including single browser) and adjust security settings and plug-ins (such as pop-up blockers) as required.
Yes, I believe I have done all this to a satisfactory level. The window
opens up, and sits there with my page. The main window gets re-directed to
the required destination. If you click on the main window, my window comes
up on top - All works perfectly, except for the fact, I cannot type in my
window (the window contains a form) rendering the whole application useless
:-(
It /appears/, that when I type, the onblur event is being called, so
recalling the window, rather than registering the keypress as a character.
Have you tried framing the two pages? What are the URLs?
No, this is not possible as I need the full screen of the main page, then
this popup window is a small window which overlaps a square piece of 'dead
space' on the main site.
On a side note --- Windows programming is all very new to me, so things like
eventhandlers are a complete nightmare. I used to program in C++/ASM back in
the days of dos, so I do understand the basics of logic and functions etc,
but the windows part is a real non-starter for me - Can anyone recommend any
books with good examples? I have various 'reference' books for function
names / parameters, but these obviously do not show me how to implement the
procedure into my code.
Thanks, Mark
Mark wrote: No, this is not possible as I need the full screen of the main page, then this popup window is a small window which overlaps a square piece of 'dead space' on the main site.
Sounds like a good excuse for an iframe.
--
Cheers
Richard.
"Mark" <ma*******@horsemad.co.uk> wrote in message news:<35************@newsfe6-win.ntli.net>... "Andrew Thompson" <Se********@www.invalid> wrote in message news:1x****************************@40tude.net... On Wed, 17 Nov 2004 23:35:28 GMT, Mark wrote:
It is for a personal-use script.
That changes *everything*, I was thinking you meant on an internet site visited by others.
For a personal script, you can guarantee the environment (including single browser) and adjust security settings and plug-ins (such as pop-up blockers) as required.
Yes, I believe I have done all this to a satisfactory level. The window opens up, and sits there with my page. The main window gets re-directed to the required destination. If you click on the main window, my window comes up on top - All works perfectly, except for the fact, I cannot type in my window (the window contains a form) rendering the whole application useless :-(
It /appears/, that when I type, the onblur event is being called, so recalling the window, rather than registering the keypress as a character.
Have you tried framing the two pages? What are the URLs?
No, this is not possible as I need the full screen of the main page, then this popup window is a small window which overlaps a square piece of 'dead space' on the main site.
On a side note --- Windows programming is all very new to me, so things like eventhandlers are a complete nightmare. I used to program in C++/ASM back in the days of dos, so I do understand the basics of logic and functions etc, but the windows part is a real non-starter for me - Can anyone recommend any books with good examples? I have various 'reference' books for function names / parameters, but these obviously do not show me how to implement the procedure into my code.
Thanks, Mark
Boy, people certainly are argumentative around here...
Have you looked into HTAs? Where browser coverage isn't an issue - and
you don't mind using IE (ugh) the flexibility is tremendous.
Otherwise...
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>untitled</title>
</head>
<body>
<input type="button" value="open it"
onclick="window.open('pop.html','pop','width=400,h eight=300,left=100,top=100,status=0')"
/>
</body>
</html>
[pop.html]
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>untitled</title>
<script type="text/javascript">
//<![CDATA[
var timerID = null;
onblur = function()
{
timerID = setTimeout('self.focus()', 50);
}
onload = function()
{
var i = 0, el, els =
document.getElementsByTagName('form').item(0).elem ents;
while (el = els.item(i++))
if (/text(area)?/.test(el.type))
{
el.onfocus = function()
{
if (timerID)
clearTimeout(timerID);
}
el.onblur = function()
{
timerID = setTimeout('self.focus()', 50);
}
}
self.focus();
}
//]]>
</script>
</head>
<body>
<form style="width:120px;">
<input type="text" name="foo" value="" />
<input type="text" name="feh" value="" />
<textarea name="hah" rows="4" cols="24"></textarea>
</form>
</body>
</html>
Just uses a timer to 'reverse' the order of blur/focus firing so you
can control them. Assuming one form in that popup.
"RobB" <fe******@hotmail.com> wrote in message
news:ab*************************@posting.google.co m... "Mark" <ma*******@horsemad.co.uk> wrote in message news:<35************@newsfe6-win.ntli.net>... "Andrew Thompson" <Se********@www.invalid> wrote in message news:1x****************************@40tude.net... > On Wed, 17 Nov 2004 23:35:28 GMT, Mark wrote: > It /appears/, that when I type, the onblur event is being called, so recalling the window, rather than registering the keypress as a character.
> Have you tried framing the two pages? What are the URLs?
No, this is not possible as I need the full screen of the main page, then this popup window is a small window which overlaps a square piece of 'dead space' on the main site.
On a side note --- Windows programming is all very new to me, so things like eventhandlers are a complete nightmare. I used to program in C++/ASM back in the days of dos, so I do understand the basics of logic and functions etc, but the windows part is a real non-starter for me - Can anyone recommend any books with good examples? I have various 'reference' books for function names / parameters, but these obviously do not show me how to implement the procedure into my code.
Thanks, Mark
Boy, people certainly are argumentative around here...
Sure are <lol>, it has took numerous replys before any kind of code /
functions were even mentioned.
Have you looked into HTAs? Where browser coverage isn't an issue - and you don't mind using IE (ugh) the flexibility is tremendous.
Sorry to sound a bit thick, but what does HTAs stand for? Otherwise...
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> CODE SNIPPED <<<<
One phrase springs to mind 'King amongst men'.
Rob, I cannot thank you enough. I have just got home at 03:40am after
spending the day driving through snow and achieving very little- copied and
pasted your code and run it, and it works perfectly. I am not even going to
try and understand nor modify it until I have had at least 5 hours sleep,
but at least now, I know I have the basecode to do the job properly.
Thanks ever so much, it is truly appreciated.
Thanks, Mark
On Fri, 19 Nov 2004 03:53:09 GMT, Mark wrote: Have you looked into HTAs? Where browser coverage isn't an issue - and you don't mind using IE (ugh) the flexibility is tremendous.
Sorry to sound a bit thick, but what does HTAs stand for?
AFAIU..
It stands for Hyper Text Application.
It is an 'whatever.html', renamed to 'whatever.hta'.
IE then recognizes that web-page as being a 'signed' web application
that can then gain extended privileges to perform functionality that
would not normally be allowed in an internet environment. This
includes having control of programs outside the browser, or access
to the local filesystem (the user's hard disk).
HTH
--
Andrew Thompson http://www.PhySci.org/codes/ Web & IT Help http://www.PhySci.org/ Open-source software suite http://www.1point1C.org/ Science & Technology http://www.LensEscapes.com/ Images that escape the mundane This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Bettina |
last post by:
I have a text field and I want that after I enter a text in this text
field, the focus goes to the button.gif. How can I do it? Any ideas?
I know that when you use an input type="submit", the focus...
|
by: Scott Navarre |
last post by:
Hi,
I have Red Hat 8.0 and have the default Mozilla browser that comes with
it. I am programming in javascript and have come across something
problematic. Given the following code:
<HTML>...
|
by: Arthur T. Murray |
last post by:
http://www.scn.org/~mentifex/jsaimind.html is a free, public-domain AI
in JavaScript that may be copied to your Web site with your own changes.
Freshly updated and modified from the AI Mind-1.1...
|
by: Arne |
last post by:
During testing <div style="overflow:auto;"> in CSS I noticed the
mousewheel would work in Mozilla only after I made a <a href="#">some
text</a> link and clicked on that, within the div.
It...
|
by: WH |
last post by:
I put this line in HTML
<body bgcolor="#FFFFFF" onLoad="focus()">
Both Mozzila and IE can do self.focus(). However Opera still does not take
the focus().
|
by: Stephan Rose |
last post by:
Ok here's my situation...
Got an MDI application with a panel to my right that has a tree view
for the project stuff, etc.
Now if I select an item in the tree view, the tree view gains input...
|
by: Tom |
last post by:
I am using VB.NET to control another program. I have the program's window
hwnd; however, I need to be able to set the focus to that other programs
window so I can send it some keystrokes. I thought...
|
by: sconeek |
last post by:
hi all,
i have a html form with multiple text fields, accepting input from a
virtual onscreen keyboard.
so far i have document.forms.elements.value+=x;
The problem is that i dont want to...
|
by: Gary |
last post by:
I'm trying to find a way to determin which window Within-Another-Program
currently has the focus.
THE SITUATION: (Skip down to "My Question" if you don't want the
background...)
* This is...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |