From lists at dbeads.net Sat Mar 1 00:44:34 2003
From: lists at dbeads.net (Dana Hall)
Date: Fri, 28 Feb 2003 22:44:34 -0800
Subject: [Javascript] Re: need script - slideshow with captions
Message-ID: <200303010644.AUD44101@100m.mpr200-1.esr.lvcm.net>
>Just add an array of captions to the script and change the caption
>as you change the image?
I know I would need another array, and thank you for helping me with
the code. Below is the code from my page, but I'm having difficulty
with four lines of the code you gave me:
(1) var document.myImage.src=newimage[n] // whatever it is
(2) var document.getElementById("caption").innetHTML=NewCap[n]
(3)
(4)
I know where 3 and 4 go, in the HTML instead of:
but I can't figure out where 1 and 2 go, instead of what, and if
anything else needs to change. The original script didn't use a
fixed array, so I can use any number or pictures and add more at any
time. So I wrote the caption array the same. as long as each has
the same number of elements it should work. Can some help out here?
thanks
-dana
************************** begin code *******************************
Texas Beaders
Photos from the 4th Annual
Texas Beaders Bead Retreat
From andyg at ihug.co.nz Sat Mar 1 01:47:47 2003
From: andyg at ihug.co.nz (Andrew Gibson)
Date: Sat, 1 Mar 2003 20:47:47 +1300
Subject: [Javascript] Re: need script - slideshow with captions
References: <200303010644.AUD44101@100m.mpr200-1.esr.lvcm.net>
Message-ID: <006a01c2dfc6$da7e63b0$dde6adcb@k1n8i8>
something like this? of course you'd need something in the script to tell
you when you got to the end, or the beginning etc
Not sure if you need the full url of the image, dont think so.
NextBack
>Just add an array of captions to the script and change the caption
>as you change the image?
I know I would need another array, and thank you for helping me with
the code. Below is the code from my page, but I'm having difficulty
with four lines of the code you gave me:
(1) var document.myImage.src=newimage[n] // whatever it is
(2) var document.getElementById("caption").innetHTML=NewCap[n]
(3)
(4)
I know where 3 and 4 go, in the HTML instead of:
but I can't figure out where 1 and 2 go, instead of what, and if
anything else needs to change. The original script didn't use a
fixed array, so I can use any number or pictures and add more at any
time. So I wrote the caption array the same. as long as each has
the same number of elements it should work. Can some help out here?
thanks
-dana
************************** begin code *******************************
Texas Beaders
Photos from the 4th Annual
Texas Beaders Bead Retreat
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From trojani2000 at hotmail.com Sat Mar 1 08:20:46 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Sat, 01 Mar 2003 15:20:46 +0100
Subject: [Javascript] Re: need script - slideshow with captions
Message-ID:
All you need to do is ad another array of caption contents after or before
the img arrays the same way:
NewCapt = new Array (
"this and that",
"caption contents",
"capiton3",
...until the last img caption and u're done
)
And at this line:
document.slideshow.src = NewImg[ImgNum];
ad something like:
caption.innerText = NewCapt[ImgNum];
and inside the HTML before this line:
add the (in style) formated DIV:
The Defalt img caption text
And ure done.
Cheers!
>From: Dana Hall
>Reply-To: javascript at LaTech.edu
>To:
>Subject: [Javascript] Re: need script - slideshow with captions
>Date: Fri, 28 Feb 2003 22:44:34 -0800
>
> >Just add an array of captions to the script and change the caption
> >as you change the image?
>
>I know I would need another array, and thank you for helping me with
>the code. Below is the code from my page, but I'm having difficulty
>with four lines of the code you gave me:
>(1) var document.myImage.src=newimage[n] // whatever it is
>(2) var document.getElementById("caption").innetHTML=NewCap[n]
>
>(3)
>(4)
>
>
>I know where 3 and 4 go, in the HTML instead of:
>
>
>but I can't figure out where 1 and 2 go, instead of what, and if
>anything else needs to change. The original script didn't use a
>fixed array, so I can use any number or pictures and add more at any
>time. So I wrote the caption array the same. as long as each has
>the same number of elements it should work. Can some help out here?
>thanks
>
>-dana
>
>
>************************** begin code *******************************
>
>
>
> Texas Beaders
>
>
>
>
>
>
>
>
>
>
Photos from the 4th Annual
>Texas Beaders Bead Retreat
>
>
>
>
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
From pvogel at righthemisphere.com.au Sun Mar 2 00:54:00 2003
From: pvogel at righthemisphere.com.au (Peter Vogel)
Date: Sun, 02 Mar 2003 17:54:00 +1100
Subject: [Javascript] Newbie dipping toes in water
Message-ID: <20030302173653.86B2.PVOGEL@righthemisphere.com.au>
I want to write a JavaScript that does something like the "copy shortcut"
command in the right-click menu in IE6. That is, I want tto read the
value of the link that was right-clicked before selecting my script from
the right-click menu.
I have managed to do the registry entires to add the item to the menu,
and it executes a file of my choice, however now I need to know where to
find the definitions I will need to use to get the link data from the
displayed html document into my script.
I have found examples that use things like
var win = external.menuArguments;
document.all.location.value = win.location.href;
document.all.location.select();
but can't find where this is all defined/explained.
Thanks for any advice on this.
Peter
From trojani2000 at hotmail.com Sun Mar 2 14:45:13 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Sun, 02 Mar 2003 21:45:13 +0100
Subject: [Javascript] Newbie dipping toes in water
Message-ID:
Hello there,
here is some script I wrote, can help you getting ideas:
Any further questions, -no hasitations, the same forum!
Cheers!
>From: Peter Vogel
>Reply-To: javascript at LaTech.edu
>To: javascript at LaTech.edu
>Subject: [Javascript] Newbie dipping toes in water
>Date: Sun, 02 Mar 2003 17:54:00 +1100
>
>I want to write a JavaScript that does something like the "copy shortcut"
>command in the right-click menu in IE6. That is, I want tto read the
>value of the link that was right-clicked before selecting my script from
>the right-click menu.
>
>I have managed to do the registry entires to add the item to the menu,
>and it executes a file of my choice, however now I need to know where to
>find the definitions I will need to use to get the link data from the
>displayed html document into my script.
>
>I have found examples that use things like
>
>var win = external.menuArguments;
>document.all.location.value = win.location.href;
>document.all.location.select();
>
>but can't find where this is all defined/explained.
>
>Thanks for any advice on this.
>
>Peter
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
Help STOP SPAM with the new MSN 8 and get 2 months FREE*
http://join.msn.com/?page=features/junkmail
From pvogel at righthemisphere.com.au Sun Mar 2 22:10:15 2003
From: pvogel at righthemisphere.com.au (Peter Vogel)
Date: Mon, 03 Mar 2003 15:10:15 +1100
Subject: [Javascript] Newbie dipping toes in water
In-Reply-To:
References:
Message-ID: <20030303150800.86CD.PVOGEL@righthemisphere.com.au>
Thanks for the example. Unfiortunately I couldn't get it to work, and
there were aspects I didn't understand, so I thought I should try
cutting it down to this:
Now i get an error saying "Object required" in line 3.
Could you tell me where I can find details/explanations of the objects
e.g.
window.event.srcElement
Where is there a goiod general Javascript reference site?
Thanks
Peter
On Sun, 02 Mar 2003 21:45:13 +0100
"BEKIM BACAJ" wrote:
> Hello there,
> here is some script I wrote, can help you getting ideas:
>
>
> Any further questions, -no hasitations, the same forum!
>
> Cheers!
>
>
>
> >From: Peter Vogel
> >Reply-To: javascript at LaTech.edu
> >To: javascript at LaTech.edu
> >Subject: [Javascript] Newbie dipping toes in water
> >Date: Sun, 02 Mar 2003 17:54:00 +1100
> >
> >I want to write a JavaScript that does something like the "copy shortcut"
> >command in the right-click menu in IE6. That is, I want tto read the
> >value of the link that was right-clicked before selecting my script from
> >the right-click menu.
> >
> >I have managed to do the registry entires to add the item to the menu,
> >and it executes a file of my choice, however now I need to know where to
> >find the definitions I will need to use to get the link data from the
> >displayed html document into my script.
> >
> >I have found examples that use things like
> >
> >var win = external.menuArguments;
> >document.all.location.value = win.location.href;
> >document.all.location.select();
> >
> >but can't find where this is all defined/explained.
> >
> >Thanks for any advice on this.
> >
> >Peter
> >
> >
> >_______________________________________________
> >Javascript mailing list
> >Javascript at LaTech.edu
> >https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
> _________________________________________________________________
> Help STOP SPAM with the new MSN 8 and get 2 months FREE*
> http://join.msn.com/?page=features/junkmail
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
From hassan at webtuitive.com Sun Mar 2 23:29:07 2003
From: hassan at webtuitive.com (Hassan Schroeder)
Date: Sun, 02 Mar 2003 21:29:07 -0800
Subject: [Javascript] Newbie dipping toes in water
In-Reply-To: <20030303150800.86CD.PVOGEL@righthemisphere.com.au>
References: <20030303150800.86CD.PVOGEL@righthemisphere.com.au>
Message-ID: <3E62E823.4010905@webtuitive.com>
Peter Vogel wrote:
> Where is there a goiod general Javascript reference site?
You might start with the people who created it... :-)
Try
HTH!
--
Hassan Schroeder ----------------------------- hassan at webtuitive.com
Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com
dream. code.
From pvogel at righthemisphere.com.au Mon Mar 3 00:18:24 2003
From: pvogel at righthemisphere.com.au (Peter Vogel)
Date: Mon, 03 Mar 2003 17:18:24 +1100
Subject: [Javascript] Newbie dipping toes in water
In-Reply-To: <3E62E823.4010905@webtuitive.com>
References: <20030303150800.86CD.PVOGEL@righthemisphere.com.au> <3E62E823.4010905@webtuitive.com>
Message-ID: <20030303171536.86E1.PVOGEL@righthemisphere.com.au>
Thank you Hassan - this looks very useful.
I have nopt been able to find refence to the objects that allow
interface to the html document, e.g.
document.oncontextmenu
window.event.srcElement
Thanks
Peter
On Sun, 02 Mar 2003 21:29:07 -0800
Hassan Schroeder wrote:
> Peter Vogel wrote:
>
> > Where is there a goiod general Javascript reference site?
>
> You might start with the people who created it... :-)
> Try
>
>
> HTH!
> --
> Hassan Schroeder ----------------------------- hassan at webtuitive.com
> Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com
>
> dream. code.
>
>
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
From len.dierickx-eds at eds.com Mon Mar 3 00:25:39 2003
From: len.dierickx-eds at eds.com (Dierickx, Len (ESAS))
Date: Mon, 3 Mar 2003 06:25:39 -0000
Subject: [Javascript] Newbie dipping toes in water
Message-ID:
Ithink you're looking for this
MS scripting
http://msdn.microsoft.com/library/default.asp?url=/nhp/Default.asp?contentid
=28001169
oncontextmenu
http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/mshtml/r
eference/events/htmlanchorevents/oncontextmenu.asp
Looks like IE only objects.
Len
-----Original Message-----
From: Peter Vogel [mailto:pvogel at righthemisphere.com.au]
Sent: maandag 3 maart 2003 7:18
To: javascript at LaTech.edu
Subject: Re: [Javascript] Newbie dipping toes in water
Thank you Hassan - this looks very useful.
I have nopt been able to find refence to the objects that allow
interface to the html document, e.g.
document.oncontextmenu
window.event.srcElement
Thanks
Peter
On Sun, 02 Mar 2003 21:29:07 -0800
Hassan Schroeder wrote:
> Peter Vogel wrote:
>
> > Where is there a goiod general Javascript reference site?
>
> You might start with the people who created it... :-)
> Try
>
>
> HTH!
> --
> Hassan Schroeder ----------------------------- hassan at webtuitive.com
> Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com
>
> dream. code.
>
>
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From iztokp at amis.net Mon Mar 3 05:13:23 2003
From: iztokp at amis.net (Iztok Polanic)
Date: Mon, 3 Mar 2003 12:13:23 +0100
Subject: [Javascript] encodinf JS
Message-ID: <000501c2e175$e7b55880$0201a8c0@flasher>
Hi!
I just saw a page with encoded tag. Can this be done? And
how?
Bye,
Iztok
From ddibartolomeo at dciu.org Mon Mar 3 12:57:13 2003
From: ddibartolomeo at dciu.org (DiBartolomeo, Donna)
Date: Mon, 3 Mar 2003 13:57:13 -0500
Subject: [Javascript] Confirmation that an email has been received.
Message-ID: <8DF671A8B5D58D47A8C49DD28D7CC45B010008FA@IU_ADM3>
Help! I need help to create a script that sends a confirmation page not
only when it is submitted successfully (this code I can create), but also
when the form mailto: recipient has received the email. Is this possible?
Thank you,
DonnaD
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From ChrisNikonowicz at metaldyne.com Mon Mar 3 13:28:55 2003
From: ChrisNikonowicz at metaldyne.com (Nikonowicz, Chris)
Date: Mon, 3 Mar 2003 14:28:55 -0500
Subject: [Javascript] Input Mask
Message-ID:
I saw your question on the internet. I am having the same problem could you be of help. Thanks
From ChrisNikonowicz at metaldyne.com Mon Mar 3 13:32:23 2003
From: ChrisNikonowicz at metaldyne.com (Nikonowicz, Chris)
Date: Mon, 3 Mar 2003 14:32:23 -0500
Subject: [Javascript] Input Mask
Message-ID:
Is there anyone who could help me create a input mask for a one-line text box on an asp page i am using on an intranet. I need to use this much the same way you would use one in Micorsoft Access.
Thanks
From iztokp at amis.net Mon Mar 3 14:06:55 2003
From: iztokp at amis.net (Iztok Polanic)
Date: Mon, 3 Mar 2003 21:06:55 +0100
Subject: [Javascript] Input Mask
References:
Message-ID: <001a01c2e1c0$75083dc0$0201a8c0@flasher>
Hi!
Bye,
Iztok
----- Original Message -----
From: "Nikonowicz, Chris"
To:
Sent: Monday, March 03, 2003 8:32 PM
Subject: [Javascript] Input Mask
Is there anyone who could help me create a input mask for a one-line text
box on an asp page i am using on an intranet. I need to use this much the
same way you would use one in Micorsoft Access.
Thanks
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From trojani2000 at hotmail.com Mon Mar 3 15:55:44 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Mon, 03 Mar 2003 22:55:44 +0100
Subject: [Javascript] Newbie dipping toes in water
Message-ID:
Sorry, the comment line might have break in two lines and caused the error.
I've tested the script and the cript does display an alertBox with the HREF
addres. I will give it once again without comments. Copy and paste it into
an any html text document that contains Ancors and right-clik on them. I'm
convinced that you will get that links text previewed into the alertBox.
After you get it to work, we can talk about the implementation, into you'r
script, but first, I too must se the handler you're using. For getting it to
be displayed in the menu. You can also try alert(itsAncor.href) and get the
same result.
If once again this does not display the alert box with ancors path in it,
the best way to solve this, is for you sending us the base script you're
using and see what the problem is,-might also be the case that you've used
this local variable 'itsAncor' in global manner. The value of itsAncor lives
and dies while exec of the getHREF function only. You must include the
commands of the menu inside this function, or make this value available in
some other global var like in this modified script:
P.S.
-Copy only the text inside the tags and put it inside
you'r existing script Tags of the document.
Regards!
>From: Peter Vogel
>Reply-To: javascript at LaTech.edu
>To: javascript at LaTech.edu
>Subject: Re: [Javascript] Newbie dipping toes in water
>Date: Mon, 03 Mar 2003 15:10:15 +1100
>
>Thanks for the example. Unfiortunately I couldn't get it to work, and
>there were aspects I didn't understand, so I thought I should try
>cutting it down to this:
>
>
>
>
>
>Now i get an error saying "Object required" in line 3.
>
>Could you tell me where I can find details/explanations of the objects
>e.g.
>window.event.srcElement
>
>Where is there a goiod general Javascript reference site?
>
>Thanks
>
>Peter
>
>On Sun, 02 Mar 2003 21:45:13 +0100
>"BEKIM BACAJ" wrote:
>
> > Hello there,
> > here is some script I wrote, can help you getting ideas:
> >
> >
> > Any further questions, -no hasitations, the same forum!
> >
> > Cheers!
> >
> >
> >
> > >From: Peter Vogel
> > >Reply-To: javascript at LaTech.edu
> > >To: javascript at LaTech.edu
> > >Subject: [Javascript] Newbie dipping toes in water
> > >Date: Sun, 02 Mar 2003 17:54:00 +1100
> > >
> > >I want to write a JavaScript that does something like the "copy
>shortcut"
> > >command in the right-click menu in IE6. That is, I want tto read the
> > >value of the link that was right-clicked before selecting my script
>from
> > >the right-click menu.
> > >
> > >I have managed to do the registry entires to add the item to the menu,
> > >and it executes a file of my choice, however now I need to know where
>to
> > >find the definitions I will need to use to get the link data from the
> > >displayed html document into my script.
> > >
> > >I have found examples that use things like
> > >
> > >var win = external.menuArguments;
> > >document.all.location.value = win.location.href;
> > >document.all.location.select();
> > >
> > >but can't find where this is all defined/explained.
> > >
> > >Thanks for any advice on this.
> > >
> > >Peter
> > >
> > >
> > >_______________________________________________
> > >Javascript mailing list
> > >Javascript at LaTech.edu
> > >https://lists.LaTech.edu/mailman/listinfo/javascript
> >
> >
> > _________________________________________________________________
> > Help STOP SPAM with the new MSN 8 and get 2 months FREE*
> > http://join.msn.com/?page=features/junkmail
> >
> > _______________________________________________
> > Javascript mailing list
> > Javascript at LaTech.edu
> > https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
Tired of spam? Get advanced junk mail protection with MSN 8.
http://join.msn.com/?page=features/junkmail
From pvogel at righthemisphere.com.au Mon Mar 3 16:10:08 2003
From: pvogel at righthemisphere.com.au (Peter Vogel)
Date: Tue, 04 Mar 2003 09:10:08 +1100
Subject: [Javascript] Newbie dipping toes in water
In-Reply-To:
References:
Message-ID: <20030304090242.919B.PVOGEL@righthemisphere.com.au>
Your script does work when placed in an html document.
Perhaps the problem is this: I'm not putting the script in
an html page, I am running the script from a local file and
calling it via an extra entry in the right-click context
menu of IE. I have added the menu entry using the registry
editor, and when I select the new option from the
right-click menu it correctly executes the script.
The problem is I can't find out how to pass the script the
link that was clicked on.
Thanks again
Peter
On Mon, 03 Mar 2003 22:55:44 +0100
"BEKIM BACAJ" wrote:
>
> Sorry, the comment line might have break in two lines and caused the error.
> I've tested the script and the cript does display an alertBox with the HREF
> addres. I will give it once again without comments. Copy and paste it into
> an any html text document that contains Ancors and right-clik on them. I'm
> convinced that you will get that links text previewed into the alertBox.
>
> After you get it to work, we can talk about the implementation, into you'r
> script, but first, I too must se the handler you're using. For getting it to
> be displayed in the menu. You can also try alert(itsAncor.href) and get the
> same result.
> If once again this does not display the alert box with ancors path in it,
> the best way to solve this, is for you sending us the base script you're
> using and see what the problem is,-might also be the case that you've used
> this local variable 'itsAncor' in global manner. The value of itsAncor lives
> and dies while exec of the getHREF function only. You must include the
> commands of the menu inside this function, or make this value available in
> some other global var like in this modified script:
>
>
> P.S.
>
> -Copy only the text inside the tags and put it inside
> you'r existing script Tags of the document.
>
> Regards!
>
>
>
>
>
> >From: Peter Vogel
> >Reply-To: javascript at LaTech.edu
> >To: javascript at LaTech.edu
> >Subject: Re: [Javascript] Newbie dipping toes in water
> >Date: Mon, 03 Mar 2003 15:10:15 +1100
> >
> >Thanks for the example. Unfiortunately I couldn't get it to work, and
> >there were aspects I didn't understand, so I thought I should try
> >cutting it down to this:
> >
> >
> >
> >
> >
> >Now i get an error saying "Object required" in line 3.
> >
> >Could you tell me where I can find details/explanations of the objects
> >e.g.
> >window.event.srcElement
> >
> >Where is there a goiod general Javascript reference site?
> >
> >Thanks
> >
> >Peter
> >
> >On Sun, 02 Mar 2003 21:45:13 +0100
> >"BEKIM BACAJ" wrote:
> >
> > > Hello there,
> > > here is some script I wrote, can help you getting ideas:
> > >
> > >
> > > Any further questions, -no hasitations, the same forum!
> > >
> > > Cheers!
> > >
> > >
> > >
> > > >From: Peter Vogel
> > > >Reply-To: javascript at LaTech.edu
> > > >To: javascript at LaTech.edu
> > > >Subject: [Javascript] Newbie dipping toes in water
> > > >Date: Sun, 02 Mar 2003 17:54:00 +1100
> > > >
> > > >I want to write a JavaScript that does something like the "copy
> >shortcut"
> > > >command in the right-click menu in IE6. That is, I want tto read the
> > > >value of the link that was right-clicked before selecting my script
> >from
> > > >the right-click menu.
> > > >
> > > >I have managed to do the registry entires to add the item to the menu,
> > > >and it executes a file of my choice, however now I need to know where
> >to
> > > >find the definitions I will need to use to get the link data from the
> > > >displayed html document into my script.
> > > >
> > > >I have found examples that use things like
> > > >
> > > >var win = external.menuArguments;
> > > >document.all.location.value = win.location.href;
> > > >document.all.location.select();
> > > >
> > > >but can't find where this is all defined/explained.
> > > >
> > > >Thanks for any advice on this.
> > > >
> > > >Peter
> > > >
> > > >
> > > >_______________________________________________
> > > >Javascript mailing list
> > > >Javascript at LaTech.edu
> > > >https://lists.LaTech.edu/mailman/listinfo/javascript
> > >
> > >
> > > _________________________________________________________________
> > > Help STOP SPAM with the new MSN 8 and get 2 months FREE*
> > > http://join.msn.com/?page=features/junkmail
> > >
> > > _______________________________________________
> > > Javascript mailing list
> > > Javascript at LaTech.edu
> > > https://lists.LaTech.edu/mailman/listinfo/javascript
> >
> >
> >_______________________________________________
> >Javascript mailing list
> >Javascript at LaTech.edu
> >https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
> _________________________________________________________________
> Tired of spam? Get advanced junk mail protection with MSN 8.
> http://join.msn.com/?page=features/junkmail
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
From LMuchacho at twii.net Tue Mar 4 07:33:02 2003
From: LMuchacho at twii.net (Muchacho, Laurent (TWIi London))
Date: Tue, 4 Mar 2003 13:33:02 -0000
Subject: [Javascript] Re: need script - slideshow with captions
Message-ID:
Hi
Sorry to cut everyone short but you all trying to complicate your life with
2 array or trying to store data with this kind of process
ok everyone thought of the array what is a good thing but you don't need a
seconde one for the caption because if you want to add a alt text to your
image or a link to an other page you will need to create new array and after
a will your code will be completely unmaintainable, What you need is to
store an object in your array
I built this small examples with all you need this work only on IE but the
logic should drive you in better direction
http://www.elmuchacho.com/examples/slidde_show/default.asp
Laurent
-----Original Message-----
From: BEKIM BACAJ [mailto:trojani2000 at hotmail.com]
Sent: 01 March 2003 14:21
To: javascript at LaTech.edu
Subject: Re: [Javascript] Re: need script - slideshow with captions
All you need to do is ad another array of caption contents after or before
the img arrays the same way:
NewCapt = new Array (
"this and that",
"caption contents",
"capiton3",
...until the last img caption and u're done
)
And at this line:
document.slideshow.src = NewImg[ImgNum];
ad something like:
caption.innerText = NewCapt[ImgNum];
and inside the HTML before this line:
add the (in style) formated DIV:
The Defalt img caption text
And ure done.
Cheers!
>From: Dana Hall
>Reply-To: javascript at LaTech.edu
>To:
>Subject: [Javascript] Re: need script - slideshow with captions
>Date: Fri, 28 Feb 2003 22:44:34 -0800
>
> >Just add an array of captions to the script and change the caption
> >as you change the image?
>
>I know I would need another array, and thank you for helping me with
>the code. Below is the code from my page, but I'm having difficulty
>with four lines of the code you gave me:
>(1) var document.myImage.src=newimage[n] // whatever it is
>(2) var document.getElementById("caption").innetHTML=NewCap[n]
>
>(3)
>(4)
>
>
>I know where 3 and 4 go, in the HTML instead of:
>
>
>but I can't figure out where 1 and 2 go, instead of what, and if
>anything else needs to change. The original script didn't use a
>fixed array, so I can use any number or pictures and add more at any
>time. So I wrote the caption array the same. as long as each has
>the same number of elements it should work. Can some help out here?
>thanks
>
>-dana
>
>
>************************** begin code *******************************
>
>
>
> Texas Beaders
>
>
>
>
>
>
>
>
>
>
Photos from the 4th Annual
>Texas Beaders Bead Retreat
>
>
>
>
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
DISCLAIMER - The preceding e-mail message (including any attachments)
contains information that may be confidential, may be protected by the
attorney-client or other applicable privileges, or may constitute non-public
information. It is intended to be conveyed only to the designated
recipient(s) named above. If you are not an intended recipient of this
message, or have otherwise received it in error, please notify the sender by
replying to this message and then delete all copies of it from your computer
system. Any use, dissemination, distribution, or reproduction of this
message by unintended recipients is not authorized and may be unlawful. The
contents of this communication do not necessarily represent the views of
this company.
From ddibartolomeo at dciu.org Tue Mar 4 08:48:58 2003
From: ddibartolomeo at dciu.org (DiBartolomeo, Donna)
Date: Tue, 4 Mar 2003 09:48:58 -0500
Subject: [Javascript] Confirmation that an email has been received.
Message-ID: <8DF671A8B5D58D47A8C49DD28D7CC45B010008FC@IU_ADM3>
It would be an online form (requiring the user's email address) and being
sent to one person. So...it cannot be done with javascript (I didn't think
it could, but I thought I would ask anyway) - it would have to be set up in
the user's email options, not the recipients, right?
-----Original Message-----
From: Mark [mailto:mark_weinstock at yahoo.com]
Sent: Tuesday, March 04, 2003 9:53 AM
To: javascript at LaTech.edu
Subject: Re: [Javascript] Confirmation that an email has been received.
The only way I can imagine this working is if you find out how the
"received receipt" is flagged. You won't be able to display it via
web page, though, since the receipt is a return email message, which
you can't really check (AFAIK) with Javascript. Besides, what if the
person isn't online, or isn't checking email?
You'd have to set the received receipt flag somehow, and have the
return receipt go to the sender's email account. And even then, who
is the sender? Is it the user (will they have to put in their email
address somewhere?), is it the account sending the form data?
--- "DiBartolomeo, Donna" wrote:
> Help! I need help to create a script that sends a confirmation
> page not
> only when it is submitted successfully (this code I can create),
> but also
> when the form mailto: recipient has received the email. Is this
> possible?
>
>
>
> Thank you,
>
> DonnaD
>
>
=====
Mark Weinstock
mark_weinstock at yahoo.com
***************************************
You can't demand something as a "right" unless you are willing to fight to
death to defend everyone else's right to the same thing.
***************************************
__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From mark_weinstock at yahoo.com Tue Mar 4 08:52:47 2003
From: mark_weinstock at yahoo.com (Mark)
Date: Tue, 4 Mar 2003 06:52:47 -0800 (PST)
Subject: [Javascript] Confirmation that an email has been received.
In-Reply-To: <8DF671A8B5D58D47A8C49DD28D7CC45B010008FA@IU_ADM3>
Message-ID: <20030304145247.43662.qmail@web41211.mail.yahoo.com>
The only way I can imagine this working is if you find out how the
"received receipt" is flagged. You won't be able to display it via
web page, though, since the receipt is a return email message, which
you can't really check (AFAIK) with Javascript. Besides, what if the
person isn't online, or isn't checking email?
You'd have to set the received receipt flag somehow, and have the
return receipt go to the sender's email account. And even then, who
is the sender? Is it the user (will they have to put in their email
address somewhere?), is it the account sending the form data?
--- "DiBartolomeo, Donna" wrote:
> Help! I need help to create a script that sends a confirmation
> page not
> only when it is submitted successfully (this code I can create),
> but also
> when the form mailto: recipient has received the email. Is this
> possible?
>
>
>
> Thank you,
>
> DonnaD
>
>
=====
Mark Weinstock
mark_weinstock at yahoo.com
***************************************
You can't demand something as a "right" unless you are willing to fight to death to defend everyone else's right to the same thing.
***************************************
__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/
From trojani2000 at hotmail.com Tue Mar 4 16:42:34 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Tue, 04 Mar 2003 23:42:34 +0100
Subject: [Javascript] Newbie dipping toes in water
Message-ID:
Well, in that case you will have to share some of you'r code with us!?
The problem is that if one does not know in what environment you are calling
the function, -into what host applicaton, -from what external file, (if it's
a *.js there is no change, the script should work even if it is externaly
implemented but on top of some html document into IE environment nowhere
else).
Sugestion if the host application you're using can handle strings you can
paste them from this function, simply calling theLocation variable.
Otherwise, there's no way one can help you even if he/she knows the answer
without being able to see the targeted code.
Regards!
>From: Peter Vogel
>Reply-To: javascript at LaTech.edu
>To: javascript at LaTech.edu
>Subject: Re: [Javascript] Newbie dipping toes in water
>Date: Tue, 04 Mar 2003 09:10:08 +1100
>
>Your script does work when placed in an html document.
>
>Perhaps the problem is this: I'm not putting the script in
>an html page, I am running the script from a local file and
>calling it via an extra entry in the right-click context
>menu of IE. I have added the menu entry using the registry
>editor, and when I select the new option from the
>right-click menu it correctly executes the script.
>
>The problem is I can't find out how to pass the script the
>link that was clicked on.
>
>Thanks again
>
>Peter
>
>On Mon, 03 Mar 2003 22:55:44 +0100
>"BEKIM BACAJ" wrote:
>
> >
> > Sorry, the comment line might have break in two lines and caused the
>error.
> > I've tested the script and the cript does display an alertBox with the
>HREF
> > addres. I will give it once again without comments. Copy and paste it
>into
> > an any html text document that contains Ancors and right-clik on them.
>I'm
> > convinced that you will get that links text previewed into the alertBox.
> >
> > After you get it to work, we can talk about the implementation, into
>you'r
> > script, but first, I too must se the handler you're using. For getting
>it to
> > be displayed in the menu. You can also try alert(itsAncor.href) and get
>the
> > same result.
> > If once again this does not display the alert box with ancors path in
>it,
> > the best way to solve this, is for you sending us the base script you're
> > using and see what the problem is,-might also be the case that you've
>used
> > this local variable 'itsAncor' in global manner. The value of itsAncor
>lives
> > and dies while exec of the getHREF function only. You must include the
> > commands of the menu inside this function, or make this value available
>in
> > some other global var like in this modified script:
> >
> >
> > P.S.
> >
> > -Copy only the text inside the tags and put it inside
> > you'r existing script Tags of the document.
> >
> > Regards!
> >
> >
> >
> >
> >
> > >From: Peter Vogel
> > >Reply-To: javascript at LaTech.edu
> > >To: javascript at LaTech.edu
> > >Subject: Re: [Javascript] Newbie dipping toes in water
> > >Date: Mon, 03 Mar 2003 15:10:15 +1100
> > >
> > >Thanks for the example. Unfiortunately I couldn't get it to work, and
> > >there were aspects I didn't understand, so I thought I should try
> > >cutting it down to this:
> > >
> > >
> > >
> > >
> > >
> > >Now i get an error saying "Object required" in line 3.
> > >
> > >Could you tell me where I can find details/explanations of the objects
> > >e.g.
> > >window.event.srcElement
> > >
> > >Where is there a goiod general Javascript reference site?
> > >
> > >Thanks
> > >
> > >Peter
> > >
> > >On Sun, 02 Mar 2003 21:45:13 +0100
> > >"BEKIM BACAJ" wrote:
> > >
> > > > Hello there,
> > > > here is some script I wrote, can help you getting ideas:
> > > >
> > > >
> > > > Any further questions, -no hasitations, the same forum!
> > > >
> > > > Cheers!
> > > >
> > > >
> > > >
> > > > >From: Peter Vogel
> > > > >Reply-To: javascript at LaTech.edu
> > > > >To: javascript at LaTech.edu
> > > > >Subject: [Javascript] Newbie dipping toes in water
> > > > >Date: Sun, 02 Mar 2003 17:54:00 +1100
> > > > >
> > > > >I want to write a JavaScript that does something like the "copy
> > >shortcut"
> > > > >command in the right-click menu in IE6. That is, I want tto read
>the
> > > > >value of the link that was right-clicked before selecting my script
> > >from
> > > > >the right-click menu.
> > > > >
> > > > >I have managed to do the registry entires to add the item to the
>menu,
> > > > >and it executes a file of my choice, however now I need to know
>where
> > >to
> > > > >find the definitions I will need to use to get the link data from
>the
> > > > >displayed html document into my script.
> > > > >
> > > > >I have found examples that use things like
> > > > >
> > > > >var win = external.menuArguments;
> > > > >document.all.location.value = win.location.href;
> > > > >document.all.location.select();
> > > > >
> > > > >but can't find where this is all defined/explained.
> > > > >
> > > > >Thanks for any advice on this.
> > > > >
> > > > >Peter
> > > > >
> > > > >
> > > > >_______________________________________________
> > > > >Javascript mailing list
> > > > >Javascript at LaTech.edu
> > > > >https://lists.LaTech.edu/mailman/listinfo/javascript
> > > >
> > > >
> > > > _________________________________________________________________
> > > > Help STOP SPAM with the new MSN 8 and get 2 months FREE*
> > > > http://join.msn.com/?page=features/junkmail
> > > >
> > > > _______________________________________________
> > > > Javascript mailing list
> > > > Javascript at LaTech.edu
> > > > https://lists.LaTech.edu/mailman/listinfo/javascript
> > >
> > >
> > >_______________________________________________
> > >Javascript mailing list
> > >Javascript at LaTech.edu
> > >https://lists.LaTech.edu/mailman/listinfo/javascript
> >
> >
> > _________________________________________________________________
> > Tired of spam? Get advanced junk mail protection with MSN 8.
> > http://join.msn.com/?page=features/junkmail
> >
> > _______________________________________________
> > Javascript mailing list
> > Javascript at LaTech.edu
> > https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
The new MSN 8: smart spam protection and 2 months FREE*
http://join.msn.com/?page=features/junkmail
From sjsnow at ozconnect.net Tue Mar 4 16:53:16 2003
From: sjsnow at ozconnect.net (Steve Snow)
Date: Wed, 5 Mar 2003 08:23:16 +0930
Subject: [Javascript] Re: need script - slideshow with captions
In-Reply-To:
Message-ID:
The slide show is brilliant. I would like to use the concept in a teaching
sense - the caption would need to be about 1-2 paragraphs in length. The
script does not seem to like the broken lines so how do I represent a "line
feed" without breaking the whole paragraph.
Here is an example of what I am trying to do with your (Muchacho) idea, and
I am getting a "expected ')' error.
This is directly from your example - the "caption" part of the function ends
at the word "bursting" with alt2 being "radiosonde". The links will be
modified.
Firstly, am I able to use paragraphs of info in lieu of a simple caption and
if so, how would I link it together so it is seen by the function as a valid
"caption"?
Thanks.
var myImage=new Array()
myImage[0]=new img('bureau1.jpg','Gove Meteorological Office Building','Gove
Meteorological Office','http://www.google.com/')
myImage[1]=new img('sfty.gif','Every 6 hours, commencing at 2315Z, a
meteorological balloon is released from each of Australia's Meteorological
Offices.
(This time corresponds to release times throughout the world so that a
true representation of the upper atmosphere can be gained). The balloons,
or rather, their triangular aluminium targets tied beneath them, are tracked
by radar to heights of up to 29,000 metres (almost 100,000ft or 12hPa)
before bursting and returning back to earth. As the balloon rises, wind
speed and direction is calculated every
ten seconds for use in the preparation of forecasts and as an aid to
aviation traffic. Ordinarily a 100gram balloon is used in tandem with a
polystyrene target covered with aluminium foil to obtain winds up to
approximately 20,000 metres. At 2315Z however, a 350gram balloon is used
and a Vaisala RS80 Radiosonde is attached below the target. The radiosonde
contains a small transmitter that transmits data about temperature, humidity
and pressure back to a computer at the station so that an accurate
representation of the atmosphere can be obtained. Due to the decreasing
atmospheric pressure as the balloon rises, these 350gram balloons will
expand to the size of a small house before
bursting.','radiosonde','http://www.hotmail.com/')
-----Original Message-----
From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu]On
Behalf Of Muchacho, Laurent (TWIi London)
Sent: Tuesday, 4 March 2003 11:03 PM
To: 'javascript at LaTech.edu'
Subject: RE: [Javascript] Re: need script - slideshow with captions
Hi
Sorry to cut everyone short but you all trying to complicate your life with
2 array or trying to store data with this kind of process
ok everyone thought of the array what is a good thing but you don't need a
seconde one for the caption because if you want to add a alt text to your
image or a link to an other page you will need to create new array and after
a will your code will be completely unmaintainable, What you need is to
store an object in your array
I built this small examples with all you need this work only on IE but the
logic should drive you in better direction
http://www.elmuchacho.com/examples/slidde_show/default.asp
Laurent
-----Original Message-----
From: BEKIM BACAJ [mailto:trojani2000 at hotmail.com]
Sent: 01 March 2003 14:21
To: javascript at LaTech.edu
Subject: Re: [Javascript] Re: need script - slideshow with captions
All you need to do is ad another array of caption contents after or before
the img arrays the same way:
NewCapt = new Array (
"this and that",
"caption contents",
"capiton3",
...until the last img caption and u're done
)
And at this line:
document.slideshow.src = NewImg[ImgNum];
ad something like:
caption.innerText = NewCapt[ImgNum];
and inside the HTML before this line:
add the (in style) formated DIV:
The Defalt img caption text
And ure done.
Cheers!
>From: Dana Hall
>Reply-To: javascript at LaTech.edu
>To:
>Subject: [Javascript] Re: need script - slideshow with captions
>Date: Fri, 28 Feb 2003 22:44:34 -0800
>
> >Just add an array of captions to the script and change the caption
> >as you change the image?
>
>I know I would need another array, and thank you for helping me with
>the code. Below is the code from my page, but I'm having difficulty
>with four lines of the code you gave me:
>(1) var document.myImage.src=newimage[n] // whatever it is
>(2) var document.getElementById("caption").innetHTML=NewCap[n]
>
>(3)
>(4)
>
>
>I know where 3 and 4 go, in the HTML instead of:
>
>
>but I can't figure out where 1 and 2 go, instead of what, and if
>anything else needs to change. The original script didn't use a
>fixed array, so I can use any number or pictures and add more at any
>time. So I wrote the caption array the same. as long as each has
>the same number of elements it should work. Can some help out here?
>thanks
>
>-dana
>
>
>************************** begin code *******************************
>
>
>
> Texas Beaders
>
>
>
>
>
>
>
>
>
>
Photos from the 4th Annual
>Texas Beaders Bead Retreat
>
>
>
>
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
DISCLAIMER - The preceding e-mail message (including any attachments)
contains information that may be confidential, may be protected by the
attorney-client or other applicable privileges, or may constitute non-public
information. It is intended to be conveyed only to the designated
recipient(s) named above. If you are not an intended recipient of this
message, or have otherwise received it in error, please notify the sender by
replying to this message and then delete all copies of it from your computer
system. Any use, dissemination, distribution, or reproduction of this
message by unintended recipients is not authorized and may be unlawful. The
contents of this communication do not necessarily represent the views of
this company.
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From pvogel at righthemisphere.com.au Tue Mar 4 17:03:22 2003
From: pvogel at righthemisphere.com.au (Peter Vogel)
Date: Wed, 05 Mar 2003 10:03:22 +1100
Subject: [Javascript] Newbie dipping toes in water
In-Reply-To:
References:
Message-ID: <20030305095529.9215.PVOGEL@righthemisphere.com.au>
Thanks for your reply.
I don't know if I have explained myself clearly. There is
no code which is mine. There is no host application.
Here's what I'm trying to do.
I have added a context menu item in IE, say "SHOW URL". The
registry points this to a file, say C:\winnt\showurl.htm
Then, I am browsing any site, I right-click on a link, and
along with the usual "open link", "open in new window", I
get a choice "SHOW URL". If I click on this it executes my
little script "showurl.htm", which is where I get stuck!
I hope this explains what I need...
On Tue, 04 Mar 2003 23:42:34 +0100
"BEKIM BACAJ" wrote:
> Well, in that case you will have to share some of you'r code with us!?
> The problem is that if one does not know in what environment you are calling
> the function, -into what host applicaton, -from what external file, (if it's
> a *.js there is no change, the script should work even if it is externaly
> implemented but on top of some html document into IE environment nowhere
> else).
> Sugestion if the host application you're using can handle strings you can
> paste them from this function, simply calling theLocation variable.
> Otherwise, there's no way one can help you even if he/she knows the answer
> without being able to see the targeted code.
>
> Regards!
>
>
>
>
> >From: Peter Vogel
> >Reply-To: javascript at LaTech.edu
> >To: javascript at LaTech.edu
> >Subject: Re: [Javascript] Newbie dipping toes in water
> >Date: Tue, 04 Mar 2003 09:10:08 +1100
> >
> >Your script does work when placed in an html document.
> >
> >Perhaps the problem is this: I'm not putting the script in
> >an html page, I am running the script from a local file and
> >calling it via an extra entry in the right-click context
> >menu of IE. I have added the menu entry using the registry
> >editor, and when I select the new option from the
> >right-click menu it correctly executes the script.
> >
> >The problem is I can't find out how to pass the script the
> >link that was clicked on.
> >
> >Thanks again
> >
> >Peter
> >
> >On Mon, 03 Mar 2003 22:55:44 +0100
> >"BEKIM BACAJ" wrote:
> >
> > >
> > > Sorry, the comment line might have break in two lines and caused the
> >error.
> > > I've tested the script and the cript does display an alertBox with the
> >HREF
> > > addres. I will give it once again without comments. Copy and paste it
> >into
> > > an any html text document that contains Ancors and right-clik on them.
> >I'm
> > > convinced that you will get that links text previewed into the alertBox.
> > >
> > > After you get it to work, we can talk about the implementation, into
> >you'r
> > > script, but first, I too must se the handler you're using. For getting
> >it to
> > > be displayed in the menu. You can also try alert(itsAncor.href) and get
> >the
> > > same result.
> > > If once again this does not display the alert box with ancors path in
> >it,
> > > the best way to solve this, is for you sending us the base script you're
> > > using and see what the problem is,-might also be the case that you've
> >used
> > > this local variable 'itsAncor' in global manner. The value of itsAncor
> >lives
> > > and dies while exec of the getHREF function only. You must include the
> > > commands of the menu inside this function, or make this value available
> >in
> > > some other global var like in this modified script:
> > >
> > >
> > > P.S.
> > >
> > > -Copy only the text inside the tags and put it inside
> > > you'r existing script Tags of the document.
> > >
> > > Regards!
> > >
> > >
> > >
> > >
> > >
> > > >From: Peter Vogel
> > > >Reply-To: javascript at LaTech.edu
> > > >To: javascript at LaTech.edu
> > > >Subject: Re: [Javascript] Newbie dipping toes in water
> > > >Date: Mon, 03 Mar 2003 15:10:15 +1100
> > > >
> > > >Thanks for the example. Unfiortunately I couldn't get it to work, and
> > > >there were aspects I didn't understand, so I thought I should try
> > > >cutting it down to this:
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >Now i get an error saying "Object required" in line 3.
> > > >
> > > >Could you tell me where I can find details/explanations of the objects
> > > >e.g.
> > > >window.event.srcElement
> > > >
> > > >Where is there a goiod general Javascript reference site?
> > > >
> > > >Thanks
> > > >
> > > >Peter
> > > >
> > > >On Sun, 02 Mar 2003 21:45:13 +0100
> > > >"BEKIM BACAJ" wrote:
> > > >
> > > > > Hello there,
> > > > > here is some script I wrote, can help you getting ideas:
> > > > >
> > > > >
> > > > > Any further questions, -no hasitations, the same forum!
> > > > >
> > > > > Cheers!
> > > > >
> > > > >
> > > > >
> > > > > >From: Peter Vogel
> > > > > >Reply-To: javascript at LaTech.edu
> > > > > >To: javascript at LaTech.edu
> > > > > >Subject: [Javascript] Newbie dipping toes in water
> > > > > >Date: Sun, 02 Mar 2003 17:54:00 +1100
> > > > > >
> > > > > >I want to write a JavaScript that does something like the "copy
> > > >shortcut"
> > > > > >command in the right-click menu in IE6. That is, I want tto read
> >the
> > > > > >value of the link that was right-clicked before selecting my script
> > > >from
> > > > > >the right-click menu.
> > > > > >
> > > > > >I have managed to do the registry entires to add the item to the
> >menu,
> > > > > >and it executes a file of my choice, however now I need to know
> >where
> > > >to
> > > > > >find the definitions I will need to use to get the link data from
> >the
> > > > > >displayed html document into my script.
> > > > > >
> > > > > >I have found examples that use things like
> > > > > >
> > > > > >var win = external.menuArguments;
> > > > > >document.all.location.value = win.location.href;
> > > > > >document.all.location.select();
> > > > > >
> > > > > >but can't find where this is all defined/explained.
> > > > > >
> > > > > >Thanks for any advice on this.
> > > > > >
> > > > > >Peter
> > > > > >
> > > > > >
> > > > > >_______________________________________________
> > > > > >Javascript mailing list
> > > > > >Javascript at LaTech.edu
> > > > > >https://lists.LaTech.edu/mailman/listinfo/javascript
> > > > >
> > > > >
> > > > > _________________________________________________________________
> > > > > Help STOP SPAM with the new MSN 8 and get 2 months FREE*
> > > > > http://join.msn.com/?page=features/junkmail
> > > > >
> > > > > _______________________________________________
> > > > > Javascript mailing list
> > > > > Javascript at LaTech.edu
> > > > > https://lists.LaTech.edu/mailman/listinfo/javascript
> > > >
> > > >
> > > >_______________________________________________
> > > >Javascript mailing list
> > > >Javascript at LaTech.edu
> > > >https://lists.LaTech.edu/mailman/listinfo/javascript
> > >
> > >
> > > _________________________________________________________________
> > > Tired of spam? Get advanced junk mail protection with MSN 8.
> > > http://join.msn.com/?page=features/junkmail
> > >
> > > _______________________________________________
> > > Javascript mailing list
> > > Javascript at LaTech.edu
> > > https://lists.LaTech.edu/mailman/listinfo/javascript
> >
> >
> >_______________________________________________
> >Javascript mailing list
> >Javascript at LaTech.edu
> >https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
> _________________________________________________________________
> The new MSN 8: smart spam protection and 2 months FREE*
> http://join.msn.com/?page=features/junkmail
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
From sjsnow at ozconnect.net Tue Mar 4 17:10:22 2003
From: sjsnow at ozconnect.net (Steve Snow)
Date: Wed, 5 Mar 2003 08:40:22 +0930
Subject: [Javascript] Re: need script - slideshow with captions
In-Reply-To:
Message-ID:
Problem fixed.
It choked at the word "Australia's" because of the '. It also needs to be on
one whole line of code (unless there are codes (e.g \n ??) to break up the
line.
-----Original Message-----
From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu]On
Behalf Of Steve Snow
Sent: Wednesday, 5 March 2003 8:23 AM
To: javascript at LaTech.edu
Subject: RE: [Javascript] Re: need script - slideshow with captions
The slide show is brilliant. I would like to use the concept in a teaching
sense - the caption would need to be about 1-2 paragraphs in length. The
script does not seem to like the broken lines so how do I represent a "line
feed" without breaking the whole paragraph.
Here is an example of what I am trying to do with your (Muchacho) idea, and
I am getting a "expected ')' error.
This is directly from your example - the "caption" part of the function ends
at the word "bursting" with alt2 being "radiosonde". The links will be
modified.
Firstly, am I able to use paragraphs of info in lieu of a simple caption and
if so, how would I link it together so it is seen by the function as a valid
"caption"?
Thanks.
var myImage=new Array()
myImage[0]=new img('bureau1.jpg','Gove Meteorological Office Building','Gove
Meteorological Office','http://www.google.com/')
myImage[1]=new img('sfty.gif','Every 6 hours, commencing at 2315Z, a
meteorological balloon is released from each of Australia's Meteorological
Offices.
(This time corresponds to release times throughout the world so that a
true representation of the upper atmosphere can be gained). The balloons,
or rather, their triangular aluminium targets tied beneath them, are tracked
by radar to heights of up to 29,000 metres (almost 100,000ft or 12hPa)
before bursting and returning back to earth. As the balloon rises, wind
speed and direction is calculated every
ten seconds for use in the preparation of forecasts and as an aid to
aviation traffic. Ordinarily a 100gram balloon is used in tandem with a
polystyrene target covered with aluminium foil to obtain winds up to
approximately 20,000 metres. At 2315Z however, a 350gram balloon is used
and a Vaisala RS80 Radiosonde is attached below the target. The radiosonde
contains a small transmitter that transmits data about temperature, humidity
and pressure back to a computer at the station so that an accurate
representation of the atmosphere can be obtained. Due to the decreasing
atmospheric pressure as the balloon rises, these 350gram balloons will
expand to the size of a small house before
bursting.','radiosonde','http://www.hotmail.com/')
-----Original Message-----
From: javascript-admin at LaTech.edu [mailto:javascript-admin at LaTech.edu]On
Behalf Of Muchacho, Laurent (TWIi London)
Sent: Tuesday, 4 March 2003 11:03 PM
To: 'javascript at LaTech.edu'
Subject: RE: [Javascript] Re: need script - slideshow with captions
Hi
Sorry to cut everyone short but you all trying to complicate your life with
2 array or trying to store data with this kind of process
ok everyone thought of the array what is a good thing but you don't need a
seconde one for the caption because if you want to add a alt text to your
image or a link to an other page you will need to create new array and after
a will your code will be completely unmaintainable, What you need is to
store an object in your array
I built this small examples with all you need this work only on IE but the
logic should drive you in better direction
http://www.elmuchacho.com/examples/slidde_show/default.asp
Laurent
-----Original Message-----
From: BEKIM BACAJ [mailto:trojani2000 at hotmail.com]
Sent: 01 March 2003 14:21
To: javascript at LaTech.edu
Subject: Re: [Javascript] Re: need script - slideshow with captions
All you need to do is ad another array of caption contents after or before
the img arrays the same way:
NewCapt = new Array (
"this and that",
"caption contents",
"capiton3",
...until the last img caption and u're done
)
And at this line:
document.slideshow.src = NewImg[ImgNum];
ad something like:
caption.innerText = NewCapt[ImgNum];
and inside the HTML before this line:
add the (in style) formated DIV:
The Defalt img caption text
And ure done.
Cheers!
>From: Dana Hall
>Reply-To: javascript at LaTech.edu
>To:
>Subject: [Javascript] Re: need script - slideshow with captions
>Date: Fri, 28 Feb 2003 22:44:34 -0800
>
> >Just add an array of captions to the script and change the caption
> >as you change the image?
>
>I know I would need another array, and thank you for helping me with
>the code. Below is the code from my page, but I'm having difficulty
>with four lines of the code you gave me:
>(1) var document.myImage.src=newimage[n] // whatever it is
>(2) var document.getElementById("caption").innetHTML=NewCap[n]
>
>(3)
>(4)
>
>
>I know where 3 and 4 go, in the HTML instead of:
>
>
>but I can't figure out where 1 and 2 go, instead of what, and if
>anything else needs to change. The original script didn't use a
>fixed array, so I can use any number or pictures and add more at any
>time. So I wrote the caption array the same. as long as each has
>the same number of elements it should work. Can some help out here?
>thanks
>
>-dana
>
>
>************************** begin code *******************************
>
>
>
> Texas Beaders
>
>
>
>
>
>
>
>
>
>
Photos from the 4th Annual
>Texas Beaders Bead Retreat
>
>
>
>
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
DISCLAIMER - The preceding e-mail message (including any attachments)
contains information that may be confidential, may be protected by the
attorney-client or other applicable privileges, or may constitute non-public
information. It is intended to be conveyed only to the designated
recipient(s) named above. If you are not an intended recipient of this
message, or have otherwise received it in error, please notify the sender by
replying to this message and then delete all copies of it from your computer
system. Any use, dissemination, distribution, or reproduction of this
message by unintended recipients is not authorized and may be unlawful. The
contents of this communication do not necessarily represent the views of
this company.
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From trojani2000 at hotmail.com Tue Mar 4 17:26:03 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Wed, 05 Mar 2003 00:26:03 +0100
Subject: [Javascript] Re: need script - slideshow with captions
Message-ID:
Are we getting popular Tonight?!
Well, Mr Laurent!
It seems you've teached us a lesson.
Eventhough, advisory aims in this forum are giving a strait forward
explanation, solution, advice etc.
I like you'r script very much.
Dana asked how to add the caption text inside her courrent script, we simply
told her how, with no intentions of rewritting her original script. And she
never asked for alt text, nore the link getaways.
Anyway I appreciate you'r thought, and reminding us for existance of script
Objects, there has been some time I didn't see any implementation of Objects
at all.
Stay in the forum.
Regards, Bekim Bac? Trojani
>From: "Muchacho, Laurent (TWIi London)"
>Reply-To: javascript at LaTech.edu
>To: "'javascript at LaTech.edu'"
>Subject: RE: [Javascript] Re: need script - slideshow with captions
>Date: Tue, 4 Mar 2003 13:33:02 -0000
>
>Hi
>
>Sorry to cut everyone short but you all trying to complicate your life with
>2 array or trying to store data with this kind of process
>ok everyone thought of the array what is a good thing but you don't need a
>seconde one for the caption because if you want to add a alt text to your
>image or a link to an other page you will need to create new array and
>after
>a will your code will be completely unmaintainable, What you need is to
>store an object in your array
>
>I built this small examples with all you need this work only on IE but the
>logic should drive you in better direction
>
>http://www.elmuchacho.com/examples/slidde_show/default.asp
>
>Laurent
>
>
>
>
>
>
>
>-----Original Message-----
>From: BEKIM BACAJ [mailto:trojani2000 at hotmail.com]
>Sent: 01 March 2003 14:21
>To: javascript at LaTech.edu
>Subject: Re: [Javascript] Re: need script - slideshow with captions
>
>
>All you need to do is ad another array of caption contents after or before
>the img arrays the same way:
>
>NewCapt = new Array (
>"this and that",
>"caption contents",
>"capiton3",
>
>...until the last img caption and u're done
>)
>
>And at this line:
>
> document.slideshow.src = NewImg[ImgNum];
>
>ad something like:
>
> caption.innerText = NewCapt[ImgNum];
>
>and inside the HTML before this line:
>
>
>
>add the (in style) formated DIV:
>
>
The Defalt img caption text
>
>And ure done.
>Cheers!
>
>
>
>
>
>
>
>
>
> >From: Dana Hall
> >Reply-To: javascript at LaTech.edu
> >To:
> >Subject: [Javascript] Re: need script - slideshow with captions
> >Date: Fri, 28 Feb 2003 22:44:34 -0800
> >
> > >Just add an array of captions to the script and change the caption
> > >as you change the image?
> >
> >I know I would need another array, and thank you for helping me with
> >the code. Below is the code from my page, but I'm having difficulty
> >with four lines of the code you gave me:
> >(1) var document.myImage.src=newimage[n] // whatever it is
> >(2) var document.getElementById("caption").innetHTML=NewCap[n]
> >
> >(3)
> >(4)
> >
> >
> >I know where 3 and 4 go, in the HTML instead of:
> >
> >
> >but I can't figure out where 1 and 2 go, instead of what, and if
> >anything else needs to change. The original script didn't use a
> >fixed array, so I can use any number or pictures and add more at any
> >time. So I wrote the caption array the same. as long as each has
> >the same number of elements it should work. Can some help out here?
> >thanks
> >
> >-dana
> >
> >
> >************************** begin code *******************************
> >
> >
> >
> > Texas Beaders
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
Photos from the 4th Annual
> >Texas Beaders Bead Retreat
> >
> >
> >
> >
> >
> >
> >_______________________________________________
> >Javascript mailing list
> >Javascript at LaTech.edu
> >https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
>_________________________________________________________________
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
>DISCLAIMER - The preceding e-mail message (including any attachments)
>contains information that may be confidential, may be protected by the
>attorney-client or other applicable privileges, or may constitute
>non-public
>information. It is intended to be conveyed only to the designated
>recipient(s) named above. If you are not an intended recipient of this
>message, or have otherwise received it in error, please notify the sender
>by
>replying to this message and then delete all copies of it from your
>computer
>system. Any use, dissemination, distribution, or reproduction of this
>message by unintended recipients is not authorized and may be unlawful. The
>contents of this communication do not necessarily represent the views of
>this company.
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
Tired of spam? Get advanced junk mail protection with MSN 8.
http://join.msn.com/?page=features/junkmail
From trojani2000 at hotmail.com Tue Mar 4 17:34:14 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Wed, 05 Mar 2003 00:34:14 +0100
Subject: [Javascript] encodinf JS
Message-ID:
Haey,
Yes, there are some software script encoders, not very usefull though...
Try with you'r Browser, you will fing where to download such applications.
However once you've encoded the script you will no longer be able to modify
it. changing even one simple white space will make you'r page unusable, in
this case you will always have to save some backup copy of the original in
case you decide to modify the contents later.
Cheers.
P.S. sorry I'm not able to recall where I found those apps.
>From: "Iztok Polanic"
>Reply-To: javascript at LaTech.edu
>To:
>Subject: [Javascript] encodinf JS
>Date: Mon, 3 Mar 2003 12:13:23 +0100
>
>Hi!
>
>I just saw a page with encoded tag. Can this be done? And
>how?
>
>
>Bye,
>
>Iztok
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
MSN 8 with e-mail virus protection service: 2 months FREE*
http://join.msn.com/?page=features/virus
From trojani2000 at hotmail.com Tue Mar 4 18:13:14 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Wed, 05 Mar 2003 01:13:14 +0100
Subject: [Javascript] Newbie dipping toes in water
Message-ID:
I'm sorry, this is out of my domain.
Never worked with explorer objects, so I can't tell a thing.
You will have do do it the same place you've added the menu item.
The script in External HTML will do you no good.
If you find the way how to read and place the window.status string into the
menuItem, (because it will allways be visible when mouse over the link), and
somehow make it execute with you'r click, than It is solved.
This is your wish Idea, but as far as window status bar shows all the
addresses under the mouse I don't see any benefit from getting it displayed
in the context menu with the right click. It always gets displayed in the
status bar as soon as you mouse over, than you leftclick, if you like the
address, with no trouble to wait for the contextmenu to show it an decide,
but as I sad, it's you'r right to have wishes sorry I couldn't fulfill them.
>From: Peter Vogel
>Reply-To: javascript at LaTech.edu
>To: javascript at LaTech.edu
>Subject: Re: [Javascript] Newbie dipping toes in water
>Date: Wed, 05 Mar 2003 10:03:22 +1100
>
>Thanks for your reply.
>
>I don't know if I have explained myself clearly. There is
>no code which is mine. There is no host application.
>
>Here's what I'm trying to do.
>
>I have added a context menu item in IE, say "SHOW URL". The
>registry points this to a file, say C:\winnt\showurl.htm
>
>Then, I am browsing any site, I right-click on a link, and
>along with the usual "open link", "open in new window", I
>get a choice "SHOW URL". If I click on this it executes my
>little script "showurl.htm", which is where I get stuck!
>
>I hope this explains what I need...
_________________________________________________________________
MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*.
http://join.msn.com/?page=features/virus
From tcjohn2 at qwest.com Tue Mar 4 21:53:23 2003
From: tcjohn2 at qwest.com (Ted Johnson)
Date: Tue, 04 Mar 2003 20:53:23 -0700
Subject: [Javascript] Thanks
Message-ID: <3E6574B3.6E2FE9CB@qwest.com>
Your script on
https://lists.latech.edu/pipermail/javascript/2001-September/002313.html
worked for me. Now I can go home!
Ted
--
---------------------------------------
Ted C Johnson
303-896-9050
1005 17 th St
Denver, CO 80202
Wholesale SD Web Development
http://carrierweb
From mjwelch at adelphia.net Wed Mar 5 15:06:25 2003
From: mjwelch at adelphia.net (Marsie Welch)
Date: Wed, 5 Mar 2003 16:06:25 -0500
Subject: [Javascript] Return value from popup
Message-ID: <3de001c2e35b$17692110$6501a8c0@mmwelch>
I'm trying to create a form that opens a popup and then transfers the value entered in a popup form, back to the form that opened the popup.
I get the error message:
Error: 'document.forms.0.input' is null or not an object
Any help would be appreciated. Here is my code:
THE SIMPLE "MAIN" FORM
Simple Form
THE POPUP FORM (popup.htm)
The Popup
EventId:
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From peter at brunone.com Wed Mar 5 15:34:03 2003
From: peter at brunone.com (Peter Brunone)
Date: Wed, 5 Mar 2003 15:34:03 -0600
Subject: [Javascript] Return value from popup
In-Reply-To: <3de001c2e35b$17692110$6501a8c0@mmwelch>
Message-ID:
Marsie,
Two problems come to mind. One, you don't have a form in your popup
window, so you can't refer to it. Two (and this may not matter, but it's
good coding practice), you probably want to avoid using reserved words to
name objects... like naming an input "input".
Cheers,
Peter
-----Original Message-----
From: javascript-admin at LaTech.edu On Behalf Of Marsie Welch
Sent: Wednesday, March 05, 2003 3:06 PM
To: javascript at LaTech.edu
Subject: [Javascript] Return value from popup
I'm trying to create a form that opens a popup and then transfers the value
entered in a popup form, back to the form that opened the popup.
I get the error message:
Error: 'document.forms.0.input' is null or not an object
Any help would be appreciated. Here is my code:
THE SIMPLE "MAIN" FORM
Simple Form
THE POPUP FORM (popup.htm)
The Popup
EventId:
From pvogel at righthemisphere.com.au Wed Mar 5 16:55:16 2003
From: pvogel at righthemisphere.com.au (Peter Vogel)
Date: Thu, 06 Mar 2003 09:55:16 +1100
Subject: [Javascript] Help finding information about script
In-Reply-To:
References:
Message-ID: <20030306095317.9265.PVOGEL@righthemisphere.com.au>
I have found an example script on Microsoft's website which
I want to understand. Where do I find definitions of things
like "document" properties, "external.menuArguments" etc.
Thank you
Peter
This is the script:
var win = external.menuArguments;
document.all.location.value = win.document.location.href;
document.all.location.select();
document.execCommand("Copy");
From mjwelch at adelphia.net Wed Mar 5 20:57:47 2003
From: mjwelch at adelphia.net (Marsie Welch)
Date: Wed, 5 Mar 2003 21:57:47 -0500
Subject: [Javascript] Return value from popup
References:
Message-ID: <3e8001c2e38d$74a59de0$6501a8c0@mmwelch>
Thanks. Sorry it was so obvious. I created a form at one time, but who
knows where it went. It really helped to have a fresh pair of eyes.
Marsie
----- Original Message -----
From: "Peter Brunone"
To:
Sent: Wednesday, March 05, 2003 4:34 PM
Subject: RE: [Javascript] Return value from popup
Marsie,
Two problems come to mind. One, you don't have a form in your popup
window, so you can't refer to it. Two (and this may not matter, but it's
good coding practice), you probably want to avoid using reserved words to
name objects... like naming an input "input".
Cheers,
Peter
-----Original Message-----
From: javascript-admin at LaTech.edu On Behalf Of Marsie Welch
Sent: Wednesday, March 05, 2003 3:06 PM
To: javascript at LaTech.edu
Subject: [Javascript] Return value from popup
I'm trying to create a form that opens a popup and then transfers the value
entered in a popup form, back to the form that opened the popup.
I get the error message:
Error: 'document.forms.0.input' is null or not an object
Any help would be appreciated. Here is my code:
THE SIMPLE "MAIN" FORM
Simple Form
THE POPUP FORM (popup.htm)
The Popup
EventId:
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From Jeb911 at sc.rr.com Wed Mar 5 21:30:04 2003
From: Jeb911 at sc.rr.com (Josh Britt)
Date: Wed, 5 Mar 2003 22:30:04 -0500
Subject: [Javascript] Javascript
Message-ID: <000001c2e390$ad718910$0201a8c0@dell>
Hello are you still having a problem with that IP script
http://www.911designs.com I got mine
working lookt at the site on the status bas on the bottom left let me
know what you think I will help you if you would like
Josh Britt
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From Andrew at d2k.com.au Wed Mar 5 21:30:36 2003
From: Andrew at d2k.com.au (Andrew Dunn)
Date: Thu, 6 Mar 2003 13:30:36 +1000
Subject: [Javascript] Javascript
Message-ID: <3B279CCBE6A1AD44A920B108222FC12D209879@chimaera.d2k.com.au>
what language did you use?
_____
From: Josh Britt [mailto:Jeb911 at sc.rr.com]
Sent: Thursday, 6 March 2003 1:30 PM
To: javascript at latech.edu
Hello are you still having a problem with that IP script
http://www.911designs.com I got mine
working lookt at the site on the status bas on the bottom left let me
know what you think I will help you if you would like
Josh Britt
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From andyg at ihug.co.nz Wed Mar 5 21:36:49 2003
From: andyg at ihug.co.nz (Andrew Gibson)
Date: Thu, 6 Mar 2003 16:36:49 +1300
Subject: [Javascript] Javascript
References: <3B279CCBE6A1AD44A920B108222FC12D209879@chimaera.d2k.com.au>
Message-ID: <002001c2e391$a280d370$73e8adcb@k1n8i8>
MessageI suspect he grabbed the IP address via a server side script and put
it into the Javascript code?
var ip=<%=myIp%> or something similar
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
what language did you use?
From: Josh Britt [mailto:Jeb911 at sc.rr.com]
Sent: Thursday, 6 March 2003 1:30 PM
To: javascript at latech.edu
Hello are you still having a problem with that IP script
http://www.911designs.com I got mine working lookt at the site on the status
bas on the bottom left let me know what you think I will help you if you
would like
Josh Britt
From trojani2000 at hotmail.com Wed Mar 5 21:46:12 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Thu, 06 Mar 2003 04:46:12 +0100
Subject: [Javascript] Javascript
Message-ID:
Comon:
he wrote it by hand.
have you seen the script: var ip = '195.238.48.12'
my IP doesn't look anything like that
>From: "Andrew Gibson"
>Reply-To: javascript at LaTech.edu
>To:
>Subject: Re: [Javascript] Javascript
>Date: Thu, 6 Mar 2003 16:36:49 +1300
>
>MessageI suspect he grabbed the IP address via a server side script and put
>it into the Javascript code?
>var ip=<%=myIp%> or something similar
>
>
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>
>what language did you use?
>
>
>
>From: Josh Britt [mailto:Jeb911 at sc.rr.com]
>Sent: Thursday, 6 March 2003 1:30 PM
>To: javascript at latech.edu
>
>
>Hello are you still having a problem with that IP script
>http://www.911designs.com I got mine working lookt at the site on the
>status
>bas on the bottom left let me know what you think I will help you if you
>would like
>
>Josh Britt
>
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
The new MSN 8: advanced junk mail protection and 2 months FREE*
http://join.msn.com/?page=features/junkmail
From Andrew at d2k.com.au Wed Mar 5 21:54:06 2003
From: Andrew at d2k.com.au (Andrew Dunn)
Date: Thu, 6 Mar 2003 13:54:06 +1000
Subject: [Javascript] Javascript
Message-ID: <3B279CCBE6A1AD44A920B108222FC12D20987A@chimaera.d2k.com.au>
Do you have a permanent IP?
-----Original Message-----
From: BEKIM BACAJ [mailto:trojani2000 at hotmail.com]
Sent: Thursday, 6 March 2003 1:46 PM
To: javascript at LaTech.edu
Comon:
he wrote it by hand.
have you seen the script: var ip = '195.238.48.12'
my IP doesn't look anything like that
>From: "Andrew Gibson"
>Reply-To: javascript at LaTech.edu
>To:
>Subject: Re: [Javascript] Javascript
>Date: Thu, 6 Mar 2003 16:36:49 +1300
>
>MessageI suspect he grabbed the IP address via a server side script and
>put it into the Javascript code?
>var ip=<%=myIp%> or something similar
>
>
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>
>what language did you use?
>
>
>
>From: Josh Britt [mailto:Jeb911 at sc.rr.com]
>Sent: Thursday, 6 March 2003 1:30 PM
>To: javascript at latech.edu
>
>
>Hello are you still having a problem with that IP script
>http://www.911designs.com I got mine working lookt at the site on the
>status bas on the bottom left let me know what you think I will help
>you if you would like
>
>Josh Britt
>
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
The new MSN 8: advanced junk mail protection and 2 months FREE*
http://join.msn.com/?page=features/junkmail
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From andyg at ihug.co.nz Wed Mar 5 21:59:39 2003
From: andyg at ihug.co.nz (Andrew Gibson)
Date: Thu, 6 Mar 2003 16:59:39 +1300
Subject: [Javascript] Javascript
References:
Message-ID: <005001c2e394$d0465390$73e8adcb@k1n8i8>
Wouldn't he go something like this?
<%
dim ip
ip=request.servervariables("remote_addr")
%>
Subject: Re: [Javascript] Javascript
> Comon:
> he wrote it by hand.
> have you seen the script: var ip = '195.238.48.12'
>
> my IP doesn't look anything like that
>
>
>
> >From: "Andrew Gibson"
> >Reply-To: javascript at LaTech.edu
> >To:
> >Subject: Re: [Javascript] Javascript
> >Date: Thu, 6 Mar 2003 16:36:49 +1300
> >
> >MessageI suspect he grabbed the IP address via a server side script and
put
> >it into the Javascript code?
> >var ip=<%=myIp%> or something similar
> >
> >
> > >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
> >
> >what language did you use?
> >
> >
> >
> >From: Josh Britt [mailto:Jeb911 at sc.rr.com]
> >Sent: Thursday, 6 March 2003 1:30 PM
> >To: javascript at latech.edu
> >
> >
> >Hello are you still having a problem with that IP script
> >http://www.911designs.com I got mine working lookt at the site on the
> >status
> >bas on the bottom left let me know what you think I will help you if you
> >would like
> >
> >Josh Britt
> >
> >
> >
> >_______________________________________________
> >Javascript mailing list
> >Javascript at LaTech.edu
> >https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
> _________________________________________________________________
> The new MSN 8: advanced junk mail protection and 2 months FREE*
> http://join.msn.com/?page=features/junkmail
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
>
>
From trojani2000 at hotmail.com Wed Mar 5 22:06:44 2003
From: trojani2000 at hotmail.com (BEKIM BACAJ)
Date: Thu, 06 Mar 2003 05:06:44 +0100
Subject: [Javascript] Javascript
Message-ID:
No, restrictions apply, -also he did not sen't us only the IP, but also the
background etc, otherwise if one has you'r IP he can directly connect to
your computer.
>From: "Andrew Gibson"
>Reply-To: javascript at LaTech.edu
>To:
>Subject: Re: [Javascript] Javascript
>Date: Thu, 6 Mar 2003 16:59:39 +1300
>
>Wouldn't he go something like this?
>
><%
>dim ip
>ip=request.servervariables("remote_addr")
>%>
>
>
>Subject: Re: [Javascript] Javascript
>
>
> > Comon:
> > he wrote it by hand.
> > have you seen the script: var ip = '195.238.48.12'
> >
> > my IP doesn't look anything like that
> >
> >
> >
> > >From: "Andrew Gibson"
> > >Reply-To: javascript at LaTech.edu
> > >To:
> > >Subject: Re: [Javascript] Javascript
> > >Date: Thu, 6 Mar 2003 16:36:49 +1300
> > >
> > >MessageI suspect he grabbed the IP address via a server side script and
>put
> > >it into the Javascript code?
> > >var ip=<%=myIp%> or something similar
> > >
> > >
> > > >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
> > >
> > >what language did you use?
> > >
> > >
> > >
> > >From: Josh Britt [mailto:Jeb911 at sc.rr.com]
> > >Sent: Thursday, 6 March 2003 1:30 PM
> > >To: javascript at latech.edu
> > >
> > >
> > >Hello are you still having a problem with that IP script
> > >http://www.911designs.com I got mine working lookt at the site on the
> > >status
> > >bas on the bottom left let me know what you think I will help you if
>you
> > >would like
> > >
> > >Josh Britt
> > >
> > >
> > >
> > >_______________________________________________
> > >Javascript mailing list
> > >Javascript at LaTech.edu
> > >https://lists.LaTech.edu/mailman/listinfo/javascript
> >
> >
> > _________________________________________________________________
> > The new MSN 8: advanced junk mail protection and 2 months FREE*
> > http://join.msn.com/?page=features/junkmail
> >
> > _______________________________________________
> > Javascript mailing list
> > Javascript at LaTech.edu
> > https://lists.LaTech.edu/mailman/listinfo/javascript
> >
> >
>
>
>_______________________________________________
>Javascript mailing list
>Javascript at LaTech.edu
>https://lists.LaTech.edu/mailman/listinfo/javascript
_________________________________________________________________
MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*.
http://join.msn.com/?page=features/virus
From kkwok.8188 at rogers.com Thu Mar 6 20:26:04 2003
From: kkwok.8188 at rogers.com (kkwok.8188)
Date: Thu, 6 Mar 2003 21:26:04 -0500
Subject: [Javascript] Please Help me
Message-ID: <000a01c2e450$e73bae80$0f600a0a@nivla.kea>
Hi,
Can you let me know how to get rid of the pop ad from ZDOS.com redirection service? I noticed your site has sucessfully get rid of the pop ads.
Thanks,
Kkwok
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From Michael_Dougherty at PBP.com Fri Mar 7 09:52:08 2003
From: Michael_Dougherty at PBP.com (Michael Dougherty)
Date: Fri, 7 Mar 2003 10:52:08 -0500
Subject: [Javascript] using regular expression to clean a phone number field
In-Reply-To:
Message-ID:
I would like to put clean phone numbers into my database. While i could use
some routine in the SQL SP to clean the phone number string before it's
INSERTed, i think using a regular expression replace on the string coming
from the form would be a more elegant solution. MY main problem is that I
don't have a good idea how to use regular expressions.
phoneFormatUnknown = document.all["Phone"].value
phoneFormatOnlyNumbers = cleanerFunction(phoneFormatUnknown)
so that regardless of how the user enters the phone, only numbers end up in
phoneFormatOnlyNumbers
ex: (123) 123-1234 ==> 1231231234
ex: 123.123.1234 ==> 1231231234
ex: 1(123) 123-1234 ==> 11231231234
ex: 1-123-123-1234 ext 123 ==> 11231231234123
ex: 1-800-You're number 1 ==> 18001 (OK that the output is as useless as the
input)
bonus: 1-800-OKCOMPAQ ==> 180065266722 (i don't care how ugly the regexp is
:)
the idea is specifically to NOT just nest a bunch of character-specific
replacements, or to iterate the string...
From hassan at webtuitive.com Fri Mar 7 12:36:02 2003
From: hassan at webtuitive.com (Hassan Schroeder)
Date: Fri, 07 Mar 2003 10:36:02 -0800
Subject: [Javascript] using regular expression to clean a phone number
field
In-Reply-To:
References:
Message-ID: <3E68E692.3060309@webtuitive.com>
Michael Dougherty wrote:
> I would like to put clean phone numbers into my database.
> phoneFormatUnknown = document.all["Phone"].value
Unless this is an intranet, you might want to reconsider the
IE-specific "document.all", but ...
> ex: (123) 123-1234 ==> 1231231234
> ex: 123.123.1234 ==> 1231231234
> ex: 1(123) 123-1234 ==> 11231231234
> ex: 1-123-123-1234 ext 123 ==> 11231231234123
> ex: 1-800-You're number 1 ==> 18001 (OK that the output is as useless as the
> input)
> bonus: 1-800-OKCOMPAQ ==> 180065266722 (i don't care how ugly the regexp is
> :)
I'm in the middle of an OS install and a couple of other things, so
maybe I'll come back to that one :-)
HTH!
--
Hassan Schroeder ----------------------------- hassan at webtuitive.com
Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com
dream. code.
From kathy522dry at yahoo.com Sat Mar 8 09:36:59 2003
From: kathy522dry at yahoo.com (kathy w.)
Date: Sat, 8 Mar 2003 09:36:59 -0600 (CST)
Subject: [Javascript] where do they find these girls 3/18/02
In-Reply-To: <9709ed2d759f3557f9a56f325edec84c@latech.edu>
Message-ID: <20030308153659.2FB403092C2@LaTech.edu>
An HTML attachment was scrubbed...
URL:
From Michael_Dougherty at PBP.com Sat Mar 8 17:10:33 2003
From: Michael_Dougherty at PBP.com (Michael Dougherty)
Date: Sat, 8 Mar 2003 18:10:33 -0500
Subject: [Javascript] regexp - numericOnly
In-Reply-To:
Message-ID:
thanks, this is perfect
it IS an intranet, and the shotgun wedding to IE happened a long time ago :)
-----Original Message-----
From: javascript at LaTech.edu [mailto:javascript at LaTech.edu]
Sent: Saturday, March 08, 2003 12:01 PM
To: javascript at latech.edu
Subject: Javascript digest, Vol 1 #924 - 3 msgs
Send Javascript mailing list submissions to
javascript at LaTech.edu
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.LaTech.edu/mailman/listinfo/javascript
or, via email, send a message with subject or body 'help' to
javascript-request at LaTech.edu
You can reach the person managing the list at
javascript-admin at LaTech.edu
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Javascript digest..."
Today's Topics:
1. Re: using regular expression to clean a phone number
field (Hassan Schroeder)
2. where do they find these girls 3/18/02 (kathyw.)
--__--__--
Message: 1
Date: Fri, 07 Mar 2003 10:36:02 -0800
From: Hassan Schroeder
Organization: Webtuitive Design
To: javascript at LaTech.edu
Subject: Re: [Javascript] using regular expression to clean a phone number
field
Reply-To: javascript at LaTech.edu
Michael Dougherty wrote:
>> I would like to put clean phone numbers into my database.
>> phoneFormatUnknown = document.all["Phone"].value
Unless this is an intranet, you might want to reconsider the
IE-specific "document.all", but ...
>> ex: (123) 123-1234 ==> 1231231234
>> ex: 123.123.1234 ==> 1231231234
>> ex: 1(123) 123-1234 ==> 11231231234
>> ex: 1-123-123-1234 ext 123 ==> 11231231234123
>> ex: 1-800-You're number 1 ==> 18001 (OK that the output is as useless
>as the
>> input)
>> bonus: 1-800-OKCOMPAQ ==> 180065266722 (i don't care how ugly the
>regexp is
>> :)
I'm in the middle of an OS install and a couple of other things, so
maybe I'll come back to that one :-)
HTH!
--
Hassan Schroeder ----------------------------- hassan at webtuitive.com
Webtuitive Design === (+1) 408-938-0567 === http://webtuitive.com
dream. code.
--__--__--
Message: 2
From: kathy w.
To: javascript at latech.edu
Date: Sat, 8 Mar 2003 09:36:59 -0600 (CST)
Subject: [Javascript] where do they find these girls 3/18/02
Reply-To: javascript at LaTech.edu
--===============84782861429222756==
Content-Type: text/html; charset="iso-8859-1"
MIME-Version: 1.0
Content-Transfer-Encoding: base64
CjxodG1sPgo8aGVhZD4KPHRpdGxlPmxvc2Ugd2VpZ2h0IGZlZWwgZ3JlYXQ8L3RpdGxlPgo8bWV0
YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1p
c28tODg1OS0xIj4KPC9oZWFkPgoKPGJvZHkgYmdjb2xvcj0iI0ZGRkZGRiIgdGV4dD0iIzAwMDAw
MCI+Cjx0YWJsZSB3aWR0aD0iNDAwIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIxMCIgY2VsbHBh
ZGRpbmc9IjEwIj4KICA8dHI+CiAgICA8dGQgd2lkdGg9IjEzMCI+PGEgaHJlZj0iaHR0cDovL3d3
dy5hYmV0dGVybGlmZXRvZGF5LmNvbS5hci9pbmRleC5waHA/aWQ9OCI+PGltZyBzcmM9Imh0dHA6
Ly93d3cuYWJldHRlcmxpZmV0b2RheS5jb20uYXIvaW1hZ2VzL2hnaF8wMS5qcGciIHdpZHRoPSIx
NDAiIGhlaWdodD0iNTEiIGJvcmRlcj0iMCIgYWx0PSJteSBob3Qgd2lmZXMgZnJpZW5kIHRha2Vz
IHRoaXMgYW5kIG5vdCBvbmx5IGxvb2tzIGdyZWF0IGJ1dCBsb3ZlcyB0byBmdWNrIj48L2E+PGJy
PgogICAgICA8YSBocmVmPSJodHRwOi8vd3d3LmFiZXR0ZXJsaWZldG9kYXkuY29tLmFyL2luZGV4
LnBocD9pZD04Ij48aW1nIHNyYz0iaHR0cDovL3d3dy5hYmV0dGVybGlmZXRvZGF5LmNvbS5hci9p
bWFnZXMvaGdoXzA5LmpwZyIgd2lkdGg9IjE0MCIgaGVpZ2h0PSIzNjkiIGJvcmRlcj0iMCIgYWx0
PSJteSBob3Qgd2lmZXMgZnJpZW5kIHRha2VzIHRoaXMgYW5kIG5vdCBvbmx5IGxvb2tzIGdyZWF0
IGJ1dCBsb3ZlcyB0byBmdWNrIj48L2E+PC90ZD4KICAgIDx0ZCB3aWR0aD0iMjAwIiBhbGlnbj0i
bGVmdCIgdmFsaWduPSJ0b3AiPiAKICAgICAgPHA+PGI+PGZvbnQgZmFjZT0iQXJpYWwsIEhlbHZl
dGljYSwgc2Fucy1zZXJpZiI+SDwvZm9udD48L2I+PGZvbnQgZmFjZT0iQXJpYWwsIEhlbHZldGlj
YSwgc2Fucy1zZXJpZiI+ZXkgCiAgICAgICAgeW91IHNob3VsZCBjb21lIHRvIG15IHNpdGUgYW5k
IGJ1eSBteSBoZWFsdGggcHJvZHVjdHMuPGJyPgogICAgICAgIEkgaGF2ZSB0aGVtIGNoZWFwZXIg
YW5kIGJldHRlciB0aGFuIGFueSBhbWVyaWNhbiBjb21wYW55LjwvZm9udD48L3A+CiAgICAgIDxw
Pjxmb250IGZhY2U9IkFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWYiPkkgaGF2ZSBhbiBvZmZp
Y2UgbG9jYXRlZCBoZXJlIAogICAgICAgIGluIHRoZSBVbml0ZWQgU3RhdGVzIHRoYXQgSSBzaGlw
IHRoZSBnb29kIGZyb20uPC9mb250PjwvcD4KICAgICAgPHA+PGZvbnQgZmFjZT0iQXJpYWwsIEhl
bHZldGljYSwgc2Fucy1zZXJpZiI+WW91IGNhbiBvcmRlciBvbmxpbmUgdGhydSBteSAKICAgICAg
ICBtZXJjaGFudCBhY2NvdW50IG9yIHBheSBtZSBieSBjaGVjay48YnI+CiAgICAgICAgPC9mb250
PjwvcD4KICAgICAgPGhyPgogICAgICA8Zm9udCBmYWNlPSJBcmlhbCwgSGVsdmV0aWNhLCBzYW5z
LXNlcmlmIj5odHRwOi8vd3d3LmFiZXR0ZXJsaWZldG9kYXkuY29tLmFyL2luZGV4LnBocD9pZD04
PGJyPgogICAgICA8L2ZvbnQ+CiAgICAgIDxocj4KICAgICAgPGRpdiBhbGlnbj0iY2VudGVyIj48
YnI+CiAgICAgICAgPGZvbnQgZmFjZT0iQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZiI+PGI+
c2VuZCBjaGVja3MgcGF5YWJsZSB0bzwvYj48YnI+CiAgICAgICAgR09QIFBST0RVQ1RJT05TPGJy
PgogICAgICAgIDQzMjUgQXRsYW50YSBId3kgU3VpdGUgNDIwPGJyPgogICAgICAgIExvZ2Fudmls
bGUgR0EgMzAwNTI8L2ZvbnQ+PC9kaXY+CiAgICA8L3RkPgogIDwvdHI+CjwvdGFibGU+CjwvYm9k
eT4KPC9odG1sPgo=
--===============84782861429222756==--
--__--__--
_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
End of Javascript Digest
From walter at torres.ws Sat Mar 8 22:30:08 2003
From: walter at torres.ws (Walter Torres)
Date: Sat, 8 Mar 2003 22:30:08 -0600
Subject: [Javascript] Employment Query...
In-Reply-To:
Message-ID:
(I hope this is kosher here...)
Anyone have any good places to search for jobs that utilize advanced
JavaScript, Web Server Admin, cross browser development, etc?
Please reply (offline, if that is how it should be)
Layoffs! Round 8! My Turn!
Thanks.
Walter
From mountaindragon at startrek.net Sun Mar 9 19:05:28 2003
From: mountaindragon at startrek.net (David Merchant)
Date: Sun, 09 Mar 2003 19:05:28 -0600
Subject: [Javascript] Employment Query...
In-Reply-To:
References:
Message-ID: <5.1.0.14.0.20030309190107.03f017c0@mail.latech.edu>
I think it's kosher, and especially now when the economy around the world
is so very bad and any economic recovery may be a fairly jobless recovery,
so this is a good question for professional javascripters!
At 10:30 PM 3/8/2003 -0600, you wrote:
>(I hope this is kosher here...)
>
>Anyone have any good places to search for jobs that utilize advanced
>JavaScript, Web Server Admin, cross browser development, etc?
>
>Please reply (offline, if that is how it should be)
>
>Layoffs! Round 8! My Turn!
>
>Thanks.
>
>Walter
TTFN,
David Merchant
Director of Integrated Technology
CATALyST
Louisiana Tech University
PO Box 3179
Ruston, LA 71272
Tel: (318) 257-4772
Fax: (318) 257-3852
projectlife.latech.edu/
c3.latech.edu/
catalyst.latech.edu/
From spindrift at oceanfree.net Mon Mar 10 01:40:54 2003
From: spindrift at oceanfree.net (Tim Makins)
Date: Mon, 10 Mar 2003 07:40:54 -0000
Subject: [Javascript] Employment Query...
References:
Message-ID: <018401c2e6d8$69ef2580$07a2cad5@host>
How about http://www.rentacoder.com ??
http://www.rentacoder.com/RentACoder/advertisement/CoderRegistration.asp
I haven't tried it myself, but had it down in the 'looks interesting'
file...
Does anyone here have experience of these people ?
Tim in Ireland.
----- Original Message -----
From: "Walter Torres"
> Anyone have any good places to search for jobs that utilize advanced
> JavaScript, Web Server Admin, cross browser development, etc?
>
> Please reply (offline, if that is how it should be)
>
> Layoffs! Round 8! My Turn!
>
> Thanks.
>
> Walter
From rutger at gurus.nl Mon Mar 10 04:33:30 2003
From: rutger at gurus.nl (Rutger Beens)
Date: Mon, 10 Mar 2003 11:33:30 +0100
Subject: [Javascript] load pages problem
Message-ID: <000e01c2e6f0$81999220$dc00a8c0@LAPTOPRUTGER>
Hi!
I read your problem at
https://lists.latech.edu/pipermail/javascript/2001-December/002634.html and
I have exact the same problem. I was wondering whether you were able to
solve it! I hope you can share your solution with me.
Thanks in advance!
Rutger Beens
PS: The problem is that when I load a new page in the frame, the status bar
never finishes loading.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From mark_weinstock at yahoo.com Mon Mar 10 15:48:04 2003
From: mark_weinstock at yahoo.com (Mark)
Date: Mon, 10 Mar 2003 13:48:04 -0800 (PST)
Subject: [Javascript] Resizing a frame
Message-ID: <20030310214804.26609.qmail@web41212.mail.yahoo.com>
I'm a JS newbie, and haven't been able to find anything via google or
the easy-to-find JS referencs.
Can someone point me to a reference whereby I could resize a frame
dynamically? I can't seem to get anything to work quite the way I
expect. I can resize the entire window, but not just one frame. The
idea is to be able to "minimize" then "restore" a menu frame.
Thanks for any suggestions.
Mark
=====
Mark Weinstock
mark_weinstock at yahoo.com
***************************************
You can't demand something as a "right" unless you are willing to fight to death to defend everyone else's right to the same thing.
***************************************
__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/
From enediel at com.ith.tur.cu Mon Mar 10 19:21:39 2003
From: enediel at com.ith.tur.cu (enediel)
Date: Mon, 10 Mar 2003 17:21:39 -0800
Subject: [Javascript] standard html, hidden table's row and controls
Message-ID: <002801c2e76c$91f12760$2824a8c0@nsoft>
good day to all readers.
It's specifically a javascript question.
I've a form containing a hidden table, and inside of this last, controls
that contain useful information invisible to the user, for example, hidden
select tags that contains set of items, only subsets of it are visible to
the user.
if the row is invisible I receive this message
frm.R_InstitutionsSet_Institutions has no properties.
changing
to
the program works correctly.
Any suggestion?
?why this error, when no matter if the row is visible or not, the object
R_InstitutionsSet_Institutions should be part of the form?
I use only the most standard html specifications, using NetScape navigator
to test my program; (over IE, this solution works perfectly.)
Thanks in advance
Enediel
Linux user 300141
Happy who can penetrate the secret causes of the things
?Use Linux!
From Andrew at d2k.com.au Mon Mar 10 19:22:12 2003
From: Andrew at d2k.com.au (Andrew Dunn)
Date: Tue, 11 Mar 2003 11:22:12 +1000
Subject: [Javascript] Resizing a frame
Message-ID: <3B279CCBE6A1AD44A920B108222FC12D2098B0@chimaera.d2k.com.au>
Quite easy really:
parent.FRAMENAME.cols = 50;
-----Original Message-----
From: Mark [mailto:mark_weinstock at yahoo.com]
Sent: Tuesday, 11 March 2003 7:48 AM
To: javascript at LaTech.edu
I'm a JS newbie, and haven't been able to find anything via google or
the easy-to-find JS referencs.
Can someone point me to a reference whereby I could resize a frame
dynamically? I can't seem to get anything to work quite the way I
expect. I can resize the entire window, but not just one frame. The idea
is to be able to "minimize" then "restore" a menu frame.
Thanks for any suggestions.
Mark
=====
Mark Weinstock
mark_weinstock at yahoo.com
***************************************
You can't demand something as a "right" unless you are willing to fight
to death to defend everyone else's right to the same thing.
***************************************
__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/ _______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript
From mark_weinstock at yahoo.com Mon Mar 10 22:49:16 2003
From: mark_weinstock at yahoo.com (Mark)
Date: Mon, 10 Mar 2003 20:49:16 -0800 (PST)
Subject: [Javascript] Resizing a frame
In-Reply-To: <3B279CCBE6A1AD44A920B108222FC12D2098B0@chimaera.d2k.com.au>
Message-ID: <20030311044916.17633.qmail@web41204.mail.yahoo.com>
Hmm... doesn't seem to do it here. I'm sure I'm doing something
incredibly stupid.... Here's what I have to test it:
parent:
main.html
f1.html
f2.html is just a text test page.
Can someone take pity?
Thanks.
--- Andrew Dunn wrote:
> Quite easy really:
>
> parent.FRAMENAME.cols = 50;
>
>
> -----Original Message-----
> From: Mark [mailto:mark_weinstock at yahoo.com]
> Sent: Tuesday, 11 March 2003 7:48 AM
> To: javascript at LaTech.edu
>
> I'm a JS newbie, and haven't been able to find anything via google
> or
> the easy-to-find JS referencs.
>
> Can someone point me to a reference whereby I could resize a frame
> dynamically? I can't seem to get anything to work quite the way I
> expect. I can resize the entire window, but not just one frame. The
> idea
> is to be able to "minimize" then "restore" a menu frame.
>
> Thanks for any suggestions.
>
> Mark
>
> =====
> Mark Weinstock
> mark_weinstock at yahoo.com
> ***************************************
> You can't demand something as a "right" unless you are willing to
> fight
> to death to defend everyone else's right to the same thing.
> ***************************************
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Tax Center - forms, calculators, tips, more
> http://taxes.yahoo.com/
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
=====
Mark Weinstock
mark_weinstock at yahoo.com
***************************************
You can't demand something as a "right" unless you are willing to fight to death to defend everyone else's right to the same thing.
***************************************
__________________________________________________
Do you Yahoo!?
Yahoo! Web Hosting - establish your business online
http://webhosting.yahoo.com
From dlovering at gazos.com Tue Mar 11 09:48:53 2003
From: dlovering at gazos.com (David T. Lovering)
Date: Tue, 11 Mar 2003 08:48:53 -0700
Subject: [Javascript]