RE: Witango-Talk: JavaScript question

2002-07-09 Thread Anthony M. Humphreys
he value in Tango as <@ARG CS_JS_Val> which you could assign to a Tango variable if needed. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chuck Lockwood Sent: Tuesday, July 09, 2002 12:49 PM To: Multiple recipients of list witango-talk Subject: W

Re: Witango-Talk: JavaScript question

2002-07-09 Thread Bill Conlon
<@SCRIPT> runs your script on the server (server side javascript). It sounds like you want the server to dynamically generate your javascript, which is really the same as generating html on the fly. Just take care to properly escape (ENCODE in wiTango terms) your characters. >On a page open

Witango-Talk: JavaScript question

2002-07-09 Thread Chuck Lockwood
On a page opened in a child window, I have document.writeln(opener.document.hedit.RefNum.value); which correctly displays the value on the screen. How can I assign this value to a local variable? <@SCRIPT EXPR="server.setVariable('vRefNum',opener.document.hedit.

RE: Witango-Talk: Javascript Question -- upload file size

2002-06-24 Thread Dave Shelley
Behalf Of Robert Garcia > Sent: Tuesday, June 25, 2002 12:20 AM > To: Multiple recipients of list witango-talk > Subject: Re: Witango-Talk: Javascript Question -- upload file size > > > I am not sure how you got this to work, it does not work on my server. It > should not wor

Re: Witango-Talk: Javascript Question -- upload file size

2002-06-24 Thread Robert Garcia
2002 21:25:50 -0400 > To: Multiple recipients of list witango-talk <[EMAIL PROTECTED]> > Subject: RE: Witango-Talk: Javascript Question -- upload file size > > I just found an even easier way to get the size of an image the client side. > No frames necessary. > It's basically

Re: Witango-Talk: Javascript Question -- upload file size

2002-06-24 Thread Brad Robertson
s of list witango-talk" <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 5:55 PM Subject: RE: Witango-Talk: Javascript Question -- upload file size > Thanks Scott, that was what I was missing. > > The attached .TML file demonstrates how to get the size of an image without > u

RE: Witango-Talk: Javascript Question -- upload file size

2002-06-24 Thread Dave Shelley
ginal Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Dave Shelley > Sent: Monday, June 24, 2002 8:55 PM > To: Multiple recipients of list witango-talk > Subject: RE: Witango-Talk: Javascript Question -- upload file size > > > Thanks Scott, that was

RE: Witango-Talk: Javascript Question -- upload file size

2002-06-24 Thread Dave Shelley
e Information Portal? Check > out Salsa at > www.plusinternational.com/flash/salsa.htm > > - Original Message - > From: "Dave Shelley" <[EMAIL PROTECTED]> > To: "Multiple recipients of list witango-talk" <[EMAIL PROTECTED]> > Sent: Monday, June

Re: Witango-Talk: Javascript Question

2002-06-24 Thread Scott Cadillac
pients of list witango-talk" <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 1:55 PM Subject: RE: Witango-Talk: Javascript Question > Maybe I should explain what I'm trying to do. > > I'd like to check the size of an upload file on the client machine before > it

RE: Witango-Talk: Javascript Question

2002-06-24 Thread Dave Shelley
horized Witango Reseller http://www.pcforge.com/WitangoGoodies.htm > Latest downloads & List Archives @ http://www.witango.ws > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of Dave Shelley > Sent: Monday, June 24, 2002 9:27 AM >

RE: Witango-Talk: Javascript Question

2002-06-24 Thread Ben Johansen
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Dave Shelley Sent: Monday, June 24, 2002 9:27 AM To: Multiple recipients of list witango-talk Subject: Witango-Talk: Javascript Question Is it possible to read the entire contents of one frame from within anot

Re: Witango-Talk: Javascript Question

2002-06-24 Thread Anthony M. Humphreys
find out exactly how much of the other frame's source you can get. - Original Message - From: "Dave Shelley" <[EMAIL PROTECTED]> To: "Multiple recipients of list witango-talk" <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 12:26 Subject: Witango-Talk:

RE: Witango-Talk: Javascript Question

2002-06-24 Thread Dave Shelley
EMAIL PROTECTED]]On Behalf Of Troy Sosamon > Sent: Monday, June 24, 2002 12:55 PM > To: Multiple recipients of list witango-talk > Subject: RE: Witango-Talk: Javascript Question > > > Dave, > > Yes you can access other frames from a Java script, but I think > you have to

RE: Witango-Talk: Javascript Question

2002-06-24 Thread Troy Sosamon
Dave, Yes you can access other frames from a Java script, but I think you have to be in the parent or one of the child frames to do it. Here is a sample JS from my book accessing frames for a tic-tac-toe game. I recall reading a security bulliten a while ago where there was a bug in IE and h

Witango-Talk: Javascript Question

2002-06-24 Thread Dave Shelley
Is it possible to read the entire contents of one frame from within another frame? Something like: var txt = parent.otherFrame.document.innerHTML; I have my doubts as this would open a huge security hole, but I thought I'd ask anyway. Dave Shelley __