Re: checking removable drives

2005-11-02 Thread Ken Ray
On 11/3/05 1:29 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Ken, Richard, > > it's true it's open for discussion but in general, programs that write > prefs to the same app folder have > the advantage that they can be moved anywhere later by the user. > > The registry is practical in ca

Re: How to tell a line from a paragraph?

2005-11-02 Thread Dan Shafer
Geoff Way cool! I hadn't even looked at formattedText from that viewpoint. So the original poster's problem could be solved something like: on mouseUp put the formattedText of field "foo" into field "holder" find "aid" in field "holder" put the foundLIne end mouseUp On Nov 2, 200

Re: checking removable drives

2005-11-02 Thread xavier . bury
Ken, Richard, it's true it's open for discussion but in general, programs that write prefs to the same app folder have the advantage that they can be moved anywhere later by the user. The registry is practical in case you want to update with an installer so it's easy to see where the app was i

Re: checking removable drives

2005-11-02 Thread Ken Ray
On 11/2/05 11:42 PM, "Richard Gaskin" <[EMAIL PROTECTED]> wrote: > Could there be a downside to writing prefs or other such app-managed > data to a folder either within or at the same level as our program's > folder if we have permissions to do so? Not that I can see - especially in Windows where

Re: I guess I stumped everyone. :(

2005-11-02 Thread Ken Ray
On 11/2/05 9:51 PM, "Charles Hartman" <[EMAIL PROTECTED]> wrote: > > On Nov 2, 2005, at 10:42 PM, Charles Hartman wrote: > >>> on openStack >>> if the owner of the target is me then >>> set the rect of this stack to the screenRect >>> else >>> pass openStack >>> end if >>> end open

Re: How to tell a line from a paragraph?

2005-11-02 Thread Geoff Canyon
Check out the formattedText property. It gives you back the text of a field with returns inserted where the text is wrapped in the field. On Nov 2, 2005, at 3:42 PM, Michael wrote: Is it possible to determine on which "line" a word resides in a text field, where a line is defined not as a cr

Re: checking removable drives

2005-11-02 Thread simplsol
Richard, You should be able to do anything you want to with your own stuff in your own part of the world. As long as your permissions don't interfer with the OS or other apps., I see no harm. Paul Looney -Original Message- From: Richard Gaskin <[EMAIL PROTECTED]> To: How to use Revolut

Re: checking removable drives

2005-11-02 Thread Richard Gaskin
Ken et al - I appreciate the thought that y'all put into trying to solve this, but in brainstorming with Paul Looney and Bill Vlahos, each of them independently hit on a similar possible solution. The only problem is that it's so simple it feels like cheating. :) Keeping our focus on the go

Re: A must have stack for all...

2005-11-02 Thread Jerry J
altEmailHarness by Chipp Walters using Sean Shao's GREAT libSmtp253 What does this do? Makes sending an email from your stack super simple. And saves me sussing it out by myself! I'm working on a stack that collects level and flow data from several wells, a reservoir and a weather statio

Re: Globals Question

2005-11-02 Thread Mark Wieder
Raymond- Wednesday, November 2, 2005, 3:13:51 PM, you wrote: >>From this I can set a global or get a value anywhere in the stack at any > time without additional global declarations, no matter what the object is. Nice ...and even better would be to make myglobalarray local, as nonintutive as tha

Re: Layout ?

2005-11-02 Thread Jan Schenkel
--- Sarah Reichelt <[EMAIL PROTECTED]> wrote: > > I want to organize the same datas in different > ways. > > Is there a way to do so with Revolution ? > > Is there something that works like layouts in > FileMaker and allows to > > show the same fields differently according to > needs ? > > > > Pro

Re: [Slightly OT?] Why It's Hard to Explain Rev

2005-11-02 Thread Judy Perry
I love it!!! Judy On Wed, 2 Nov 2005, Dan Shafer wrote: > When HyperCard was my development tool of choice, I often bemoaned > the fact that Apple itself seemed unable to articulate what HyperCard > really was. "It's a digestive aid AND a floor wax!" In my baser > moments, I wondered if the prob

Re: [Slightly OT?] Why It's Hard to Explain Rev

2005-11-02 Thread Ken Ray
On 11/2/05 4:33 PM, "Dan Shafer" <[EMAIL PROTECTED]> wrote: > When HyperCard was my development tool of choice, I often bemoaned > the fact that Apple itself seemed unable to articulate what HyperCard > really was. "It's a digestive aid AND a floor wax!" In my baser > moments, I wondered if the pr

Re: checking removable drives

2005-11-02 Thread Ken Ray
On 11/2/05 7:43 PM, "Buster" <[EMAIL PROTECTED]> wrote: > Hi, > > As you didn't mention which info you exactly need, > this call can help you get the info of all devices for starter: > > put shell("diskutil list") Yes, and after checking, you can do this: on mouseUp put isRemovable("USB DIS

Re: I guess I stumped everyone. :(

2005-11-02 Thread Charles Hartman
On Nov 2, 2005, at 10:42 PM, Charles Hartman wrote: on openStack if the owner of the target is me then set the rect of this stack to the screenRect else pass openStack end if end openStack -- but when I do add this bracketing condition to my preOpenStack handler in the main st

Re: I guess I stumped everyone. :(

2005-11-02 Thread Charles Hartman
Wow! Until I read this message it didn't occur to me that the preOpenStack in the main stack of the database app I'm working on was being called (I just checked) every time one of the five or six substacks opens. Since that handler opens the database and reads much of it into RAM, that woul

Re: I guess I stumped everyone. :(

2005-11-02 Thread Ken Ray
On 11/2/05 7:18 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Thanks for responding Jacque, > > As I said before in other questions to the group I've apparently suffered > some sort of corruption. These three windows all open to the full screen every > time. It doesn't matter that I resize

Re: Layout ?

2005-11-02 Thread Sarah Reichelt
> I want to organize the same datas in different ways. > Is there a way to do so with Revolution ? > Is there something that works like layouts in FileMaker and allows to > show the same fields differently according to needs ? > Probably the easiest way is to put your data into one stack and have

Re: checking removable drives

2005-11-02 Thread Buster
Hi, As you didn't mention which info you exactly need, this call can help you get the info of all devices for starter: put shell("diskutil list") Greetings, Wouter On 01 Nov 2005, at 22:22, Richard Gaskin wrote: I'd like to be able to determine if an app is running from a removable driv

Re: How to tell a line from a paragraph?

2005-11-02 Thread J. Landman Gay
Michael wrote: Hi: Is it possible to determine on which "line" a word resides in a text field, where a line is defined not as a cr-delimited paragraph but as a "row" in the field's display? I wrote a function a while back that tells how many visible lines are in a field, regardless of text wr

Re: A must have stack for all...

2005-11-02 Thread Dan Shafer
Amazing. Stupendous. Incredibly useful! I've already added it to one of my projects and the client is ecstatic. Dan On Nov 2, 2005, at 3:14 PM, Chipp Walters wrote: altEmailHarness by Chipp Walters using Sean Shao's GREAT libSmtp253 What does this do? Makes sending an email from your sta

Re: How to tell a line from a paragraph?

2005-11-02 Thread Dan Shafer
Not without a lot of laborious calculation, I don't think. On Nov 2, 2005, at 3:42 PM, Michael wrote: Hi: Is it possible to determine on which "line" a word resides in a text field, where a line is defined not as a cr-delimited paragraph but as a "row" in the field's display? Thanks, m

How to tell a line from a paragraph?

2005-11-02 Thread Michael
Hi: Is it possible to determine on which "line" a word resides in a text field, where a line is defined not as a cr-delimited paragraph but as a "row" in the field's display? Thanks, m ___ use-revolution mailing list use-revolution@lists.runrev.com P

A must have stack for all...

2005-11-02 Thread Chipp Walters
altEmailHarness by Chipp Walters using Sean Shao's GREAT libSmtp253 What does this do? Makes sending an email from your stack super simple. This is a simple test stack for Sean Shao's fine SMTP library used for sending emails directly from Revolution. This stack works with the included lib

Re: Globals Question

2005-11-02 Thread Raymond E. Griffith
>> Hi, >> >> I'm a bit confused over the Scope of Global Symbols. If I have a stack with: >> >> global gGlobal >> >> defined outside of all handlers >> >> and the same in a card or control script BUT in the same Stack, is >> the same "gGlobal" used in both places? >> >> Thanks a lot >> Dave >

[Slightly OT?] Why It's Hard to Explain Rev

2005-11-02 Thread Dan Shafer
When HyperCard was my development tool of choice, I often bemoaned the fact that Apple itself seemed unable to articulate what HyperCard really was. "It's a digestive aid AND a floor wax!" In my baser moments, I wondered if the problem wasn't that Apple was just too dumb to get it. I've h

Re: checking removable drives

2005-11-02 Thread Mark Wieder
Richard- Tuesday, November 1, 2005, 1:22:08 PM, you wrote: > I'd like to be able to determine if an app is running from a removable > drive. > I've found that on OS X I can call system_profiler from shell, but it > takes between 2 and 4 seconds on my 1GHz PB. > And I've found no solution at all

Re: I guess I stumped everyone. :(

2005-11-02 Thread Mark Wieder
Jacque- Wednesday, November 2, 2005, 10:06:55 AM, you wrote: > Charles Hartman wrote: > > > > On Nov 2, 2005, at 11:46 AM, J. Landman Gay wrote: > > > >> In the button, add this script: > >> > >> on mouseup > >> bloogle > >> end mouseup > >> > >> When you click the button it will gene

Re: option button remains grabbed

2005-11-02 Thread rev
Quoting [EMAIL PROTECTED]: Hi All PS It the behaviour is only with the an option button??? Cheers Bob I have an option button added to a form with the script on mousedown if the mainstack of this stack is Armbase then if the controlkey is down then grab me

option button remains grabbed

2005-11-02 Thread rev
Hi All I have an option button added to a form with the script on mousedown if the mainstack of this stack is Armbase then if the controlkey is down then grab me end if end if end mousedown When the button is on the destination stack it

Re: Select All and Undo

2005-11-02 Thread Klaus Major
Hi Alex, Klaus Major wrote: And, sigh, Undo still does not in most of the time in the newest version. What exatcly cannot be "undone"? Works here of course ;-) I find most things can't be undone in the script editor. 1. Start a new mainstack, put in a button and edit its script add a line

Grid Fields

2005-11-02 Thread Timothy Miller
Howdy, I'm trying to understand grids in fields. I'm hopin' they work like, say, tables in Microsoft Word. That would be s cool! (On the other hand, that seems improbable. Even MS Word has trouble managing its own tables, and they seem to ask a lot of the CPU.) Having studied the docume

Re: Select All and Undo

2005-11-02 Thread Alex Tweedly
Klaus Major wrote: And, sigh, Undo still does not in most of the time in the newest version. What exatcly cannot be "undone"? Works here of course ;-) I find most things can't be undone in the script editor. 1. Start a new mainstack, put in a button and edit its script add a line, so i

RE: How to limit field to one line?

2005-11-02 Thread MisterX
most likely how rev displays characters in a font. + html or rtf involved. This is an old MC problem. it's something to do with spacing. Maybe tabs. Just be carefull how much data you copy paste to rev from excel - it can crash it all. Once you see text go haywire, save everything... Pasting can

Re: How to limit field to one line?

2005-11-02 Thread Richard Gaskin
[EMAIL PROTECTED] wrote: Richard, I'm finding that the display of data becomes unreadable somewhere around 40,000 characters (this may depend on the field width settings - I have not experimented with that - that many characters could not be shown on a a screen without scrolling anyway). Thi

Re: How to limit field to one line?

2005-11-02 Thread simplsol
Richard, I'm finding that the display of data becomes unreadable somewhere around 40,000 characters (this may depend on the field width settings - I have not experimented with that - that many characters could not be shown on a a screen without scrolling anyway). And, as you said, sorts tend t

Re: I guess I stumped everyone. :(

2005-11-02 Thread J. Landman Gay
Charles Hartman wrote: > > On Nov 2, 2005, at 11:46 AM, J. Landman Gay wrote: > >> In the button, add this script: >> >> on mouseup >> bloogle >> end mouseup >> >> When you click the button it will generate an error. See if the error >> dialog is the correct size. > > > -- and if it *doesn't* g

Re: Select All and Undo

2005-11-02 Thread Klaus Major
Hi Gregory, Hello Everyone, Am I imagining things, or did there used to be a Select All menu item under the Edit menu of the Script Editor? So sorry, i totally overlooked "... of the Script Editor". Yep, that's missing. ... Regards, Greg Regards Klaus Major

Re: How to limit field to one line?

2005-11-02 Thread kee nethery
returnInField in case someone enters a return in the field. closeField in case someone pastes multiple lines of text into the field on returnInField put line 1 of me into me answer "Only one line of text is allowed in this field." with :OK" end returnInField on closeField if return is in m

Re: Select All and Undo

2005-11-02 Thread Klaus Major
Hi Gregory, Hello Everyone, Am I imagining things, or did there used to be a Select All menu item under the Edit menu of the Script Editor? I just took a look and it is still there, Rev 2.6.1! And, sigh, Undo still does not in most of the time in the newest version. What exatcly canno

Re: How to limit field to one line?

2005-11-02 Thread J. Landman Gay
Garrett R. Hylltun wrote: Greetings, Can anyone explain to me how to limit a field to only one line, and to intercept the return key from within that field? Besides the returnInField handler that others have mentioned, you can also limit the amount of text without any scripting at all. Just

Select All and Undo

2005-11-02 Thread Gregory Lypny
Hello Everyone, Am I imagining things, or did there used to be a Select All menu item under the Edit menu of the Script Editor? And, sigh, Undo still does not in most of the time in the newest version. Regards, Greg ___

Re: Re: Re: [Ann] ArcadeEngine 1.5 released

2005-11-02 Thread Judy Perry
Hi Malte, No hurry -- that class isn't until February. Thanks! Judy On Wed, 2 Nov 2005, Malte Brill wrote: > We will make a regular 10 user license available through the store and > are working on an additional edu discount, in the meantime please > contact [EMAIL PROTECTED] _

Re: How to limit field to one line?

2005-11-02 Thread Roger . E . Eller
Garrett R. Hylltun wrote: > Can anyone explain to me how to limit a field to only one line, set the lockText of fld "x" to true > and to intercept the return key from within that field? -- Put this in the script of the field: on returnInField -- do something (or nothing) answer "You pre

Re: I guess I stumped everyone. :(

2005-11-02 Thread Charles Hartman
On Nov 2, 2005, at 11:46 AM, J. Landman Gay wrote: In the button, add this script: on mouseup bloogle end mouseup When you click the button it will generate an error. See if the error dialog is the correct size. -- and if it *doesn't* generate an error, you will have discovered a litt

Re: question: how much info fits in a field?

2005-11-02 Thread Richard Gaskin
[EMAIL PROTECTED] wrote: Does the limit of 65,536 characters per line in fields also apply to lines in data stored as custom properties? Only when using the sort command on that data. Simply getting and putting data in and out of custom properties has no practical limit on size, dimension, o

Re: How to limit field to one line?

2005-11-02 Thread Richard Gaskin
Garrett R. Hylltun wrote: > Can anyone explain to me how to limit a field to only one line, > and to intercept the return key from within that field? The text engine in Rev will accurately display lines up to 65,535 characters. Beyond that it seems the data is maintained, but display yields u

RE: Going MAD with customKeys!!!!!

2005-11-02 Thread MisterX
David, I know dynamic scripting really well. As Eric showed, you can easily generate your own globals. Then again, do you really need to? Let me explain with something im working on right now. A virtual-dynamic global database - for the TAOO conscience... if parray is an array and a global as w

RE: question: how much info fits in a field?

2005-11-02 Thread MisterX
are you storing your DVDs in your stacks? ;) I wouldn’t do it with card's data. Anything above 1 gets too slow. I would use an sql or file based database preferably. Or as many attest, the custom properties awaits you ;) They are apparently limitless... cheers Xavier > -Original Message

Re: question: how much info fits in a field?

2005-11-02 Thread simplsol
Does the limit of 65,536 characters per line in fields also apply to lines in data stored as custom properties? Paul Looney -Original Message- From: Eric Chatonet <[EMAIL PROTECTED]> To: How to use Revolution Sent: Wed, 2 Nov 2005 16:55:05 +0100 Subject: Re: question: how much info fits

Re: How to limit field to one line?

2005-11-02 Thread Garrett R. Hylltun
On Wed, 2 Nov 2005 17:54:09 +0100 Eric Chatonet <[EMAIL PROTECTED]> wrote: [snip] > > Best Regards from Paris, > > Eric Chatonet. Merci beaucoup Eric :-) -Garrett ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url t

Re: question: how much info fits in a field?

2005-11-02 Thread simplsol
On 32 bit systems is the 4G limit per each open stack or a total for all currently open stacks? Paul Looney -Original Message- From: Wouter <[EMAIL PROTECTED]> To: How to use Revolution Sent: Wed, 2 Nov 2005 17:02:54 +0100 Subject: Re: question: how much info fits in a field? Hi,   

Re: How to limit field to one line?

2005-11-02 Thread Eric Chatonet
Hi Garret, In the script of your field: on returnInField end returnInField This will prevent the return key to insert a carriage return and will execute your statements instead :-) Le 2 nov. 05 à 17:49, Garrett R. Hylltun a écrit : Can anyone explain to me how to limit a field to only o

Re: question: how much info fits in a field?

2005-11-02 Thread Troy Rollins
On Oct 31, 2005, at 4:00 PM, Andre Garzia wrote: I am using a field to record TCP Flow on a given port on my system by redirecting tcpflow app using appleEvents which makes much easier to debug CGI apps since all traffic is inside a nice field, the problem is, how much info can I dump into a

Re: Trying to return results from a query run on the database

2005-11-02 Thread Sean Shao
Hi Fred, as Trevor pointed out the proper syntax for the revDataFromQuery function is: revDataFromQuery([columnDelim],[rowDelim],databaseID,SQLQuery[,varsList]) You'll notice that the first two parameters are optional, but the "commas" are not, so you're command should be something like so:

How to limit field to one line?

2005-11-02 Thread Garrett R. Hylltun
Greetings, Can anyone explain to me how to limit a field to only one line, and to intercept the return key from within that field? Any info is appreciated. Thanks in advance, -Garrett ___ use-revolution mailing list use-revolution@lists.runrev.com Ple

Re: ARGH! 2.6.1 keeps crashing

2005-11-02 Thread J. Landman Gay
[EMAIL PROTECTED] wrote: Hi TJ Are you using any plugins? I was only running the altPlugin collection at the time -- but none of these Transcript-based libraries should cause an 'illegal read' exception at OS level. What OS? If windows, send me the eventviewer's event information, eventid,

Re: I guess I stumped everyone. :(

2005-11-02 Thread J. Landman Gay
[EMAIL PROTECTED] wrote: In a message dated 11/1/05 10:57:24 PM, [EMAIL PROTECTED] writes: [EMAIL PROTECTED] wrote: Hi Again, Yesterday I asked: "How do I change the default size of the inspector, error & script windows? I'm on Mac OSX." I haven't received an answer yet. Surely someone

Re: question: how much info fits in a field?

2005-11-02 Thread J. Landman Gay
Andre Garzia wrote: Folks, I am using a field to record TCP Flow on a given port on my system by redirecting tcpflow app using appleEvents which makes much easier to debug CGI apps since all traffic is inside a nice field, the problem is, how much info can I dump into a field, I am loggin

Re: question: how much info fits in a field?

2005-11-02 Thread Wouter
Hi, Have a look in the docs -> topics with filter "limits" (using a field with these amounts can make it/rev quite unwieldy) Greetings, Wouter On 31 Oct 2005, at 22:00, Andre Garzia wrote: Folks, I am using a field to record TCP Flow on a given port on my system by redirecting tcpflow a

Re: question: how much info fits in a field?

2005-11-02 Thread Eric Chatonet
Hi Andre, The maximum total characters in a field is unlimited (except regarding to the memory needed) But a line can't exceed 65,536 characters. Le 31 oct. 05 à 22:00, Andre Garzia a écrit : I am using a field to record TCP Flow on a given port on my system by redirecting tcpflow app usin

Re: counting runs

2005-11-02 Thread Jim Ault
On 10/31/05 4:22 PM, "Jason Tangen" <[EMAIL PROTECTED]> wrote: > Hello, > > I'm trying to solve a seemingly simple problem and I could use some > help. A coin flip will come out "Heads" or "Tails" and will produce, > for example, the following series for 20 flips: > > T,T,H,T,T,H,H,H,T,T,H,T,H,H

question: how much info fits in a field?

2005-11-02 Thread Andre Garzia
Folks, I am using a field to record TCP Flow on a given port on my system by redirecting tcpflow app using appleEvents which makes much easier to debug CGI apps since all traffic is inside a nice field, the problem is, how much info can I dump into a field, I am loggin all traffic, so aft

Help Docs -> Rev Stacks

2005-11-02 Thread Todd Geist
Hello, Has anybody done anything with importing the HTML Help files that OSX uses into Rev stacks?. I would love to be able to annotate the docs for some applications that I use all the time. Possible create my own UI's to them with favorite's, bookmarks etc. Any thoughts? Thanks Todd --

Re: Globals Question

2005-11-02 Thread Troy Rollins
On Nov 2, 2005, at 9:20 AM, David Burgun wrote: This is what I don't understand. If I define gGlobal in the stack script and also define it in the card script, are there one or two gGlobals's created? Once a variable is declared as global, there should be only a single variable with that nam

Re: Going MAD with customKeys!!!!!

2005-11-02 Thread David Burgun
Hi Dave, Assuming that NAMEA is a variable and cp_PrefsArray_NAMEA a custom property set: To delete this specific custom property set: do "set the cp_PrefsArray_" & NAMEA && "of this stack to empty" To delete all custom property sets you created: set the customPropertySets of this stack to empty

Re: Going MAD with customKeys!!!!!

2005-11-02 Thread David Burgun
Hi Xavier, The problem is that I have: the cp_PrefsArray_NameA of Stack "CommonStack" the cp_PrefsArray_NameB of Stack "CommonStack" the cp_PrefsArray_NameC of Stack "CommonStack" etc. etc. etc. (NameA, NameB, NameC can by anything the calling stack(s) chose to name them) But I don't know the

ANN Sukodu puzzles--again

2005-11-02 Thread Jim Hurley
Our local paper has begun to carry a daily Sukodu puzzle. A friend challenged me to solve one that he had trouble with. I couldn't find a solution; I kept running into situations where I could find no possible entry without guessing. To work on it I loaded up Alex Tweedly wonderful Sukodu Assi

Re: Going MAD with customKeys!!!!!

2005-11-02 Thread Eric Chatonet
Hi Dave, Assuming that NAMEA is a variable and cp_PrefsArray_NAMEA a custom property set: To delete this specific custom property set: do "set the cp_PrefsArray_" & NAMEA && "of this stack to empty" To delete all custom property sets you created: set the customPropertySets of this stack to em

Re: Going MAD with customKeys!!!!!

2005-11-02 Thread xavier . bury
David, on mouseUp put 1 into test["a"] put 2 into test["b"] put 3 into test["c"] delete local test["b"] put the keys of test end mouseUp delete local (or global) array[arraykey] or (the following which applies for custompropertysets but not arrays get the keys of the array of control 1 delete

Re: Globals Question

2005-11-02 Thread Robert Brenstein
Hi, I'm a bit confused over the Scope of Global Symbols. If I have a stack with: global gGlobal defined outside of all handlers and the same in a card or control script BUT in the same Stack, is the same "gGlobal" used in both places? Thanks a lot Dave There are two aspects to scope that

Re: Globals Question

2005-11-02 Thread David Burgun
Hi, That's what I thought should in the case, thanks a lot, I have a weird bug and I was wondering if the Value in the card "just-happened" to the be the same in the stack most of the time! Thnaks again Dave Hi again, Le 2 nov. 05 à 15:20, David Burgun a écrit : This is what I don't unders

Re: Globals Question

2005-11-02 Thread Eric Chatonet
Hi again, Le 2 nov. 05 à 15:20, David Burgun a écrit : This is what I don't understand. If I define gGlobal in the stack script and also define it in the card script, are there one or two gGlobals's created? Only one global with the same name :-) Try this: In any stack: on mouseUp global

Re: Going MAD with customKeys!!!!!

2005-11-02 Thread David Burgun
Hi, Sorry I don't don't get it. I have a number of Arrays stored as: "cp_PrefsArray_NAMEA" "cp_PrefsArray_NAMEB" "cp_PrefsArray_NAMEC" But I don't know the names (NAMEA,NAMEB,NAMEC) in the script. I just want to empty them all and start again. I thought that setting customKeys to empty shoul

Re: Globals Question

2005-11-02 Thread David Burgun
Hi Dave, By definition, the value of any global is available everywhere in any open stack/script/handler/function where this global is declared. This is what I don't understand. If I define gGlobal in the stack script and also define it in the card script, are there one or two gGlobals's create

Re: Going MAD with customKeys!!!!!

2005-11-02 Thread xavier . bury
David, Before i went mad, i was already crazy ;) The best trick i can give you is this: put the myprops["keyname"] of mystack into x x is not an array. put the myprops of mystack into x x is an array... BUT, you cannot store an array into the myprops["keyname"] of mystack only into the mypr

Re: Globals Question

2005-11-02 Thread Eric Chatonet
Hi Dave, By definition, the value of any global is available everywhere in any open stack/script/handler/function where this global is declared. All current global variables names are returned by the globalNames property. Have a look at the globals pane of the message box. For instance, try

Going MAD with customKeys!!!!!

2005-11-02 Thread David Burgun
Hi All, I have a stack that is used as a library stack. I use it to hold data for in arrays which are stored in Custom Properties. I create the arrays like this: put "XXX" into theName function SetArray(theName,theArray) put "cp_PrefsArray_" & theName" into myArrayName set the customPropert

Re: Globals Question

2005-11-02 Thread xavier . bury
Dave, global gGlobal on handler etc... the gGlobal is available to all handlers "below" the global declaration. however in on handler global gGlobal end handler the gGlobal is only available in that handler... cheers Xavier [EMAIL PROTECTED] wrote on 02/11/2005 14:13:07: > Hi, > >

Re: I guess I stumped everyone. :(

2005-11-02 Thread AbilityForms
In a message dated 11/1/05 10:57:24 PM, [EMAIL PROTECTED] writes: > [EMAIL PROTECTED] wrote: > > Hi Again, > > > > Yesterday I asked:   "How do I change the default size of the inspector, > > error & script windows? > > I'm on Mac OSX." I haven't received an answer yet. Surely someone must > k

Globals Question

2005-11-02 Thread David Burgun
Hi, I'm a bit confused over the Scope of Global Symbols. If I have a stack with: global gGlobal defined outside of all handlers and the same in a card or control script BUT in the same Stack, is the same "gGlobal" used in both places? Thanks a lot Dave

CustomKeys again!

2005-11-02 Thread David Burgun
Hi, I have a stack with a Single Button on it and the following script: on mouseUp local myKeys put the customKeys of this stack into myKeys end mouseUp When I look at the array it's empty, however if I look at the Stack via the Stack Inspector in the IDE it shows loads of customKeys! W

Re: Re: Re: [Ann] ArcadeEngine 1.5 released

2005-11-02 Thread Malte Brill
Hi Judy, Btw, is there an edu/bulk pricing that would apply? (given that I'm also asking the students to buy Rev...) Usually, we all chip-in for 10-packs and split the costs. We will make a regular 10 user license available through the store and are working on an additional edu discount, in

Re: Tab Panel Question

2005-11-02 Thread rev
Quoting Roark <[EMAIL PROTECTED]>: Hey everybody!! Hi Roark I'm new to everything revolution. Correct me please if I'm not supposed to be asking these sorts of questions here or if there's a better place to ask them. Her eis the best place. Everyone is very helpfull from my experience.

Re: ARGH! 2.6.1 keeps crashing

2005-11-02 Thread xavier . bury
Hi TJ Are you using any plugins? > I was only running the altPlugin collection at the > time -- but none of these Transcript-based libraries > should cause an 'illegal read' exception at OS level. What OS? If windows, send me the eventviewer's event information, eventid, etc... I can look this

Re: ARGH! 2.6.1 keeps crashing

2005-11-02 Thread TJ Frame
Chipp, The acting funny part is just the random crash/vanishing stuff that I mentioned in my first post. I can't really replicate it, which is so frustrating. It happens someimes when editng a script or occasinally when clicking on an object. The one thing I can say is that it always hapens after