Re: [applescript]

This WebDNA talk-list message is from

1999


It keeps the original formatting.
numero = 25768
interpreted = N
texte = Ok.... I give up.... what does script this do exactly?MM >Ahhh >You can do that? Thanks! > >Jesse Williams Proudman - NineWire Production > http://www.ninewire.com <-> Jesse@ninewire.com > Innovative and Creative Web Design and Hosting > >> -----Original Message----- >> From: WebCatalog Talk [mailto:WebDNA-Talk@talk.smithmicro.com]On >> Behalf Of Aaron Lynch >> Sent: Saturday, December 25, 1999 4:05 AM >> To: WebCatalog Talk >> Subject: Re: [applescript] >> >> >> hard code it like so... >> >> Jesse Williams Proudman wrote: >> > >> > When I have the following code in an [applescript] variable and >> I upload it >> > to the server, every time I run it, it kicks back a dialog box >> wining for >> > where Net Events 1.2.1 BG is. How can I fix this? >> > >> > [applescript] >> > set d to >> > >> > property CRLF : (ASCII character 13) & (ASCII character 10) >> > >> > tell application NetEvents 1.2.1 BG of folder 'folder of disk disk >> > try >> > set addr to NameToAddr ([server]) >> > set str to OpenStream addr port 43 >> > WriteStream str data whois [domain].[tld] & >> CRLF & CRLF >> > repeat >> > set d to d & (ReadStream str amount >> 4096) --read up to 4k >> > set stat to StatusStream str --see if >> there is more to read >> > if stat # OPEN and stat # DATA then >> exit repeat --if the server >> > closed, quit >> > end repeat >> > CloseStream str >> > on error err number num >> > Script Error: & err & ( & num & ) >> > end try >> > d >> > end tell >> > [/applescript] >> > >> > Happy Holidays - >> > >> > Jesse Williams Proudman - NineWire Production >> > http://www.ninewire.com <-> Jesse@ninewire.com >> > Innovative and Creative Web Design and Hosting >> > >> > ------------------------------------------------------------- >> > Brought to you by CommuniGate Pro - The Buzz Word Compliant >> Messaging Server. >> > To end your Mail problems go to . >> > >> > This message is sent to you because you are subscribed to >> > the mailing list . >> > To unsubscribe, E-mail to: >> > To switch to the DIGEST mode, E-mail to >> >> >> ------------------------------------------------------------- >> Brought to you by CommuniGate Pro - The Buzz Word Compliant >> Messaging Server. >> To end your Mail problems go to . >> >> This message is sent to you because you are subscribed to >> the mailing list . >> To unsubscribe, E-mail to: >> To switch to the DIGEST mode, E-mail to >> >> > > >------------------------------------------------------------- >Brought to you by CommuniGate Pro - The Buzz Word Compliant Messaging Server. >To end your Mail problems go to . > >This message is sent to you because you are subscribed to > the mailing list . >To unsubscribe, E-mail to: >To switch to the DIGEST mode, E-mail to >------------------------------------------------------------- Brought to you by CommuniGate Pro - The Buzz Word Compliant Messaging Server. To end your Mail problems go to .This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: To switch to the DIGEST mode, E-mail to Associated Messages, from the most recent to the oldest:

    
  1. Re: [applescript] support in 4.5 for OS X -- really? (Rob Marquardt 2002)
  2. Re: [applescript] support in 4.5 for OS X -- really? (Scott Anderson 2002)
  3. [applescript] support in 4.5 for OS X -- really? (Rob Marquardt 2002)
  4. [applescript] (Aaron Lynch 2001)
  5. Re: [Applescript] (Christer Olsson 2000)
  6. Re: [Applescript] (Rob Marquardt 2000)
  7. Re: [Applescript] (Stuart Tremain 2000)
  8. Re: [Applescript] (TWFT Mail 2000)
  9. Re: [Applescript] (Stuart Tremain 2000)
  10. Re: [Applescript] (Kenneth Grome 2000)
  11. [Applescript] (Stuart Tremain 2000)
  12. Re: [applescript] (Rob Marquardt 1999)
  13. Re: [applescript] (PCS Technical Support 1999)
  14. Re: [applescript] (PCS Technical Support 1999)
  15. Re: [applescript] (Jesse Williams Proudman 1999)
  16. Re: [applescript] (The Mooseman 1999)
  17. Re: [applescript] (Jesse Williams Proudman 1999)
  18. Re: [applescript] (Aaron Lynch 1999)
  19. [applescript] (Jesse Williams Proudman 1999)
  20. Re: Error with [applescript] (Mícheál O Sé 1999)
  21. Re: Error with [applescript] (The Mooseman 1999)
  22. Re: Error with [applescript] (Mícheál O Sé 1999)
  23. Re: Error with [applescript] (PCS Technical Support 1999)
  24. Re: Error with [applescript] (Kenneth Grome 1999)
  25. Re: Error with [applescript] (Rob Marquardt 1999)
  26. Re: Error with [applescript] (Mícheál O Sé 1999)
  27. Re: Error with [applescript] (Kenneth Grome 1999)
  28. Re: Error with [applescript] (Mícheál O Sé 1999)
  29. Error with [applescript] (Mícheál O Sé 1999)
  30. Re: Error with [applescript] (Dave MacLeay 1999)
  31. Re: Problems with [Applescript] (Kenneth Grome 1997)
  32. Re: Problems with [Applescript] (John Hill 1997)
  33. Re: Problems with [Applescript] (Christer Olsson 1997)
  34. Re: Problems with [Applescript] (Grant Hulbert 1997)
  35. Problems with [Applescript] (Christer Olsson 1997)
  36. [applescript] ( Exec)
Ok.... I give up.... what does script this do exactly?MM >Ahhh >You can do that? Thanks! > >Jesse Williams Proudman - NineWire Production > http://www.ninewire.com <-> Jesse@ninewire.com > Innovative and Creative Web Design and Hosting > >> -----Original Message----- >> From: WebCatalog Talk [mailto:WebDNA-Talk@talk.smithmicro.com]On >> Behalf Of Aaron Lynch >> Sent: Saturday, December 25, 1999 4:05 AM >> To: WebCatalog Talk >> Subject: Re: [applescript] >> >> >> hard code it like so... >> >> Jesse Williams Proudman wrote: >> > >> > When I have the following code in an [applescript] variable and >> I upload it >> > to the server, every time I run it, it kicks back a dialog box >> wining for >> > where Net Events 1.2.1 BG is. How can I fix this? >> > >> > [applescript] >> > set d to >> > >> > property CRLF : (ASCII character 13) & (ASCII character 10) >> > >> > tell application NetEvents 1.2.1 BG of folder 'folder of disk disk >> > try >> > set addr to NameToAddr ([server]) >> > set str to OpenStream addr port 43 >> > WriteStream str data whois [domain].[tld] & >> CRLF & CRLF >> > repeat >> > set d to d & (ReadStream str amount >> 4096) --read up to 4k >> > set stat to StatusStream str --see if >> there is more to read >> > if stat # OPEN and stat # DATA then >> exit repeat --if the server >> > closed, quit >> > end repeat >> > CloseStream str >> > on error err number num >> > Script Error: & err & ( & num & ) >> > end try >> > d >> > end tell >> > [/applescript] >> > >> > Happy Holidays - >> > >> > Jesse Williams Proudman - NineWire Production >> > http://www.ninewire.com <-> Jesse@ninewire.com >> > Innovative and Creative Web Design and Hosting >> > >> > ------------------------------------------------------------- >> > Brought to you by CommuniGate Pro - The Buzz Word Compliant >> Messaging Server. >> > To end your Mail problems go to . >> > >> > This message is sent to you because you are subscribed to >> > the mailing list . >> > To unsubscribe, E-mail to: >> > To switch to the DIGEST mode, E-mail to >> >> >> ------------------------------------------------------------- >> Brought to you by CommuniGate Pro - The Buzz Word Compliant >> Messaging Server. >> To end your Mail problems go to . >> >> This message is sent to you because you are subscribed to >> the mailing list . >> To unsubscribe, E-mail to: >> To switch to the DIGEST mode, E-mail to >> >> > > >------------------------------------------------------------- >Brought to you by CommuniGate Pro - The Buzz Word Compliant Messaging Server. >To end your Mail problems go to . > >This message is sent to you because you are subscribed to > the mailing list . >To unsubscribe, E-mail to: >To switch to the DIGEST mode, E-mail to >------------------------------------------------------------- Brought to you by CommuniGate Pro - The Buzz Word Compliant Messaging Server. To end your Mail problems go to .This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: To switch to the DIGEST mode, E-mail to The Mooseman

DOWNLOAD WEBDNA NOW!

Top Articles:

Talk List

The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...

Related Readings:

Mac 2.1b4 unknown error: BadSuffix (1997) Dumb Question about Docs (1997) cookies and [returnraw] (1997) [SMSI] WebDNA is too good to go away! (2006) Help! WebCat2 bug (1997) PCS Frames (1997) Process SSI and WebCatalog.acgi (1998) Where's Cart Created ? (1997) my price won't move (1997) method of payment (1997) WebCat2 - storing unformatted date data? (1997) problems with WebCat-Plugin () [SHOWNEXT] Examples (1997) Two options to consider (2008) [WebDNA] Problems ... (2013) Make sure I understand this??? (1997) [WebDNA] WebDNA code displaying on page (2012) Trouble with formula.db (1997) FW: Username and password in tcp connect/send (2001) error -571 (2004)