[Dynapi-Help] DHTML Forum / Webboard

2001-07-17 Thread James Head
I'm trying to find an url I have misplaced. A few weeks back I came across a site authored by some people on this mailing list. It is a web-board, or forumn of sorts, that has an interface that is very much like for example, the outlook email client, where you select the post in the top frame/pa

[Dynapi-Help] posting to this list - ettiquite

2001-07-05 Thread James Head
sage being replied to. thanks! James Head ___ Dynapi-Help mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/dynapi-help

RE: [Dynapi-Help] css

2001-06-20 Thread James Head
ctives. Do you have a solution for this? Thanks again, Jonah -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of James Head Sent: Tuesday, June 19, 2001 9:26 PM To: [EMAIL PROTECTED] Subject: RE: [Dynapi-Help] css G'day Below - illustrates a method

RE: [Dynapi-Help] css

2001-06-19 Thread James Head
[-] text being affected by the mayhide class text not affected more text being affected by the mayhide class - - James Head Cortexebusiness.com.au -Original Message- From: Sent: Wednesday, June 20, 2001 1:56 PM Subject: Robert, Thanks for your reply. I d

RE: [Dynapi-Help] first questions

2001-06-07 Thread James Head
> -- In the 'layer.js' file there is a method called getTopZIndex() > Does that have anything to do with it? I don't really get what that > method does... I had a tricky time working out what that method does too. I think the way it works is that it returns the highest Z index of any layer that

RE: [Dynapi-Help] window.onresize

2001-06-01 Thread James Head
Gah! I just realised the code I sent in my very first post to the list worked just fine, and just like this, if I had wrapped java code passed in the setTimeout argument with quotes!!! James -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of James Head

RE: [Dynapi-Help] window.onresize

2001-06-01 Thread James Head
ResID = setTimeout('DoResize();',200); } function DeResize(){ //resizecode. } This will result in anly the LAST resize call being executed. - Original Message ----- From: "James Head" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 3

RE: [Dynapi-Help] print into form element

2001-06-01 Thread James Head
It's fairly simple. have a play with this code as an html file : note the corresponding names between the "name" values in the form and form fields, and with the document.xxx.xxx.value notation. function fill() { document.form326s2.as.value = "here is the text to be inserted"

RE: [Dynapi-Help] window.onresize

2001-05-31 Thread James Head
I tried to implement your suggestion but couldn't get it working, but it did inspire this : window.onresize = fixup; justResized = false; function fixup() { window.setTimeout("qrefresh()",200) } function qrefresh() { if (justResized == false) { window.locati

[Dynapi-Help] window.onresize

2001-05-31 Thread James Head
Guys! I'm trying to write a javascript that will execute an event after an IE user has finished resizing the window. (That is to say, I'm trying to stop the event being executed every pixel the window is resized). Any idea why this is failing miserably? If anyone can think of a different appro