Return Split Data to Array/What Logic for Key Order?

2001-12-14 Thread Sivakatirswami
What is the logic behind returned array key order?? Take this (dummy) data submitted by a web form: email=katir%40hindu.org2+First=Siva3+Last=Katirswami4+add1=107+Kaholalele +Road5+add2=Tampines+Quarter6+add3=+Nottingham+Sector7+City=Kapaa8+US_St

Is Among Error?

2001-12-14 Thread Sivakatirswami
put apples is among apples, oranges returns an error... shouldn't it return true ?? Hinduism Today Sivakatirswami Editor's Assistant/Production Manager [EMAIL PROTECTED] www.HinduismToday.com, www.HimalayanAcademy.com, www.Gurudeva.org, www.hindu.org Read The Master Course Lesson of the Day

Re: Is Among Error?

2001-12-14 Thread andu
Sivakatirswami wrote: put apples is among apples, oranges returns an error... shouldn't it return true apples is among the items of apples, oranges = true ?? Hinduism Today Sivakatirswami Editor's Assistant/Production Manager [EMAIL PROTECTED] www.HinduismToday.com,

Re: Field limit?

2001-12-14 Thread eugen helbling
Jacqueline Landman Gay wrote: Shari wrote: I have a very large text file I wanted to import into a field. When I use the IMPORT button, the entire file ends up on one line, even with the wrapping turned on. And it doesn't import the entire file. When I use a script to import,

Re: Return Split Data to Array/What Logic for Key Order?

2001-12-14 Thread eugen helbling
Hi Sivakatirswami, Sivakatirswami wrote: What is the logic behind returned array key order?? Take this (dummy) data submitted by a web form: email=katir%40hindu.org2+First=Siva3+Last=Katirswami4+add1=107+Kaholalele

Re: Field limit?

2001-12-14 Thread Dave Cragg
At 6:24 pm -0500 13/12/01, Shari wrote: I have a very large text file I wanted to import into a field. When I use the IMPORT button, the entire file ends up on one line, even with the wrapping turned on. And it doesn't import the entire file. Are there any unfriendly characters in the file?

Re: Field limit?

2001-12-14 Thread andu
Shari wrote: I have a very large text file I wanted to import into a field. When I use the IMPORT button, the entire file ends up on one line, even with the wrapping turned on. And it doesn't import the entire file. When I use a script to import, open file theFile read

mailTo problems

2001-12-14 Thread Hugh Senior
This standard mailTo handler is meant to launch the user's default email program and open a new email with the recipient's address under 95, 98, Millennium, NT, XP and 2000. It is causing problems as mc complains about 'process already open' with no email program on screen, or in XP something

Timer

2001-12-14 Thread Domi
I want to rewrite a little timer I had in HC -- without resorting to wait or idle which are not recommended in MC... So, I have a button which starts the timer, and a numeric field which the seconds remaining. My goal is to show the seconds, for instance from 10 down to 0. I wrote a loop

Re: Is Among Error?

2001-12-14 Thread Sjoerd Op 't Land
Sivakatirswami wrote/ schreef: put apples is among apples, oranges returns an error... shouldn't it return true ?? Should be: put apples is among the items of apples, oranges As you could use put a is among the chars of abcdefg put My is among the words of My Fair Lady Hinduism

Re: Timer

2001-12-14 Thread Klaus Major
Hi Domi, I want to rewrite a little timer I had in HC -- without resorting to wait or idle which are not recommended in MC... ... put 10 into field temps repeat 10 times send mouseup to field temps in 1 second end repeat The field script: on mouseup subtract 1 from me end

Re: mailTo problems

2001-12-14 Thread Ken Ray
Hugh, I don't know if this works on XP, but here's my handler... perhaps you could try it and see if it worked? on GoMail tMailTo switch (the platform) case MacOS send mailto:tMailTo to program Finder with GURLGURL break case Win32 -- First, read the WIndows registry to get

Re: mailTo problems

2001-12-14 Thread Hugh Senior
Hi Ray... Same problem (Win2000)... process is open but email prog not displayed just hangs. Then OS msg Which program do you want to use to open the document email address? is displayed! Dunno... Is launch broke? I don't know if this works on XP, but here's my handler... perhaps you

Re: mailTo problems

2001-12-14 Thread Ken Ray
Hugh, What email program is attempting to be launched? Ken Ray Sons of Thunder Software Email: [EMAIL PROTECTED] Web Site: http://www.sonsothunder.com/ - Original Message - From: Hugh Senior [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 14, 2001 12:02 PM Subject: Re:

Re: Timer

2001-12-14 Thread Domi
Klaus Major ecrivait / wrote: This sends the message every 1 second until the content of fld temps is 0, which means the timer did his work :-) It is very neat a solution, indeed :-) Thus, the answer was not a loop but a self-calling recursive function! -- Regards, Dominique

Re: Timer

2001-12-14 Thread Phil Davis
Hi Dominique, I want to rewrite a little timer I had in HC -- without resorting to wait or idle which are not recommended in MC... So, I have a button which starts the timer, and a numeric field which the seconds remaining. My goal is to show the seconds, for instance from 10 down to 0.

Re: Field limit?

2001-12-14 Thread Shari
The reason it was all on one line was because the entire text was a very long list of items. As each item was a single word, I used words instead, and now it is readable. Regarding the limit of a field: Apparently it reached the limit of the field, and when it did that, Metacard just froze.

Matrix (or array) problem...

2001-12-14 Thread David Bovill
I have essentially two lists containing boolean values (ie 0 or 1), that I want to find the intersection of (that is if either value is true then the same position in the new list is true otherwise it is false). ie011 100 000 100 intersect 000 equals 000

Re: Field limit?

2001-12-14 Thread Jacqueline Landman Gay
Shari wrote: The reason it was all on one line was because the entire text was a very long list of items. As each item was a single word, I used words instead, and now it is readable. Regarding the limit of a field: Apparently it reached the limit of the field, and when it did that,

Why all the empty opencard handlers?

2001-12-14 Thread David Epstein
Why does Metacard place an empty on opencard / end opencard handler everywhere, and how can I get it to stop? This gets placed in the script of a newly created stack, and in the script of a newly created card, and in the script of a newly created background. And if I delete it it returns! Only

Re: Why all the empty opencard handlers?

2001-12-14 Thread Jeanne A. E. DeVoto
At 9:01 AM -0800 12/14/2001, David Epstein wrote: Why does Metacard place an empty on opencard / end opencard handler everywhere, and how can I get it to stop? This gets placed in the script of a newly created stack, and in the script of a newly created card, and in the script of a newly created

Re: Why all the empty opencard handlers?

2001-12-14 Thread Jacqueline Landman Gay
David Epstein wrote: Why does Metacard place an empty on opencard / end opencard handler everywhere, and how can I get it to stop? HyperCard does the same thing. It isn't really there. It's just an empty template that gets put into most empty scripts when you open the editor. If you close