RE: [Dynapi-Help] Resizing Help

2001-02-22 Thread John La
: [Dynapi-Help] Resizing Help Ack!! I've already proven that is not necessary, all you are doing there is re-loading the whole site each time you resize the browser..   This can eat a LOT of ram and crash you computer.   all you have to do is define a function

RE: [Dynapi-Help] Resizing Help

2001-02-20 Thread Pickup, Jordan
OTECTED]]Sent: Tuesday, February 20, 2001 12:11 PMTo: [EMAIL PROTECTED]Subject: Re: [Dynapi-Help] Resizing Help Ack!! I've already proven that is not necessary, all you are doing there is re-loading the whole site each time you resize the browser..   This can eat a LOT of ram

Re: [Dynapi-Help] Resizing Help

2001-02-20 Thread Doug Melvin
function with a delay:   DynAPI.onResize = function() {       setTimeout("MyOnResize();",10);   } - Original Message - From: Michael Pemberton To: [EMAIL PROTECTED] Sent: Tuesday, February 20, 2001 6:58 AM Subject: Re: [Dynapi-Help] Resizing Help

Re: [Dynapi-Help] Resizing Help

2001-02-20 Thread Chad R. Thomson
AM Subject: Re: [Dynapi-Help] Resizing Help make sure you don't have any onresize code in the tag.   Richard Bennett - Original Message - From: Chad R. Thomson To: [EMAIL PROTECTED] Sent: Tuesday, February 20, 2001 4:24 PM Subje

Re: [Dynapi-Help] Resizing Help

2001-02-20 Thread Richard Bennett
make sure you don't have any onresize code in the tag.   Richard Bennett - Original Message - From: Chad R. Thomson To: [EMAIL PROTECTED] Sent: Tuesday, February 20, 2001 4:24 PM Subject: Re: [Dynapi-Help] Resizing Help looks/sounds simple, but stil

Re: [Dynapi-Help] Resizing Help

2001-02-20 Thread Chad R. Thomson
7;m all game.   BTW: Micheal, can you demonstrate the use of 'your' popup file? Chad. - Original Message - From: Michael Pemberton To: [EMAIL PROTECTED] Sent: Tuesday, February 20, 2001 9:58 AM Subject: Re: [Dynapi-Help] Resizing Help DynAPI.onResize =

Re: [Dynapi-Help] Resizing Help

2001-02-20 Thread Michael Pemberton
DynAPI.onResize = DynAPI. { ALL THE CODE THAT CREATES MY YOUR WEBSITE HERE. } simple ain't it? "Chad R. Thomson" wrote: okay, I've read some 'helps' on how to capture the resizing in NS. I've got: DynAPI.onResize = function() { alert('resize') } DynAPI. { ALL THE CODE THAT CREATES MY WEBSITE HERE

[Dynapi-Help] Resizing Help

2001-02-20 Thread Chad R. Thomson
okay, I've read some 'helps' on how to capture the resizing in NS. I've got: DynAPI.onResize = function() { alert('resize') } DynAPI.onLoad = function() { ALL THE CODE THAT CREATES MY WEBSITE HERE. } I'd like to throw all the 'code' into another .js or at least a function, and call it from b