Re: replacetext and grep

2000-11-14 Thread andu
Make sure you read the documentation very well, declare the variables and experiment starting with the examples given. It's not easy but there is a logic to it in the end. The engine sometimes gets confused and it's a good idea to restart once in a while when practicing. Stuff like "[~]" will

Re: Activity

2000-11-14 Thread Dave Cragg
At 5:50 PM -0500 11/13/00, Simon Lord wrote: I have a similar script running now, the only problem is that MC crashes after about 250-300 images. Then it crashes sooner (ie after converting 100 snaps to jpg) until I rebbot. Then the problem starts all over. Is this all being done in a single

Re: front stack

2000-11-14 Thread Kevin Miller
On 14/11/00 4:27 pm, Monte Goulding [EMAIL PROTECTED] wrote: I have a problem when I open a modal stack in front of a palette. The modal stack can then open the ext_answerColor() from the external collection but when that is closed the modal stack gets hidden behind the palette. Does anyone

Re: Gobligook

2000-11-14 Thread Kevin Miller
On 14/11/00 4:09 pm, Monte Goulding [EMAIL PROTECTED] wrote: Has anyone ever had stacks turn into gobligook and then found that closing metacard and reopening fixes it. This happened to me today. Characters turned into that box thing. Fonts changed. A group resized. Then I close and open and

Re: Activity

2000-11-14 Thread Simon Lord
You might try putting a "compact" command in occasionally (after a certain number of images have been made) to see if that has any effect. The help says it only clears space as a result of creating/deleting cards, but it might be worth trying. (or use "save" instead of "compact") Or run

Re: file sharing (was: Misc. array, stats, math, )

2000-11-14 Thread Sjoerd Op 't Land
Kevin Miller wrote/ schreef: On 14/11/00 4:31 am, andu [EMAIL PROTECTED] wrote: Although I don't disagree with anything said bellow I think the more critical snip access upon request to whomever has something to share. This is a service we would be happy to provide. We could give you a

database stack

2000-11-14 Thread Rick Rice
My wife asked if I could put together a stack which would allow her to store her library of sheet music. She wants to be able to search by title, author, artist, date, and category. After an hour or two it occured to me that someone has probably already done this. Does anyone have a stack

Re: file sharing (was: Misc. array,

2000-11-14 Thread andu
Kevin Miller wrote/ schreef: On 14/11/00 4:31 am, andu [EMAIL PROTECTED] wrote: Although I don't disagree with anything said bellow I think the more critical snip access upon request to whomever has something to share. This is a service we would be happy to provide. We could give you

Re: database stack

2000-11-14 Thread Simon Lord
Personally I would use the FIND and REFERENCE stacks which ship with MetaCard as examples. Seems to me that the Find feature is what you'll need to locate stuff and the Reference stack is an example of multiple criteria. That's if no-one has actually done what you need. -- Cheers, Simon

Re: Printing

2000-11-14 Thread Ed Cawley
I'm not sure if you want to print the contents of fields of the cards or the card, but this is some script which will print multiple card on one sheet. I use it to print herbarium labels from a data base. Some of the script hides buttons on the cards, which I do not want on the label. The way it

quicktime player mouseup

2000-11-14 Thread Rodney Tamblyn
If you create a player object assigned to a quicktime movie and show the controller, mouseup messages are generated when the user manipulates the controller. For example, they will be generated when the user is clicking on the play/pause button. it seems to me that this behavour is

Re:stats

2000-11-14 Thread MMessieh
Anyone interested in my Hypercard Statistical stack to help develop a MetaCard stat stack can download it at http://members.aol.com/mmessieh/stats.sea mike Archives: http://www.mail-archive.com/metacard@lists.runrev.com/ Info: http://www.xworlds.com/metacard/mailinglist.htm Please send bug

Re: Digest metacard.v004.n062

2000-11-14 Thread MMessieh
In a message dated 11/14/00 9:45:31 AM, [EMAIL PROTECTED] writes: I think we now have about 10 people interested in pooling resources to create a standard mc stats library. This is good but with so many people I think we need a better method of collaboration than just giving each other

Re: begginer question

2000-11-14 Thread Eduardo Volpi
-Mensagem original- De: Geoff Canyon Add backgrounds for each of the categories. Each Karate card would have the Karate background on it, each JiuJitsu card would have the JiuJitsu background on it. Then you could simply say: go last card of bg (the short name of this cd) But why

Re: begginer question

2000-11-14 Thread andu
-Mensagem original- De: Geoff Canyon Add backgrounds for each of the categories. Each Karate card would have the Karate background on it, each JiuJitsu card would have the JiuJitsu background on it. Then you could simply say: go last card of bg (the short name of this cd) But why

RE: replacetext and grep

2000-11-14 Thread Xavier Bury
i'll try again, why does put replacetext(y,"FONT.+$",tab) into y not work at all and put replacetext(y,"FONT.+.*$",tab) into y replace ALL the text from the first font tag to the end of the file? and put replacetext(y,"font.*[^]",tab) into y still replace all the text to the end even

RE: replacetext and grep

2000-11-14 Thread andu
if you have: local tUser,tPasswd,tUrl,tPort,tPub put "http://userName:[EMAIL PROTECTED]:82/pub" into x put matchText (x, "^http://(.+):(.+)@(.[^/:]+)(:.[^/]+)(/.+)",tUser,\ tPasswd,tUrl,tPort,tPub) into temp if temp is true then put tUser$$tPasswdtUrltPorttPub See if it works. Regards,