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:

Instructions for Digest (1997) Looking For WebCatalog Migration Assistance (2003) ShowCart Errors (2000) Passing Cart variable to subdirectory files? (1997) Old Style vs XML Syntax (2003) [WebDNA] Froala Editor working with WebDNA (2016) WebCatalog NT beta 18 problem (1997) Banner DNA (1997) How true is this? (1999) suffix mapping, use of cache, etc. (1997) Thanks for tips, more quest (1997) Smart caching problems with 2.1b3? (1997) Electronic Delivery (1997) two unique banners on one page (1997) searchable list archive (1997) Re1000001: Setting up shop (1997) Problems with shopping cart (1997) [WriteFile] problems (1997) WebCatalog Hosting (1996) Itools, WEBCAT OSX (2003)