Re: Location of Pulldown Menu Button

2000-11-10 Thread Sivakatirswami
Kevin said: > The built in pulldown and popup commands / stack modes do not support > locating the stack yourself. You could however create your own menu with a > normal stack, and open it as a palette (set the decorations to empty to > remove the border) and script it to behave like a menu, but

Re: Activity

2000-11-10 Thread Simon Lord
I handle upwards of 500 images at a time and MC crashes. I figure it's a memory thing and probably need to look into a hasMemory function to clear it out every so often. I'm looking for a direct output to jpg (of the entire card with layout) to cut down on the time - also seems that this would b

Re: Activity

2000-11-10 Thread Kevin Miller
On 10/11/00 9:54 pm, Simon Lord <[EMAIL PROTECTED]> wrote: > So much activity this week that I thought I'd ask the whole list if they > have a need to export *cards* with all elements as a standard Jpeg file. I > personally really need this so if anyone has a solution (besides taking a > screens

Compiling for Solaris on Mac

2000-11-10 Thread Geoff Canyon
I remembered reading that I can create a Solaris standalone on my Mac simply by pointing at the appropriate executable in the standalone builder, and I happened to have access to a Solaris box today. So I downloaded the Solaris .tar file, and it decompressed into several text files. They were:

RE: Windows 2000 & MetaCard

2000-11-10 Thread Xavier Bury
none problems to report! not thouroughly tested as in NT4 though... Absolutely NO problems to report from Win32 to NT problems other than a silly fld color redraw problem (Win98/ME/TS to NT4SP5 or viceversa.. only) i'll check tomorow if it happens on NT2k... > Hi list, > has anybody experience w

RE: Version tracking

2000-11-10 Thread Xavier Bury
> Still open to other ideas, preferrably w/o modifying the MC system stacks. you can always use an external file but that's really beyond the purpose of having such a great system as MC. you can store the info as a prop as was previously suggested and using a standard would assure upgrades... At

Re: Version tracking

2000-11-10 Thread Sjoerd Op 't Land
Leston Drake wrote/ schreef: > At 06:23 PM 11/10/00 +0100, Sjoerd wrote: >> Leston Drake wrote/ schreef: >> >>> I want to build a system for automatically tracking version information for >>> my stacks. What I'm thinking is storing version information in a property >>> of the stack, and updating

Re: Location of Pulldown Menu Button

2000-11-10 Thread Kevin Miller
On 10/11/00 4:44 am, Sivakatirswami <[EMAIL PROTECTED]> wrote: > I am having trouble with the location of where a menu appears in a pulldown > Button. > > It's a simple button with contents and appearance set to "pulldown" but > I have located the button in the lower left hand corner of a stack.

Re: global coordinates v2.0

2000-11-10 Thread Pierre Sahores
Xavier Bury a écrit : > > i dont know if this is a bug but this script just doesn't work the way it's > supposed to... > i've setup my home stack and mctools stack no more than horizontal 1 pixel > apart. > the loc of stack "mctools" = 242 > the loc of stack "home" = 174 > > Is windows or metaca

Activity

2000-11-10 Thread Simon Lord
So much activity this week that I thought I'd ask the whole list if they have a need to export *cards* with all elements as a standard Jpeg file. I personally really need this so if anyone has a solution (besides taking a screenshot) then let me know. It also cannot be something like saving a PI

Re: disk space

2000-11-10 Thread Pierre Sahores
Monte Goulding a écrit : > > Yes but how big is my as yet unsaved stack? How do I know? stackSpace comes > up with 100 every time. There is no info. How do I get the diskSpace for > specific drives? > > This is what I mean. Sorry if I wasn't clear. > > Regards > > Monte > --snip-- The s

Re: Repeat script

2000-11-10 Thread Phil Davis
Here's another approach that may run faster (DYO testing): repeat for each line tMyLine in tData -- Do something here to the text in tMyLine. -- (In this context, tMyLine is effectively read-only. -- To preserve selected data, put it into another -- container, like thi

Re: Learning about speed of script execution

2000-11-10 Thread diskot123
>calculations are done using variables with the screen locked. It takes >about 5 seconds to execute the handler for 1,000 data points, which I >think is fine given my primitive scripting skills; but when I increase >the size of the data set to 5,000, it takes about 160 seconds or 32 times >longer

Re: Version tracking

2000-11-10 Thread Phil Davis
I realize you would normally want to track more than this, but: If you open a stack as a text file, not as a stack, you'll see that lines 1 to 3 look like this: #!/bin/sh # MetaCard 2.3 stack # The following is not ASCII text, (DON'T save the stack while opened this way!) Rudimentary version inf

Re: Repeat script

2000-11-10 Thread Kevin Miller
On 10/11/00 5:56 pm, James C. Wall <[EMAIL PROTECTED]> wrote: > I use a lot of repeat loops and have not really considered efficiency > until thi posting arrived. The approach I use is as follows > > put the number of lines of tData into x > put 1 into i > repeat x > ##do something to line i of

Re: disk space

2000-11-10 Thread Kevin Miller
On 10/11/00 9:03 pm, Monte Goulding <[EMAIL PROTECTED]> wrote: > Yes but how big is my as yet unsaved stack? How do I know? stackSpace comes > up with 100 every time. There is no info. How do I get the diskSpace for > specific drives? > > This is what I mean. Sorry if I wasn't clear. You ca

Re: Learning about speed of script execution

2000-11-10 Thread Kevin Miller
On 10/11/00 3:54 pm, Dave Cragg <[EMAIL PROTECTED]> wrote: > This takes around 2 milliseconds. Increasing tNumLines to 5000 gives > a result of about 12 milliseconds, which, given the overhead for > building the data list, is about what you'd expect. > > On the other hand, this may not be the re

Re: Version tracking

2000-11-10 Thread Leston Drake
At 06:23 PM 11/10/00 +0100, Sjoerd wrote: >Leston Drake wrote/ schreef: > > > I want to build a system for automatically tracking version information for > > my stacks. What I'm thinking is storing version information in a property > > of the stack, and updating that information each time the stac

Re: Repeat script

2000-11-10 Thread James C. Wall
Dave Cragg wrote >For example, imagine you have list of data (in a variable called >tData) that is 1000 lines long, and you have to do some processing of >each line. The following script can turn out be very inefficient: > >put the number of lines of tData into tNumLines >repeat with i = 1 to t

Re: Repeat script

2000-11-10 Thread James C. Wall
Dave Cragg wrote >For example, imagine you have list of data (in a variable called >tData) that is 1000 lines long, and you have to do some processing of >each line. The following script can turn out be very inefficient: > >put the number of lines of tData into tNumLines >repeat with i = 1 to t

Re: Version tracking

2000-11-10 Thread Peter Reid
>I want to build a system for automatically tracking version >information for my stacks. What I'm thinking is storing version >information in a property of the stack, and updating that >information each time the stack is saved. But I don't see any way to >intercept the save message (MC doesn't

RE: Version tracking

2000-11-10 Thread Xavier Bury
There is no save feature in MC - not like HC! you just need to put a message handler on closestack savestack - handle your versioning here pass closestack end closestack that's it... note your stack will be automatically saved in this way so you might want to put a answer "sure you want to s

Re: Digest metacard.v004.n053

2000-11-10 Thread Raymond E. Griffith
on 11/10/2000 9:31 PM, Xavier Bury <[EMAIL PROTECTED]> wrote: > i dont know if this is a bug but this script just doesn't work the way it's > supposed to... > > set the loc of stack "mctools" to "3,3" > > puts half the MC window beyond the left edge of the screen. > > what's up with that? (tes

Re: Version tracking

2000-11-10 Thread Sjoerd Op 't Land
Leston Drake wrote/ schreef: > I want to build a system for automatically tracking version information for > my stacks. What I'm thinking is storing version information in a property > of the stack, and updating that information each time the stack is saved. > But I don't see any way to intercept

RE: global coordinates

2000-11-10 Thread Larry_R_Huisingh
> From: Xavier Bury <[EMAIL PROTECTED]> > Subject: global coordinates > > i dont know if this is a bug but this script just doesn't > work the way it's > supposed to... > > set the loc of stack "mctools" to "3,3" > > puts half the MC window beyond the left edge of the screen. > > what's up wi

Re: global coordinates

2000-11-10 Thread Eva Isotalo
Hi Xavier, The 'loc' is the centre of the window, image, button, etc. I think what you need is the 'topleft'. set the topleft of stack myStack to 3,3 Regards, Eva Xavier Bury wrote: > > i dont know if this is a bug but this script just doesn't work the way it's > supposed to... > > set the

Re: Learning about speed of script execution

2000-11-10 Thread Dave Cragg
At 8:24 AM -0500 11/10/00, Gregory Lypny wrote: >calculations are done using variables with the screen locked. It takes >about 5 seconds to execute the handler for 1,000 data points, which I >think is fine given my primitive scripting skills; but when I increase >the size of the data set to 5,00

Re: global coordinates

2000-11-10 Thread Dave Cragg
At 1:38 PM +0100 11/10/00, Xavier Bury wrote: >i dont know if this is a bug but this script just doesn't work the way it's >supposed to... > >set the loc of stack "mctools" to "3,3" > >puts half the MC window beyond the left edge of the screen. > >what's up with that? (tested only on windows!) >di

Version tracking

2000-11-10 Thread Leston Drake
I want to build a system for automatically tracking version information for my stacks. What I'm thinking is storing version information in a property of the stack, and updating that information each time the stack is saved. But I don't see any way to intercept the save message (MC doesn't let y

Re: Digest metacard.v004.n043

2000-11-10 Thread Sjoerd Op 't Land
[EMAIL PROTECTED] wrote/ schreef: > In a recent posting regarding displaying a Word file Sjoerd wrote: > >> set the HTMLText of field "doc" to url "file:/Mac HD/Docs/MyDoc.html" >> or >> set the HTMLText of field "doc" to url "file:C:/Docs/MyDoc.htm" >> >>> replace " " with "%20" in localPage

Re: Learning about speed of script execution

2000-11-10 Thread Sjoerd Op 't Land
Gregory Lypny wrote/ schreef: > Hi Everyone, > > As you may know from a recent posting I've made to this list ("Re: > Graphing stack or script and matrix calculations"), I'm developing a > simple stack that computes descriptive statistics for a user-supplied > data set or a randomly-generated se

Re: an example please

2000-11-10 Thread Sjoerd Op 't Land
Eduardo Volpi wrote/ schreef: > Could someone please give an example of a button script > that when clicked would delete a card > and the name of this card from inside a combobox? >From my head (could contain bugs): on mouseUp -- of the "delete" button delete card (the selectedText of button "

Re: Digest metacard.v004.n043

2000-11-10 Thread Sjoerd Op 't Land
[EMAIL PROTECTED] wrote/ schreef: > In a recent posting regarding displaying a Word file Sjoerd wrote: > >> set the HTMLText of field "doc" to url "file:/Mac HD/Docs/MyDoc.html" >> or >> set the HTMLText of field "doc" to url "file:C:/Docs/MyDoc.htm" >> >>> replace " " with "%20" in localPage

Re: Graphing stack or script and matrix calculations

2000-11-10 Thread Gregory Lypny
Hi Monte, Yes, I agree. MC could be such a powerful tool for research (I've already used it as such), but easy access to core mathematical and graphing functions is vital. I remember a software company that used to develop external functions and commands for HyperCard, although the name

Learning about speed of script execution

2000-11-10 Thread Gregory Lypny
Hi Everyone, As you may know from a recent posting I've made to this list ("Re: Graphing stack or script and matrix calculations"), I'm developing a simple stack that computes descriptive statistics for a user-supplied data set or a randomly-generated series. I have a question about

Re: Scott Raney - Quicktime bug?? (repost)

2000-11-10 Thread MacConsult
Have you tried to make a bookcase in QTVR (object) format? Each side can have a hot spot that, with the new commands in MC can take an action. Saludos, Javier Miranda V. MC multimedia Archives: http://www.mail-archive.com/metacard@lists.runrev.com/ Info: http://www.xworlds.com/metacard/mailin

global coordinates v2.0

2000-11-10 Thread Xavier Bury
i dont know if this is a bug but this script just doesn't work the way it's supposed to... i've setup my home stack and mctools stack no more than horizontal 1 pixel apart. the loc of stack "mctools" = 242 the loc of stack "home" = 174 Is windows or metacard or my PC on logical LSD or something?

global coordinates

2000-11-10 Thread Xavier Bury
i dont know if this is a bug but this script just doesn't work the way it's supposed to... set the loc of stack "mctools" to "3,3" puts half the MC window beyond the left edge of the screen. what's up with that? (tested only on windows!) did I miss something? Xavier Archives: http://www.mail-