Re: Ruby Active Record

2006-04-19 Thread Dan Shafer
Thanks, Ken. FOund it. But at those prices, I think I"ll stay far, far away. Yikes. On 4/19/06, Ken Ray <[EMAIL PROTECTED]> wrote: > > On 4/20/06 12:50 AM, "Dan Shafer" <[EMAIL PROTECTED]> wrote: > > > I don't see any support there for Revolution. Is it hiding? > > Click the Downloads link in the

Re: OSX Appearance?

2006-04-19 Thread Paul Claude
Arthur, I've posted this some days ago. --- Tired of manually copying the Plugins folder each time I test my app building a new standalone, I've made a little script to automate this task. Put it in a button handler, if you want. on mouseUp -- put below you

Re: Ruby Active Record

2006-04-19 Thread Ken Ray
On 4/20/06 12:50 AM, "Dan Shafer" <[EMAIL PROTECTED]> wrote: >> P.S. Oh yeah, almost forgot to mention that FrontBase wrote a >> plug-in for runrev compatibility. Found it accidentally on their >> download page: http://www.frontbase.com/cgi-bin/WebObjects/FrontBase > I don't see any support th

Re: Ruby Active Record

2006-04-19 Thread Dan Shafer
I don't see any support there for Revolution. Is it hiding? On 4/18/06, Russ McBride <[EMAIL PROTECTED]> wrote: > > > > > P.S. Oh yeah, almost forgot to mention that FrontBase wrote a > plug-in for runrev compatibility. Found it accidentally on their > download page: http://www.frontbase.com/cg

Re: spread the word about the Rev beginners Workshop

2006-04-19 Thread Chipp Walters
Thanks Sandy! BTW, for those of you who haven't seen the pictures Sandy took at last year's RevConWest check it out: http://www.troutfoot.com/rev/index.html Also, everyone who takes the workshop, gets a free copy of RevMedia! So, even if you know people who don't yet own Revolution, you can

spread the word about the Rev beginners Workshop

2006-04-19 Thread SB
Hey folks, spread the word about the RevCon West intensive pre-conference tutorial workshop on June 14-15 for beginners, or those who want a refresher course, with the great teachers, Jacqueline Landman Gay and Devin Asay, Iā€™m going to be taking this workshop, and want lots of good company.

Re: contextual menus on Windows - can't select items with left mouse button

2006-04-19 Thread Sarah Reichelt
> I'm popping up contextual menus in a mouseDown handler ā€“ like so... > > (much simplified) > > on mouseDown theButton > if theButton = 3 then > displayContextualMenu > end if > end mouseDown > > on displayContextualMenu > popup btn "myContextualMenu" of stack "myMenus" > en

Re: contextual menus on Windows - can't select items with left mouse button

2006-04-19 Thread Terry Judd
Doh - that'd be because the menuMouseButton property was set to 3 instead of 0. Terry... Ello, I'm popping up contextual menus in a mouseDown handler ā€“ like so... (much simplified) on mouseDown theButton if theButton = 3 then displayContextualMenu end if end mouseDown on di

contextual menus on Windows - can't select items with left mouse button

2006-04-19 Thread Terry Judd
Ello, I'm popping up contextual menus in a mouseDown handler ā€“ like so... (much simplified) on mouseDown theButton if theButton = 3 then displayContextualMenu end if end mouseDown on displayContextualMenu popup btn "myContextualMenu" of stack "myMenus" end displayContextual

Unicode

2006-04-19 Thread Nicholas Thieberger
I am trying to enter Unicode in a field. I have set the 'use unicode' to true in a startup script as follows: set the useunicode to true set the textFont of field "Text" to "Gentium,UTF8" This has the effect of making all the characters in the field appear in a Chinese script. This is not

Ask Password

2006-04-19 Thread Jeff Honken
I have a user that is using one of my compiled .exe's. He's running WinXP Home addition. He claims he can't see the password field in the application. None else has complained of this but He's described it to me clearly so I believe him. Does anyone know why he couldn't see the password field b

Re: Shadow of menu pulldown...

2006-04-19 Thread Gilberto Cuba
From: "Mark Wieder" <[EMAIL PROTECTED]> Sent: Monday, April 17, 2006 6:36 PM How I can hide the shadow of the stack that open when I click in a button with style "pulldown". I tried to put false the shadow property of the current stack that It will show and not work fine. Why? This works fi

Re: Setup a Scrollbar?

2006-04-19 Thread Brian Yennie
Hrm. Any chance it's a rounding / trunc problem? If so you could increase the "resolution" by jumping from a 0-100 base scale to something more like 0-10 to make the truncating negligible. How much is getting cut off / what are your actual values? Just a shot in the dark...! Recently, B

Re: Setup a Scrollbar?

2006-04-19 Thread Scott Rossi
Recently, Brian Yennie wrote: > I think the trick is that you have to also increase the endValue when > you increase the thumbSize (not very intuitive, I know). Thanks Brian. Unfortunately, I'm still getting inconsistent results. Sometimes the scrollbar scrolls correctly to the end of the field

Re: FTP Attempts

2006-04-19 Thread Todd Geist
Thank You! On Apr 19, 2006, at 2:53 PM, Mark Schonewille wrote: Hi Todd, You cannot issue an NLST command with libUrlFtpCommand. Instead, you have to use the libURLSetFTPListCommand command. libURLSetFTPListCommand -- Todd Geist __ g e i s t i n

Re: FTP Attempts

2006-04-19 Thread Mark Schonewille
Hi Mark, If Todd were using active ftp, my first question would be "some reason why you're using active mode instead of passive"? I believe, default mode should be passive, because you can just keep port 21 open and don't need to worry about all other ports that would have to be open if activ

Re: FTP Attempts

2006-04-19 Thread Mark Schonewille
Hi Todd, You cannot issue an NLST command with libUrlFtpCommand. Instead, you have to use the libURLSetFTPListCommand command. libURLSetFTPListCommand Once you have done that, you can retrieve a list using the put url command: put url "ftp://user:[EMAIL PROTECTED]/dir/" Note the slash at

Re: Setup a Scrollbar?

2006-04-19 Thread Brian Yennie
Scott, I think the trick is that you have to also increase the endValue when you increase the thumbSize (not very intuitive, I know). Try this. Set: startValue: 0 endValue: 100 Now scroll all the way down and check the thumbPosition... it's 67, not 100. So you probably want something more

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Bob Warren
Mark Smith wrote: >Why on earth is a mac mini three times as expensive in Brazil as in the US? Is it Apple, local distributors or some kind of tax? Surely, if not a tax (in which case, it's not a question of business logic), there's some kind of opportunity for someone there. --

Re: FTP Attempts

2006-04-19 Thread Todd Geist
Hi Mark. On Apr 19, 2006, at 1:49 PM, Mark Wieder wrote: Todd- Wednesday, April 19, 2006, 1:41:13 PM, you wrote: ON mouseUp pMouseBtnNum libURLSetFTPMode "passive" Some reason you're using passive mode instead of active? I don't have the time to look this up right now, but I don't thi

Re: Setup a Scrollbar?

2006-04-19 Thread Scott Rossi
Recently, Malte Brill wrote: > try: > > startValue: 0 > endValue: formattedheight of fld - height of fld - margins of fld (if > <1 no scroll) > pageInc: 1 > lineInc: 1 > thumbSize: 1 Thanks Malte -- this is pretty much what I tried. My problem is getting the thumb correctly sized so, for exam

Re: FTP Attempts

2006-04-19 Thread Mark Wieder
Todd- Wednesday, April 19, 2006, 1:41:13 PM, you wrote: > ON mouseUp pMouseBtnNum > libURLSetFTPMode "passive" Some reason you're using passive mode instead of active? I don't have the time to look this up right now, but I don't think you can mix passive mode and port 21. Other than that, d

FTP Attempts

2006-04-19 Thread Todd Geist
Hello, I am trying the following script and I am getting an error. ON mouseUp pMouseBtnNum libURLSetFTPMode "passive" get libURLftpCommand("NLST","ftp4.mysite.com: 21","",""") put it into field 1 pass MouseUp END MouseUp --> 226 Transfer Failed! Any clues for me? Also

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Francis Nugent Dixon
Hi from Paris, Just a minor point about Brazil, apart from it being the most fantastic country. Anything that is imported into Brazil costs an arm and a leg, due to exhorbitant import taxes. The basic idea is, Buy Brazilian (even when it doesn't exist). I remember arriving in Brazil to do a 2 we

Re: keyDown message weirdness

2006-04-19 Thread Devin Asay
This is now bugzilla'd as bug #3537. Devin Devin Asay Humanities Technology and Research Support Center Brigham Young University ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Setup a Scrollbar?

2006-04-19 Thread Malte Brill
Hi scott, try: startValue: 0 endValue: formattedheight of fld - height of fld - margins of fld (if <1 no scroll) pageInc: 1 lineInc: 1 thumbSize: 1 Hope that helps, Malte ___ use-revolution mailing list use-revolution@lists.runrev.com Please vis

Setup a Scrollbar?

2006-04-19 Thread Scott Rossi
Is there a document/recipe somewhere to set up the properties of a scrollbar such that its thumb correctly syncs with the scroll of a field? I know I've done this before somewhere but for some reason I seem to be off on a current project in how I'm figuring the start and end values. Thanks & Rega

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Mark Smith
Here, in the UK, the Apple Store offers that machine for 599 UKP, which currently is 1073 USD, 911 without UK tax. The US Apple Store offers it for 799 USD, so it would seem that Apple are charging UK customers a premium of 112 USD. We brits have complained about this for years, but to no a

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Stephen Barncard
On comparing the 'Mac Experience' to Linux on an Intel box on price alone -- I can't believe some of the pros here can't tell the difference. And yes, UBUNTU is very good these days. Looks ok on a Mac. But for me, it's not only the OS, but the quality of the hardware (not the lowest bidder).

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Bob Warren
Mark Smith wrote: >Why on earth is a mac mini three times as expensive in Brazil as in the US? Is it Apple, local distributors or some kind of tax? Surely, if not a tax (in which case, it's not a question of business logic), there's some kind of opportunity for someone there. --

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Wolfgang Bereuter
On 19.04.2006, at 07:16, Chipp Walters wrote: Hi Chip, I hape I can say it english as i could in german. Let me try: I dont understand why you are whining so often about the Mac prices and the good old times of great tools. Anf praises the glory of Win all the time. The computer I would ge

Thanks altPlugins

2006-04-19 Thread Preston Shea
I took your advice and downloaded the free altPlugins & altArchive. Works like a charm and is way better for my purposes that my now dysfunctional "Save As..." Thanks so much for this terrific piece of software. I also use the tm| family of plugins (align, gradient, color) which have a differe

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Mark Smith
Why on earth is a mac mini three times as expensive in Brazil as in the US? Is it Apple, local distributors or some kind of tax? Surely, if not a tax (in which case, it's not a question of business logic), there's some kind of opportunity for someone there. Best, Mark On 19 Apr 2006, at

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Bob Warren
Richard Gaskin /Chipp Walters wrote: >> Or blow off both OS vendors and cut the price in half by getting just >> about any Linux pre-installed system. >Yeah, let me know how Rev on Linux goes. I'm right behind the well-worn >path you blaze! Dan Shafer wrote: >But as soon as Linux support for R

Re: [OT] Cringely on BootCamp's future

2006-04-19 Thread Bob Warren
Chipp Walters / Richard Gaskin wrote: >> Spoke too quick. Turns out the Mac Mini I was referring to was not a >> Core Duo but Core Solo. Bummer. So, now a 1.66Ghz, 1GB memory, 100Gb >> hard drive MacMini costs $959 (without tax). Add a OEM version of WinXP >> Home and you're up over $1000. I can

Re: quicktime sizes

2006-04-19 Thread Wally Rodriguez
Thanks to both of you with suggestions. I was not using a player in this project because it's not necessary to preview the movies, but maybe if it's hidden I can use one to get these values. Much appreciated. w. On Apr 18, 2006, at 5:51 PM, Trevor DeVore wrote: On Apr 18, 2006, at 1:06 PM

Re: keyDown message weirdness

2006-04-19 Thread Devin Asay
On Apr 18, 2006, at 9:40 PM, J. Landman Gay wrote: Devin Asay wrote: > It's not the font choice that triggers the bug, but the input method. > You would need to activate the input menu from the International system > pref pane. Activate, eg., Cyrillic or Greek, then click in your rev >

Re: HTML Tables

2006-04-19 Thread Jim Ault
Here is one that used some RegEx that I sent to Eric Chatonet and he ramped up to a real code function for removing tags. Note that a couple steps are commented out since the exact page you are trying to parse may or may not need different treatment for spaces and returns. Try this way, then twea

Re: Selection of Icon from IconChooser within the script itself!!!

2006-04-19 Thread William de Smet
Hi Nitesh, This is what I would do: - load the images you want to use as an icon and group them (group "buttons") - you can give each image a small script like (or make a group script): on mouseup set the icon of btn "test" to 1010 end mouseup When creating a new button show group "buttons" Ho

Re: HTML Tables

2006-04-19 Thread Bill Marriott
Hey that's pretty darned good for off the top of your head! I make two changes. One is an adjustment to the regular expression to account for spaces before the < and after the > (so there is no junk around the tabs), and one is to fix a syntax error. (I hope I did it right, I'm not super famili

Selection of Icon from IconChooser within the script itself!!!

2006-04-19 Thread DAHIYA Nitesh
Hi all !! I am facing a problem in my application. Whenever I create a button, I want an icon to be assigned to it. As of now, I am asking the user to enter the Icon Number to be assigned. What I want to achieve is that the user doesn't have to enter anything. As soon as he creates a button, a

Re: HTML Tables

2006-04-19 Thread Brian Yennie
Bill, If you *just* need row and column data and no formatting, how about something like: (warning: untested email code) ## get source from a field put fld "htmlSource" into tHTML ## translate end of row to end of line replace "" with return in tHTML ## translate end of column to tab replace

HTML Tables

2006-04-19 Thread Bill Marriott
Forgive me if this has been "asked and answered" on the list before, but I think it's of general enough interest for me to post, in case someone has already invented this mousetrap. I am wondering what the most efficient way might be to convert an HTML table into a Rev table. The ideal solutio