Re: What is wrong with this script?

2010-11-04 Thread charles61
Jacqueline, I am using the handler to send mouseUp commands to Print Only cards for printing. I will try your suggestion of combing two commands in a handler. And, yes I did try command period several times without success. Charles Szasz csz...@mac.com On Nov 4, 2010, at 9:23 PM, J. Landma

Re: What is wrong with this script?

2010-11-04 Thread J. Landman Gay
On 11/4/10 7:55 PM, charles61 wrote: When I of marked card y, the script that looks like the following caused the printing to hang and I had to force quit Rev 4.0 and relaunch Rev. This, plus the recursion error you got, likely indicates that your scripts are going in circles without a way to

Re: What is wrong with this script?

2010-11-04 Thread Robert Brenstein
On 04.11.10 at 17:29 -0700 charles61 apparently wrote: Craig, Your script the first time but I got an error the second time I tried printing saying; flagging the line end "mouseUp" to button b and reporting the error message: button "Print"; execution error at line 287 (Chunk: no such objec

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, I should mention that the recursive message came after I discovered that I left out the following: of marked card y for the first part of if the style of button b on doStuff3 --->Sends mouseUp to checkboxes that are checked on marked cards repeat with y = 1 to the number of marke

Re: What is wrong with this script?

2010-11-04 Thread charles61
Crag, I checked and rechecked the script but there were no typos or spaces. I ran the script several more times and got a dialog message: The handler: mouseUp has reached the recursion limit of: 40. Execution will be terminated to prevent hang. i have never gotten this message before! Ch

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, Your script the first time but I got an error the second time I tried printing saying; flagging the line end "mouseUp" to button b and reporting the error message: button "Print"; execution error at line 287 (Chunk: no such object) near "27", char 31 I went to line 27 which had the c

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, Your script not only worked faster but it was also worked better with the grouped checkboxes than my script. Thanks!!! Charles Szasz csz...@mac.com On Nov 4, 2010, at 7:31 PM, dunbarx [via Runtime Revolution] wrote: > Charles. > > Good. This never happens to me. > > Your script

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, Thanks for that suggestion! I will indeed try it out. I did find some glitches with my posted script in my actual project. The script did not seem to work as well when I had grouped some checkboxes so that I could show an alert message when none checkboxes had been checked in the group.

Re: What is wrong with this script?

2010-11-04 Thread DunbarX
Charles. Good. This never happens to me. Your script can be shortened, and sped up, a bit. Watch line wraps: on doStuff3 repeat with y = 1 to the number of marked cards repeat with b = 1 to the number of buttons of marked cd y if the style of button b of marked cd y = "check

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, Yes I got it to work on a test stack that I was working with. A typo was the culprit. Charles Szasz csz...@mac.com On Nov 4, 2010, at 7:01 PM, dunbarx [via Runtime Revolution] wrote: > It does work. It's a bit wordy, but works fine. > > If you have these buttons in a background, y

Re: What is wrong with this script?

2010-11-04 Thread DunbarX
It does work. It's a bit wordy, but works fine. If you have these buttons in a background, you do have the sharedHilite set to "false", right? This would matter. So what doesn't work? Craig Newman ___ use-revolution mailing list use-revolution@lists.r

Re: What is wrong with this script?

2010-11-04 Thread Bob Sneidar
First, why are you locking messages when you go to a card? Second, sending a mouseUp to a button does not click the button. It only runs the mouseUp handler contained in that button. If you have a mouseUp handler, then you will need to pass mouseUp in order for the engine to properly check the b

Re: What have I done?

2010-09-27 Thread theworcestersource.com
That reminds me of the chorus of a song that takes me well back to the mid 80s and being a schoolkid: "Hey, hey 16k What does that get you today? It's not enough even for a letter Old school RAM packs were much better!" Steve -- View this message in context: http://runtime-revolution.278305.n4

Re: What have I done?

2010-09-27 Thread James Hurley
Message: 18 Date: Mon, 27 Sep 2010 09:59:01 -0700 From: Mark Wieder Subject: Re: What have I done? To: How to use Revolution Message-ID: <28318156578.20100927095...@ahsoftware.net> Content-Type: text/plain; charset=us-ascii Devin- Monday, September 27, 2010, 9:47:13 AM, you wrote:

Re: What have I done?

2010-09-27 Thread Mark Wieder
Devin- Monday, September 27, 2010, 9:47:13 AM, you wrote: > Luxury! I dream about having a register! All I have is the bottom > of a rusty soup tin, and I have to scratch tick marks on it with a > broken stick! Wow! A soup tin... all I have is... aw, I forget what I have... -- -Mark Wieder m

Re: What have I done?

2010-09-27 Thread Devin Asay
Luxury! I dream about having a register! All I have is the bottom of a rusty soup tin, and I have to scratch tick marks on it with a broken stick! On Sep 27, 2010, at 10:40 AM, Andre Garzia wrote: > at least you got 8k... all I have are a couple registers and a very short > stack... > > On Mon

Re: What have I done?

2010-09-27 Thread DunbarX
You may want to back that up off site. Craig In a message dated 9/27/10 12:28:40 PM, jhurley0...@sbcglobal.net writes: > I used to have about 68 K short term memory. It  > has dwindled to about 8 k. > ___ use-revolution mailing list use-revolution@li

Re: What have I done?

2010-09-27 Thread Andre Garzia
at least you got 8k... all I have are a couple registers and a very short stack... On Mon, Sep 27, 2010 at 1:28 PM, James Hurley wrote: > Craig and Mark, > > That was the problem. I have a vague recollection of changing that in the > preference dialog box just to see what would happen, and then

Re: What have I done?

2010-09-27 Thread Mark Wieder
James- Monday, September 27, 2010, 9:01:54 AM, you wrote: > Rev 4.0 is in revolt. (LiveCode is fine.) > I write in script: > put 3 into x > and when I try to compile I get a message "Can't create a variable by > that name." You have turned on the explicitVariables failsafe mechanism, whi

Re: What have I done?

2010-09-27 Thread DunbarX
Did you change your preferences, checking "strict compilation mode"? This would require that you declare your variables, and not be able to load them on the fly. Craig Newman ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit

Re: What is the name of that function...

2010-09-22 Thread Bob Sneidar
Why, minus nine of course! Bob On Sep 18, 2010, at 6:13 PM, Tereza Snyder wrote: On Sep 18, 2010, at 5:51 PM, Mark Wieder wrote: > Saturday, September 18, 2010, 3:23:22 PM, you wrote: > >> Hmmmph! it's an OPERATOR not a function! And it doesn't work with negative >> numbers*! > > mod is a

Re: What is the name of that function...

2010-09-19 Thread Chipp Walters
Ha, I asked this same question a couple weeks ago. And just like you, Tereza, I was looking in the wrong place! It's not a function. Seems like it should be. > Hmmmph! it's an OPERATOR not a function! > ___ use-revolution mailing list use-revolution@lis

Re: What is the name of that function...

2010-09-18 Thread Phil Davis
Hey, it works for the government! Key: Johnny = US Treasury Fred = Federal Reserve Bank :-) (OK, it would be funnier if it were less true - I'll say no more) On 9/18/10 3:51 PM, Mark Wieder wrote: If Johnny owes nine dollars and gives five of those dollars he doesn't have to Fred, how many d

Re: What is the name of that function...

2010-09-18 Thread Andre Garzia
On Sat, Sep 18, 2010 at 10:13 PM, Tereza Snyder wrote: > > On Sep 18, 2010, at 5:51 PM, Mark Wieder wrote: > > > Saturday, September 18, 2010, 3:23:22 PM, you wrote: > > > >> Hmmmph! it's an OPERATOR not a function! And it doesn't work with > negative numbers*! > > > > mod is also an operator. An

Re: What is the name of that function...

2010-09-18 Thread Tereza Snyder
On Sep 18, 2010, at 5:51 PM, Mark Wieder wrote: > Saturday, September 18, 2010, 3:23:22 PM, you wrote: > >> Hmmmph! it's an OPERATOR not a function! And it doesn't work with negative >> numbers*! > > mod is also an operator. And negative numbers? I wouldn't expect those > to work - it work tha

Re: What is the name of that function...

2010-09-18 Thread Tereza Snyder
On Sep 18, 2010, at 5:23 PM, Tereza Snyder wrote: > > On Sep 18, 2010, at 4:49 PM, Mark Wieder wrote: > >> Tereza- >> >> Saturday, September 18, 2010, 2:42:34 PM, you wrote: >> >>> Somebody knows >> what is it. >> >> I was (wrap) going to try (wrap) to remember it (wrap) as well, but >> it's

Re: What is the name of that function...

2010-09-18 Thread Mark Wieder
Tereza- Saturday, September 18, 2010, 3:23:22 PM, you wrote: > Hmmmph! it's an OPERATOR not a function! And it doesn't work with negative > numbers*! mod is also an operator. And negative numbers? I wouldn't expect those to work - it work that way for word problems with either operator: If Joh

Re: What is the name of that function...

2010-09-18 Thread Tereza Snyder
On Sep 18, 2010, at 4:49 PM, Mark Wieder wrote: > Tereza- > > Saturday, September 18, 2010, 2:42:34 PM, you wrote: > >> Somebody knows > what is it. > > I was (wrap) going to try (wrap) to remember it (wrap) as well, but > it's (wrap) not on the tip of my (wrap) tongue… > Hmmmph! it's an OPE

Re: What is the name of that function...

2010-09-18 Thread Tereza Snyder
On Sep 18, 2010, at 4:53 PM, Alex Tweedly wrote: > wrap > > but why do you want to avoid 'mod' ? because there's always a fiddle with 0 (along with cats), and offsets, and I'm too lazy to write that function AGAIN. t -- Tereza Snyder Califex Software, Inc. _

Re: What is the name of that function...

2010-09-18 Thread Alex Tweedly
wrap but why do you want to avoid 'mod' ? -- Alex. On 18/09/2010 22:42, Tereza Snyder wrote: …that lets you cycle among a sequence of numbers without using mod? I've read through the functionnames three times but nothing seems to be it. Someone asked on the list not too long ago, and I said

Re: What is the name of that function...

2010-09-18 Thread Mark Wieder
Tereza- Saturday, September 18, 2010, 2:42:34 PM, you wrote: > Somebody knows… what is it. I was (wrap) going to try (wrap) to remember it (wrap) as well, but it's (wrap) not on the tip of my (wrap) tongue... -- -Mark Wieder mwie...@ahsoftware.net

Re: What about the new language from Apple?

2010-07-07 Thread Jerry Daniels
Andre...whole endeavor rumored to be very Ruby-esque. I think they are like Ruby blocks. Best, Jerry Daniels Join the Rodeo discussion: http://rodeoapps.com/rodeo-discuss-among-yourselves On Jul 7, 2010, at 7:49 AM, Andre Garzia wrote: > Folks, > > I wearing my slashdot hat now, so that mea

Re: What about the new language from Apple?

2010-07-07 Thread Andre Garzia
Folks, I wearing my slashdot hat now, so that means I did not read the article but will indeed ask questions. Are those blocks something like ruby blocks or closures? any clue? Andre 2010/7/6 François Chaplais > a good start is > http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars

Re: What about the new language from Apple?

2010-07-06 Thread François Chaplais
a good start is http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars/9 If I understand well, its about finer granularity and management of concurrent process. To allow, this, objective-c has be extended with new entities called blocks. Blocks have a very small footprint by comparison to

Re: What can an image object display?

2010-05-03 Thread Marty Knapp
Hey Bill , Looking in the dictionary under "import" list this: Importing a paint file creates an image object on the current card. The import command can import GIF, JPEG, PNG, BMP, XWD, XBM, XPM, or PBM, PGM, or PPM files. On Mac OS systems, PICT files can also be imported (but they cannot b

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-11 Thread François Chaplais
That's the same SJ who said that the future of the iPhone was in internet "rich" app. He later changed his mind (probably under popular pressure and witnessing what was done on jailbroken iPhones. He may change his mind again. Le 11 avr. 2010 à 10:30, David Bovill a écrit : > Not good - http://b

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-11 Thread Colin Holgate
On Apr 11, 2010, at 11:45 AM, Richmond Mathewson wrote: > BUT; 'compatibility' is polysemantic: what is compatible with what Mr Jobs > envisages for the iPhone/iPad may > not encompass all the things that are otherwise compatible. > There's the basic problem, Steve's vision isn't compatible w

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-11 Thread Richmond Mathewson
On 11/04/2010 18:28, Colin Holgate wrote: On Apr 11, 2010, at 4:30 AM, David Bovill wrote: Not good - http://bit.ly/bnTy0D What is comical is that although Steve is all out to prevent compatibility layers, in his quest for perfect apps, he's ok with using Javascript and HTML5, which I thin

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-11 Thread Colin Holgate
On Apr 11, 2010, at 4:30 AM, David Bovill wrote: > >Not good - http://bit.ly/bnTy0D What is comical is that although Steve is all out to prevent compatibility layers, in his quest for perfect apps, he's ok with using Javascript and HTML5, which I think are compatibility layers. I've done test

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-11 Thread David Bovill
Not good - http://bit.ly/bnTy0D ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-10 Thread Colin Holgate
More info: I've been trying out things with GameSalad and Unity too, and for both of those I am able to build using SDK4. In both cases doing that gives me an app that fast app switches correctly. I'm not sure how Rev makes its app files, but it doesn't seem to be able to make an SDK4 app, even

Re: what form of "split" turns a tab-delimited variable into an array with the first line as keys?

2010-04-10 Thread Robert Cole
Take a look at my "Calendar Lines" stack which can be found at Rev Online (in the menu toolbar) The buttons call a function in the stack script which use "split" and "the extents" to transpose an array. HTH, Bob Date: Fri, 9 Apr 2010 15:06:28 -0700 Josh Mellicker wrote: Thanks for everyone's

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-10 Thread Colin Holgate
On Apr 10, 2010, at 3:26 PM, François Chaplais wrote: > >could not this boil down to an small extra number of API that have to be > >"enforced" in revmobile in order to have proper multitasking? I just did a test, to check a theory I had. An XCode project I have that was built for 3.1.3 show

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-10 Thread François Chaplais
could not this boil down to an small extra number of API that have to be "enforced" in revmobile in order to have proper multitasking? In another post about the new SDK conditions, there was mention of the new compiler structures (blocks) that have been added to implement Grand Central Dispatch

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-09 Thread René Micout
Le 10 avr. 2010 à 05:57, Colin Holgate a écrit : > > It is quite possible that anything that is XCode based might start to behave > properly if just recompiled under the SDK4, and that would indeed show an > advantage of having used XCode. But what Apple could do is insist that all > apps hono

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-09 Thread Colin Holgate
There are a number of flaws in the arguments in that message. Currently all old apps, proper XCode ones or non-XCode ones, don't behave correctly with the multitasking. Some apps don't pause when you're fast app switching, and even the ones that do pause do a start from scratch when you return t

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-09 Thread Peter Alcibiades
ut for those 'foreign structures'. They just want to come in here, and pollute our native code. That was very amusing, one started to wonder at that point whether it was a coder writing, or maybe someone in the marketing department of some large company -- View this message i

Re: What does the 4.0 iPhone SDK mean for revMobile?

2010-04-09 Thread Jerry Daniels
Found this post interesting: The primary reason for the change, say sources familiar with Apple's plans, is to support sophisticated new multitasking APIs in iPhone 4.0. The system will now be evaluating apps as they run in order to implement smart multitasking. It can't do this if apps are run

Re: what form of "split" turns a tab-delimited variable into an array with the first line as keys?

2010-04-09 Thread Björnke von Gierke
Oi my solution works fine, it must b your computer that's amiss :P No seriously, i tested it here and it did what I thought you wanted? On 10 Apr 2010, at 00:06, Josh Mellicker wrote: > Thanks for everyone's help. > > Though Bjoernke's solution looks clever, I could not get it to work. > > I

Re: what form of "split" turns a tab-delimited variable into an array with the first line as keys?

2010-04-09 Thread Josh Mellicker
Thanks for everyone's help. Though Bjoernke's solution looks clever, I could not get it to work. I ended up with this ugly thing: function turnIntoArray p put line 1 of p into tHeaders set the itemDelimiter to tab repeat with x = 2 to the number of lines in p repeat with y = 1 to

Re: what form of "split" turns a tab-delimited variable into an array with the first line as keys?

2010-04-09 Thread Jim Ault
On Apr 9, 2010, at 8:13 AM, Bob Sneidar wrote: Just had a few rounds with split and combine, and they are not what you think they are. Split takes the first value in a delimited line and that becomes the key. The rest of the items become the elements. The commands are fairly useless for muc

Re: what form of "split" turns a tab-delimited variable into an array with the first line as keys?

2010-04-09 Thread Björnke von Gierke
That the split and combines are useless is completely wrong. I use them all the time and it's a huge timesaver for manipulating x,y matrices. Of course, for the given Task, they do not work for what you want directly. You'll need to change the orientation first, for example thusly: on mouseUp

Re: what form of "split" turns a tab-delimited variable into an array with the first line as keys?

2010-04-09 Thread Bob Sneidar
Just had a few rounds with split and combine, and they are not what you think they are. Split takes the first value in a delimited line and that becomes the key. The rest of the items become the elements. The commands are fairly useless for much of anything. Bob On Apr 9, 2010, at 12:07 AM,

Re: what form of "split" turns a tab-delimited variable into an array with the first line as keys?

2010-04-09 Thread Michael Kann
Using asterisks instead of tabs, put name*color*food Trevor*green*salad Sarah*blue*pizza into fld 1 -- Use this script: -- on mouseUp set the itemDelimiter to "*" put fld 1 into v put line 1 of v into headers_line delete line 1 of v

Re: What are they called?

2010-03-01 Thread Thomas McGrath III
Tooltips On Mar 1, 2010, at 12:30 PM, Joe Lewis Wilkins wrote: > Feeling kind of stupid this morning, but I'm trying to tell someone that the > "hints" we get when holding the cursor over a tool should be enlarged - if at > all possible - so that the visually impaired (like me) can read them mo

Re: What are they called?

2010-03-01 Thread Joe Lewis Wilkins
Great idea Mark. I can't wait! Joe Lewis Wilkins On Mar 1, 2010, at 10:15 AM, Mark Schonewille wrote: > Hi Joe, > > The size of the little window adjusts itself automatically and the textSize > is just the textSize of the field in that window. That should be scriptable. > > The current plug-

Re: What are they called?

2010-03-01 Thread Mark Schonewille
Hi Joe, The size of the little window adjusts itself automatically and the textSize is just the textSize of the field in that window. That should be scriptable. The current plug-in displays object names only. I believe I should make a more general tooltips stack. -- Best regards, Mark

Re: What are they called?

2010-03-01 Thread Joe Lewis Wilkins
Very useful, Mark. How would I increase the size of the Tool Tips displayed by this plug-in? Joe Lewis Wilkins On Mar 1, 2010, at 9:39 AM, Mark Schonewille wrote: > Hi Joe, > > I think they are called tooltips. They are indeed a bit small and not > adjustable. It is possible to make your ow

Re: What are they called?

2010-03-01 Thread François Chaplais
Le 1 mars 2010 à 18:30, Joe Lewis Wilkins a écrit : > Feeling kind of stupid this morning, but I'm trying to tell someone that the > "hints" we get when holding the cursor over a tool should be enlarged - if at > all possible - so that the visually impaired (like me) can read them more > easil

Re: What are they called?

2010-03-01 Thread Joe Lewis Wilkins
Thanks to all who responded so promptly. Especially Mark who guessed why I need to know. You all are the best. Joe Lewis Wilkins On Mar 1, 2010, at 9:39 AM, Mark Schonewille wrote: > Hi Joe, > > I think they are called tooltips. They are indeed a bit small and not > adjustable. It is possib

Re: What are they called?

2010-03-01 Thread Mark Schonewille
Hi Joe, I think they are called tooltips. They are indeed a bit small and not adjustable. It is possible to make your own, although it isn't very easy. Halfway this page http://qurl.tk/61 you will find an example, which shows the name, long id and id number in a tooltip when the pointer t

Re: What are they called?

2010-03-01 Thread Jeff Massung
Tooltips? On Mon, Mar 1, 2010 at 11:30 AM, Joe Lewis Wilkins wrote: > Feeling kind of stupid this morning, but I'm trying to tell someone that > the "hints" we get when holding the cursor over a tool should be enlarged - > if at all possible - so that the visually impaired (like me) can read the

Re: What are they called?

2010-03-01 Thread Colin Holgate
On Mar 1, 2010, at 12:30 PM, Joe Lewis Wilkins wrote: > Feeling kind of stupid this morning, but I'm trying to tell someone that the > "hints" we get when holding the cursor over a tool should be enlarged - if at > all possible - so that the visually impaired (like me) can read them more > eas

Re: what applications are running

2010-02-25 Thread Nicolas Cueto
Thanks, G. Wolfgang. Might go with pslist for uniformity across my various pcs. -- Nicolas Cueto ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: ht

Re: what applications are running

2010-02-25 Thread G.Wolfgang Gaich
Hi Nicolas, I use the pslist tool from sysinternals PsTools. Copy it to a folder and then shell("[yourfolder\]pslist"). It works on Win98 to 7. hth G. Wolfgang Am Donnerstag, den 25.02.2010, 21:40 +0900 schrieb Nicolas Cueto: > Found a way around the problem of missing "tasklist" for applyin

Re: what applications are running

2010-02-25 Thread Nicolas Cueto
Found a way around the problem of missing "tasklist" for applying Mark Schonewille's solution. The "tasklist" tool is available for download. Which I did, placing it in the Sys32 folder. So Mark's solution now works for WinXP Home. Then, for Win2K, I placed into the Sys32 folder a tool similar to

Re: what applications are running

2010-02-25 Thread Nicolas Cueto
Thank you, Mark. Unfortunately, it appears from documentation that the command-line tool "tasklist" is only part of WinXP Professional, but my machines run WinXP Home and Win2K. Perhaps some other shell command? -- Nicolas Cueto ___ use-revolution mail

Re: what applications are running

2010-02-25 Thread Mark Schonewille
Hi Nicolas, This might work: function programs if the platform is "MacOS" then -- only OSX! put shell("ps -xcw") into myList put offset("COMMAND",myList) into myColPos repeat for each line myLine in myList put char myColPos to -1 of myLine & cr a

Re: What cell in the data grid was clicked?

2009-12-29 Thread James Hurley
Message: 1 Date: Tue, 29 Dec 2009 11:16:18 -0500 From: Trevor DeVore Subject: Re: What cell in the data grid was clicked? To: How to use Revolution Message-ID: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes On Dec 28, 2009, at 11:48 PM, James Hurley wrote: The user

Re: What cell in the data grid was clicked?

2009-12-29 Thread Trevor DeVore
On Dec 28, 2009, at 11:48 PM, James Hurley wrote: The user clicks on a data grid cell. What variables determine the row and column numbers of the cell? And the text of the cell? One other lesson you might want to look at discusses how to define your own mouseDown handlers in a Data Grid. Y

Re: What cell in the data grid was clicked?

2009-12-29 Thread Trevor DeVore
On Dec 28, 2009, at 11:48 PM, James Hurley wrote: The user clicks on a data grid cell. What variables determine the row and column numbers of the cell? Jim, Each row in a Data Grid form/table and each column in a Data Grid table have custom properties that help you determine this informati

Re: What cell in the data grid was clicked?

2009-12-29 Thread Michael Kann
It doesn't seem like the datagrid commands made it into the dictionary I have. I foraged around on the runrev website and found some info. You might find what you need on the following links. As a warning, I don't know jack about datagrids, just trying to be helpful. Some links: http://lessons

Re: What makes a line a line in a chunk expression?

2009-09-07 Thread Sarah Reichelt
On Tue, Sep 8, 2009 at 1:09 AM, Len Morgan wrote: > Jim, > > This works on my machine but as Sarah pointed out to me, it's actually > pointless since they should NEVER be different (i.e., it should never pick > something that is not on the list of options so why check?  What I really > wanted to do

Re: What makes a line a line in a chunk expression?

2009-09-07 Thread Thierry
Le 7 sept. 09 à 17:09, Len Morgan a écrit : Jim, ..." which doesn't work because apparently, "the cards of this stack" is not a valid command. Hi, See : CardNames and/or CardIDs in the Dictionary Should do what you want HTH THierry ___

Re: What makes a line a line in a chunk expression?

2009-09-07 Thread Len Morgan
Jim, This works on my machine but as Sarah pointed out to me, it's actually pointless since they should NEVER be different (i.e., it should never pick something that is not on the list of options so why check? What I really wanted to do was see if a CARD with that name existed (something lik

Re: What makes a line a line in a chunk expression?

2009-09-06 Thread Jim Ault
I would suggest you do some testing to find the real cause(s) of the situation. There is a disconnect somewhere. -- try this handler in a new stack with a single new option menu button named "taskBar" on menuPick theItem -- in a pulldown menu get the text of button "taskBar" --the da

Re: What makes a line a line in a chunk expression?

2009-09-06 Thread Sarah Reichelt
On Mon, Sep 7, 2009 at 3:31 PM, Len Morgan wrote: > I wish it was that simple but if that DOES turn out to be the problem, > there's something not quite right with Rev itself.  From an earlier post, I > am comparing the pChoice that is passed by the menuPick handler with "the > text of button "task

Re: What makes a line a line in a chunk expression?

2009-09-06 Thread Len Morgan
I wish it was that simple but if that DOES turn out to be the problem, there's something not quite right with Rev itself. From an earlier post, I am comparing the pChoice that is passed by the menuPick handler with "the text of button "taskBar"" which is the button that sent me the pChoice in

Re: What makes a line a line in a chunk expression?

2009-09-06 Thread J. Landman Gay
Len Morgan wrote: If I type the lines: put "Movement History" into myChoice put the text of button "taskBar" into tLines put (myChoice is among the lines of tLines) into the message box, the result I get is "false" When you use "is among", the entire line must match to get a hit. If the line

Re: What makes a line a line in a chunk expression?

2009-09-06 Thread Len Morgan
If I type the lines: put "Movement History" into myChoice put the text of button "taskBar" into tLines put (myChoice is among the lines of tLines) into the message box, the result I get is "false" len morgan Devin Asay wrote: On Sep 6, 2009, at 10:14 PM, Len Morgan wrote: I'm trying to go

Re: What makes a line a line in a chunk expression?

2009-09-06 Thread Devin Asay
On Sep 6, 2009, at 10:14 PM, Len Morgan wrote: I'm trying to go to a card based on the choice made in an option menu and it's not working right. Here's the gist of what I'm doing: on menuPick pChoice put the text of button "taskBar" into tChoices if pChoice is among the lines of tChoice

RE: What is the current version of Rev?

2009-09-04 Thread Jim Bufalini
Hi Nicolas, > Thanks Jim but, as I wrote, your suggestion is not new. Tried it -- > repeatedly! -- and I assure you there is no dp4 folder within my > RevEnterprise folder. Nor anywhere else on my hard-drive. Didn't follow back the whole thread before I answered. > And have also tried several o

Re: What is the current version of Rev?

2009-09-04 Thread Nicolas Cueto
> Several suggestions were offered -- check the Rev folder > for a new folder "dp4", initiate the update not from dp3 > but from a previous version (3.5). Thanks Jim but, as I wrote, your suggestion is not new. Tried it -- repeatedly! -- and I assure you there is no dp4 folder within my RevEnterpr

RE: What is the current version of Rev?

2009-09-04 Thread Jim Bufalini
Nicolas and Len, Please run check for updates. Does it say there is one available? If so, accept the update and follow prompts until "Finished" Now exit and launch Revolution again. Check for updates again. This time it should say you are up to date. What you need to understand, at this point,

Re: What is the current version of Rev?

2009-09-04 Thread Nicolas Cueto
Don't have an answer, I'm afraid. Update to dp4 is also not working on my WinXP machine. So, I started this same discussion on the "improve rev" list. Several suggestions were offered -- check the Rev folder for a new folder "dp4", initiate the update not from dp3 but from a previous version (3.5)

Re: What is the current version of Rev?

2009-09-04 Thread Sarah Reichelt
On Fri, Sep 4, 2009 at 9:41 PM, Len Morgan wrote: > I downloaded the latest version of revEnterprise which is supposed to be > dp4.  However the "about Rev" page shows "Build 900 dp-3."  Is this the > latest version and just mismarked on the about page or did "Check For > Updates" get the wrong fil

Re: What is your idea of a "Summer Holiday" ?

2009-08-22 Thread Richmond Mathewson
My "holiday" largely seems to be getting repetitive stress injury in both my wrists . . . http://mathewson.110mb.com/midmad.html click on the arrow that says "There's Mair!" because there is . . . :) -- Mind you: I would rather hav

Re: What does "menu" do in the decorations property

2009-08-20 Thread Richard Gaskin
Timothy Bleiler wrote: Thank you Klaus. The documentation on this is very misleading. Maybe someone should add your sentence! :-)) On Aug 20, 2009, at 9:56 AM, Klaus Major wrote: Hi Tim, Thanks for the reply Bjoernke. I was probably too brief in my question. When I set the decorations of

Re: What does "menu" do in the decorations property

2009-08-20 Thread Timothy Bleiler
Thank you Klaus. The documentation on this is very misleading. Maybe someone should add your sentence! :-)) On Aug 20, 2009, at 9:56 AM, Klaus Major wrote: Hi Tim, Thanks for the reply Bjoernke. I was probably too brief in my question. When I set the decorations of a stack to menu, nothi

Re: What does "menu" do in the decorations property

2009-08-20 Thread Klaus Major
Hi Tim, Thanks for the reply Bjoernke. I was probably too brief in my question. When I set the decorations of a stack to menu, nothing happens. The only way I know of to create a "menubar" on Windows or Linux is to create a group and make it look like a menubar. Once that's done setting t

Re: What does "menu" do in the decorations property

2009-08-20 Thread Timothy Bleiler
Thanks for the reply Bjoernke. I was probably too brief in my question. When I set the decorations of a stack to menu, nothing happens. The only way I know of to create a "menubar" on Windows or Linux is to create a group and make it look like a menubar. Once that's done setting the decorat

Re: What does "menu" do in the decorations property

2009-08-19 Thread Björnke von Gierke
set the decorations to menu check out the menu keywords (and of course the decorations properties) entry in the dictionary, it's very long ;) Bjoernke On 19 Aug 2009, at 22:18, Timothy Bleiler wrote: According to the documentation Use the menu keyword to give a window a menu bar (on Uni

Re: What is your idea of a "Summer Holiday" ?

2009-08-15 Thread Mark Wieder
Richmond- Saturday, August 15, 2009, 2:00:06 AM, you wrote: > http://mathewson.110mb.com/midmad.html But remember it's no longer Sanskrit, but revT... oh... wait... -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list use-revoluti

Re: What is the current phrase for Rev in about windows?

2009-07-17 Thread Jan Schenkel
--- On Fri, 7/17/09, jim sims wrote: > From: jim sims > Subject: What is the current phrase for Rev in about windows? > To: "How to use Revolution" > Date: Friday, July 17, 2009, 8:05 AM > I'm finishing up a shareware app - > can someone tell me: > > What is the current phrase for Rev in about

Re: What is the current phrase for Rev in about windows?

2009-07-17 Thread Richmond Mathewson
jim sims wrote: I'm finishing up a shareware app - can someone tell me: What is the current phrase for Rev in about windows? Would "Made with RunRev" do the job? sims That is all part of what we are waiting for. :) Many years ago, in Bulgaria, under communism, my wife worked as an interpre

Re: What a Drag?

2009-06-10 Thread Björnke von Gierke
you'd need to catch the drop (of course), and if it's a image file (you'd need to find it out via the dragdata["files"]) then you create an image object (referenced or imported, depending on what you want) and finally set a chars imagesource. On 10 Jun 2009, at 14:47, Richmond Mathewson wr

Re: What a Drag?

2009-06-10 Thread Richmond Mathewson
Björnke von Gierke wrote: as far as I know, it's not used in the ide, but it is possible to use the drag/drop stuff to implement it yourself. Pray tell ? On 10 Jun 2009, at 14:18, Richmond Mathewson wrote: I'm a bit slow on the uptake, and will continue to be so until the good fol

Re: What a Drag?

2009-06-10 Thread Björnke von Gierke
as far as I know, it's not used in the ide, but it is possible to use the drag/drop stuff to implement it yourself. On 10 Jun 2009, at 14:18, Richmond Mathewson wrote: I'm a bit slow on the uptake, and will continue to be so until the good folk at Edinburgh press a copy of RR 4 into my sweat

Re: What do Rev programmers charge per hour for programming?

2009-06-09 Thread Luis
Reminds me of the student that filled their bottom wardrobe drawer with porridge, and took a slice for breakfast, lunch and supper. I think they were found dead, not sure why. Cheers, Luis. On 7 Jun 2009, at 18:18, Richmond Mathewson wrote: That remark about Cup Noodles was not very nice:

Re: What do Rev programmers charge per hour for programming?

2009-06-07 Thread Kay C Lan
On Mon, Jun 8, 2009 at 12:28 AM, Andre Garzia wrote: > > I am thinking about creating a new service of elegant designer > fashionable code tied to the price of some undisclosed quantity of > porcini mushrooms, high quality pasta, dried tomatoes, tons of spices > and good wine. > > So long as you

  1   2   3   4   5   6   >