Page Setup question (Mac)

2010-06-23 Thread Emmett Gray
Is there any way to specify landscape or portrait mode via scripting? HC remembered the page setup for a template. Rev (Media) doesn't remember anything about it when it quits, and seems to have only one mode possible for all stacks, not a setting for individual stacks. I need to print

Re: New Stack crash

2010-06-23 Thread Richard Gaskin
Dan Friedman wrote: I have the following script in a button: on mouseUp put 0 into i repeat 3 add 1 to i put (testStack_ i) into sName new stack sName delete stack sName end repeat end mouseUp Two questions: (1) Why would this start to slow down? It

Re: Page Setup question (Mac)

2010-06-23 Thread Richard Gaskin
Emmett Gray wrote: Is there any way to specify landscape or portrait mode via scripting? HC remembered the page setup for a template. Rev (Media) doesn't remember anything about it when it quits, and seems to have only one mode possible for all stacks, not a setting for individual stacks. I

Re: preOpenCard inside behaviors, does it works?

2010-06-23 Thread Andre.Bisseret
Bonjour, I had such problems recently. Behaviors property still set when reopening stacks but not inherited. It was with rev 4.0. See subject Behaviors handlers not found when re-opening stacks in the June' archives Trevor reply with this address :

Re: New Stack crash

2010-06-23 Thread Jan Schenkel
You're probably running out of memory - delete stack may not release everything right away. My first step would be setting the templateStack properties 'destroyStack' and 'destroyWindow' to true - that way the resources claimed by the stack and its window are released upon close. By default

Datagrid click and set background color for a column

2010-06-23 Thread JosepM
Hi, How can I change the background color of a cell of a datagrid by clicking in? Salut, Josep -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Datagrid-click-and-set-background-color-for-a-column-tp2265290p2265290.html Sent from the Revolution - User mailing

Re: Page Setup question (Mac)

2010-06-23 Thread Emmett Gray
On Tue, 22 Jun 2010 23:12:03 -0700, Richard Gaskin ambassa...@fourthworld.com wrote: Emmett Gray wrote: Is there any way to specify landscape or portrait mode via scripting? snip Did you try Rev's dictionary? snip printPaperOrientation property, which takes these values: Duuh. Yes,

Re: Page Setup question (Mac)

2010-06-23 Thread Richard Gaskin
Emmett Gray wrote: On Tue, 22 Jun 2010 23:12:03 -0700, Richard Gaskin ambassador at fourthworld.com wrote: Emmett Gray wrote: Is there any way to specify landscape or portrait mode via scripting? snip Did you try Rev's dictionary? snip printPaperOrientation property, which takes

Let's have fun with Bug reports.

2010-06-23 Thread Richmond
In the light of recent comments we could all have fun over at the Bug-reporting department: http://quality.runrev.com/qacenter/ finding our 'favourite' bugs / enhancement requests (which are, sometimes really the same sort of thing) and the oldest unfixed bugs.

Re: [OT] Computer news from Kassel

2010-06-23 Thread Bob Sneidar
To some extent you have a point, but software bugs are a bit trickier. What some people call bugs are really not. Some bugs are extremely obscure, and only affect a very small number of people. Some bugs have a workaround, and so are not critical. For a company to devote all their resources to

Re: [OT] Computer news from Kassel

2010-06-23 Thread Jeff Massung
On Wed, Jun 23, 2010 at 11:07 AM, Bob Sneidar b...@twft.com wrote: [...] they are paying for free upgrades. I'm sorry. I laughed out loud when I read that. Talk about the definition of an oxymoron. ;-) Jeff M. ___ use-revolution mailing list

Re: [OT] Computer news from Kassel

2010-06-23 Thread Bob Sneidar
Heh heh. Listen to what I mean, not what I say. ;-) Bob On Jun 23, 2010, at 9:13 AM, Jeff Massung wrote: On Wed, Jun 23, 2010 at 11:07 AM, Bob Sneidar b...@twft.com wrote: [...] they are paying for free upgrades. I'm sorry. I laughed out loud when I read that. Talk about the

Rev CGI and saving time of event in users time

2010-06-23 Thread jim sims
I'm using a Rev CGI on my server. I am not using iRev, but the older Rev CGI. When a user clicks, asking for a file, I want to save the time of that event using the users time. In other words, not the server's location time but what the user would see wherever they are. Am I correct in

Re: [OT] Computer news from Kassel

2010-06-23 Thread Hugh Senior
On budget On time Bug free Pick any two. /H ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Datagrid click and set background color for a column

2010-06-23 Thread zryip theSlug
Hi Josep, A possible way consists to use the field in the cell to accomplish the task: 1) Link a default column behavior to your Data Grid 2) In this default behavior add a mouseUp handler: on mouseUp pMouseBtnNum if pMouseBtnNum is 1 then if (word 1 of the target is field) then if (the

Re: [OT] Computer news from Kassel

2010-06-23 Thread Mark Wieder
Hugh- Wednesday, June 23, 2010, 10:07:57 AM, you wrote: On budget On time Bug free Pick any two. I have enough trouble just picking *one*... -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list

Re: Rev CGI and saving time of event in users time

2010-06-23 Thread Andre Garzia
Yo Sims, If this is coming from a HTML form, you can add a hidden field there and use some javascript magic to write the current time there on form submission. :D On Wed, Jun 23, 2010 at 12:58 PM, jim sims s...@ezpzapps.com wrote: I'm using a Rev CGI on my server. I am not using iRev, but the

Re: [OT] Computer news from Kassel

2010-06-23 Thread Andre Garzia
On Wed, Jun 23, 2010 at 2:16 PM, Mark Wieder mwie...@ahsoftware.net wrote: Hugh- Wednesday, June 23, 2010, 10:07:57 AM, you wrote: On budget On time Bug free Pick any two. I have enough trouble just picking *one*... I've mixed them and end up picking budget free... -- -Mark

Re: Rev CGI and saving time of event in users time

2010-06-23 Thread Jim Sims
On Jun 23, 2010, at 7:20 PM, Andre Garzia wrote: Yo Sims, If this is coming from a HTML form, you can add a hidden field there and use some javascript magic to write the current time there on form submission. Thanks! I was thinking of the user clicking on a web page button image but that

Re: Datagrid click and set background color for a column

2010-06-23 Thread JosepM
Thanks. And how to change these color in function of the value of other col in the same row? Well, I know how to get the value but the problem is that I don't know the name of the column, so the array is created in function of the position. Sample: put 1 into myArray[1][Value 1] put 2 into

Re: Help with drill-down script

2010-06-23 Thread Ken Ray
Anyway, there's one feature: the first card is an index of all the cards in the stack. In HC, all you need to do is start typing and as you add letters, the selected line changes to reflect what you've typed. When you get to what you want, you hit return and that takes you to the respective

Re: Shell command return 255

2010-06-23 Thread Ken Ray
How to know from where the command is executed. In terminal put which command, and we get the entire path to the command. To test from the shell /bin/sh into the Terminal. Put /bin/sh and press enter. Now we are in the same shell that is called from shell and from Rev. Test your command

Re: revBrowser + youtube.com = Crashing?

2010-06-23 Thread Andrew Kluthe
Explorer really? Why not make an urgent pleading case to change it to webKit or something. Explorer? Really? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/revBrowser-youtube-com-Crashing-tp2263932p2265991.html Sent from the Revolution - User mailing list

Thoughts on Announcements Posted Here

2010-06-23 Thread Jerry Daniels
Friends, Many of us on this How to Use Revolution list enjoy the helpful, learning environment it offers to all its subscribers. I am one of those people who read it, enjoy it and contribute where and when I can. I'm also one of those people who follow every link when there's a product

RE: Datagrid column/cell coloring

2010-06-23 Thread Jim Schaubeck
I saw that lesson but I do not want to apply the colorization decision in my code to every cell in the datagrid. How do I decipher what column and/or what row pData is from? jim schaubeck 714.321.4499 -Original Message- From:

Re: revBrowser + youtube.com = Crashing?

2010-06-23 Thread Simon Lord
I think it has more to do with linking to installed sources/libraries. Webkit is *not* installed by default on Windows systems so this is not feasible. The *browser* engines are not actually compiled into your stack—that's just a guess on my part. But I added a browser to my stack last night

RE: Datagrid column/cell coloring

2010-06-23 Thread Jim Schaubeck
I have this script in the My Default Column Behavior btn script on FillInData pData -- This message is sent when the Data Grid needs to populate -- this template with the column data. pData is the value to be displayed. set the text of the long id of me to pData ## temp workaround for

Re: [OT] Computer news from Kassel

2010-06-23 Thread Wilhelm Sanke
I am very much aware of the fact that software is almost never bug-free. Apart from the first part - where I wanted to direct your attention to the computer pioneer Konrad Zuse - the rest of my post was written with some degree of tongue-in-cheek (both in its positive and negative

Re: Thoughts on Announcements Posted Here

2010-06-23 Thread Andre Garzia
Jerry, I agree with you as usual. I have all the Rev add ons available, some I even have twice or thrice due to bundles. I am a sucker for bundles, I am that guy that buys that bag of bananas not because he likes it but because of the look at my banana ROI, they cost me -3 bucks since they were

Re: [OT] Computer news from Kassel

2010-06-23 Thread Andre Garzia
On Wed, Jun 23, 2010 at 4:33 PM, Wilhelm Sanke sa...@hrz.uni-kassel.dewrote: I am very much aware of the fact that software is almost never bug-free. It is not that software is never bug-free... software is only ready when it is bug free, the problem is that software is never ready (or at

Re: Thoughts on Announcements Posted Here

2010-06-23 Thread Michael Kann
Andre and Jack, I think the rule should be that all posts should be accompanied by an accurate subject line. Post anything you want, but make it clear what it is so people can open it if they wish. Examples From: Julie Smith Subject: My Super Program is Now for Sale -- O.K., let's open this

Re: Thoughts on Announcements Posted Here

2010-06-23 Thread Jerry Daniels
Great idea, Mick. Best, Jerry Daniels Follow the Rodeo discussion: http://rodeoapps.com/rodeo-discuss-among-yourselves On Jun 23, 2010, at 3:44 PM, Michael Kann wrote: Andre and Jack, I think the rule should be that all posts should be accompanied by an accurate subject line. Post

Re: Thoughts on Announcements Posted Here

2010-06-23 Thread tkuypers
Hi Jerry, I agree with you, I do follow most of the links in this list, but I'm not sure this list is the proper media to post your commercial apps, if they have no use to the fellow-revolutionaires... I use Revolution on a daily base, for may years now. All my apps are dedicated to the

Re: Thoughts on Announcements Posted Here

2010-06-23 Thread Jerry Daniels
Ton, I think we're saying the same thing, but I do think it's up to the poster to RELATE news or info about non-rev apps, sites, etc. BACK to what it means to a Revolution developer. Or how it might be of value to us. like so... Hey, the new version of Textwrangler really has a nice

RE: Datagrid column/cell coloring

2010-06-23 Thread Jim Schaubeck
I found out what is causing the color to not stay red. The setprop dgHilite pBoolean Still working through the learning process :-) jim schaubeck 714.321.4499 -Original Message- From: use-revolution-boun...@lists.runrev.com

Discover browsers on user system

2010-06-23 Thread Simon Lord
Any way to immediately know which browsers are installed on the user's system and drop those into a menu? Same thing for image editors if possible. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

RE: Datagrid column/cell coloring

2010-06-23 Thread JosepM
Hi Jim, Maybe you can customize the behavior for the columns that need to colorize. In the columns options at bottom you have one button to add a custom behavior for the selected col. Change the FillData for the column. Salut, Josep -- View this message in context:

Re: Discover browsers on user system

2010-06-23 Thread Scott Rossi
Recently, Simon Lord wrote: Any way to immediately know which browsers are installed on the user's system and drop those into a menu? Same thing for image editors if possible. It's funny, I remember using scripts like a decade ago to retrieve the *default* Web browser, but Rev's goURL and

Re: Discover browsers on user system

2010-06-23 Thread Terry Judd
On 24/06/10 11:22 AM, Scott Rossi sc...@tactilemedia.com wrote: Recently, Simon Lord wrote: Any way to immediately know which browsers are installed on the user's system and drop those into a menu? Same thing for image editors if possible. It's funny, I remember using scripts like a

Re: Discover browsers on user system

2010-06-23 Thread Mark Wieder
Simon- Wednesday, June 23, 2010, 5:39:15 PM, you wrote: Any way to immediately know which browsers are installed on the user's system and drop those into a menu? Same thing for image editors if possible. I suppose a relevant question might be Why?... -- -Mark Wieder

Re: Discover browsers on user system

2010-06-23 Thread Simon Lord
Sake of curiosity. Seems like it will be simpler to just have the user set these targets on their own and store the locations. Thanks! On Wed, Jun 23, 2010 at 9:49 PM, Mark Wieder mwie...@ahsoftware.net wrote: Simon- Wednesday, June 23, 2010, 5:39:15 PM, you wrote: Any way to immediately

Re: Discover browsers on user system

2010-06-23 Thread Shao Sean
Launch Services might do what you need it to do - either through AppleScript or an external.. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Discover browsers on user system

2010-06-23 Thread J. Landman Gay
Simon Lord wrote: Sake of curiosity. Seems like it will be simpler to just have the user set these targets on their own and store the locations. That's how Rev does it when you set a preferred image editor in prefs. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive

Re: rev media and the player, question

2010-06-23 Thread Ken Ray
Does rev Player play stacks written in Media? Or if you want to run them, do you have to have media installed on any machine you want to run them on? I know Stackrunner won't play media generated stacks. Pity. Well, StackRunner *may* play Media-generated stacks... I've gotten a couple of