Re: Determining a User's Name

2007-04-07 Thread Phil Davis
Joe - Would environment variables work? - on Mac OS X there's $USER - on Win XP there's $USERNAME So you could do this: function currentUser switch the platform case MacOS return $USER break case Win32 return $USERNAME break end switch end currentUser

Linux installation

2007-04-07 Thread Peter Alcibiades
The only part of this I'm certain of is the desktop icon/link In terms of icons on desktops, it is not the window manager that counts. If you put the application into /opt and put an link and associated icon into /home/user/Desktop, in whatever WM they are using, if it supports icons on

Linux installation - menus

2007-04-07 Thread Peter Alcibiades
http://standards.freedesktop.org/menu-spec/latest/ is probably the first place to go for how to do menus independently of WMs. Peter ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Determining a User's Name

2007-04-07 Thread Joe Lewis Wilkins
Boy! It took you guys long enough! (Hugh smile) Thanks a lot, I suspected some such, but my searches for username turned up nothing in the Dictionary. Great List. Joe Wilkins On Apr 7, 2007, at 12:39 AM, Phil Davis wrote: Joe - Would environment variables work? - on Mac OS X there's

Users language

2007-04-07 Thread Mark Smith
Can anyone tell me if it's possible to discover the language that a users computer is using? Is there a $USER - type environment variable which would give us English, French or whatever? Thanks, Mark ___ use-revolution mailing list

Re: Users language

2007-04-07 Thread Eric Chatonet
Hi Mark, Your solution is in Trevor's GetUserLang stack on RevOnline. Le 7 avr. 07 à 13:32, Mark Smith a écrit : Can anyone tell me if it's possible to discover the language that a users computer is using? Is there a $USER - type environment variable which would give us English, French or

Re: Work around for Beep not working on RunRev 2.7.x+

2007-04-07 Thread Bill
You have a point. Maybe it would be easier to just make the beep only able to beep once. I also just got an email (from bugzilla) saying the WYSIWIG conflict of the background appearing white has been resolved. It was a minor bug but fixed now. On 4/5/07 1:27 PM, Richard Gaskin [EMAIL

Re: Linux installaton

2007-04-07 Thread Bob Warren
I wrote: You might also like to look at the installer used by Xara which is also very impressive, though this might be their own rather than a commercially-available installer (I can't quite remember). -- Richard: In fact, Xara uses

Re: Users language

2007-04-07 Thread Mark Smith
Thanks, Eric (and Trevor, of course). Got it. Best, Mark On 7 Apr 2007, at 12:58, Eric Chatonet wrote: Hi Mark, Your solution is in Trevor's GetUserLang stack on RevOnline. Le 7 avr. 07 à 13:32, Mark Smith a écrit : Can anyone tell me if it's possible to discover the language that a

[ANN] New game made with Rev

2007-04-07 Thread Malte Brill
Hi all, as it is derbrill birth week (5 years in business, how fast time flies) I have been a busy bee the last few weeks and made a new game. ZACK! is a strategy game that’s delightfully addictive! Based on the concept of placing tiles to build bridges, each tile must match the color of

Re: [ANN] New game made with Rev

2007-04-07 Thread Andre Garzia
I was there playing, armed with instinct and strategy, I made careful choices... I know Malte has an online highscore board and I decided that I'd play to top that... after many rounds, the game used secret weapons, I thought that we had only four colors plus the bicolor tiles but then

Re: Linux installation

2007-04-07 Thread Bob Warren
Richard wrote: Thanks for the info, Bob. But rather than using an existing installer I'm aiming to write my own. So what I'm looking for is info on what each of the window managers (KDE, Gnome -- other popular ones?) requires for an app to: - Set up document file type associations - Assign

Re: Work around for Beep not working on RunRev 2.7.x+

2007-04-07 Thread Richard Gaskin
Bill wrote: On 4/5/07 1:27 PM, Richard Gaskin wrote: Users have a difficult enough life as it is, why would we want to beep at them multiple times? You have a point. Maybe it would be easier to just make the beep only able to beep once. And on balance I can see the value in using it for

Metadata from Office documents

2007-04-07 Thread Mark E. Powell
Anyone have a tried and true method of extracting metadata from Microsoft Office documents (Windows). Microsoft's site is a bit confusing in this area. Thanks Mark ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this

[OT] Hungarian in space

2007-04-07 Thread Richard Gaskin
with two cosmonauts and U.S. billionaire Charles Simonyi aboard. http://news.yahoo.com/s/ap/20070407/ap_on_re_eu/russia_space;_ylt=AlIrdH_jWfUcbN87e6VBYUQDW7oF -- Richard Gaskin Fourth World Media Corporation ___ [EMAIL PROTECTED

A string doesn't equal itself

2007-04-07 Thread J. Landman Gay
Bizarre. Get this: put 09114E715806 = 09114E715806 returns false. Is it interpreting this string as a number with an exponent? Something about math libraries? -- Jacqueline Landman Gay | [EMAIL PROTECTED] HyperActive Software | http://www.hyperactivesw.com

Re: A string doesn't equal itself

2007-04-07 Thread Brent Anderson
Hello. I would imagine that it is making a false detection of your string as a number. I replaced the Es with Fs and it worked fine. Until Revolution comes out with a correction, you'll have to make the comparison using a function to process the data. A sure-fire way to get this to work

Re: A string doesn't equal itself

2007-04-07 Thread J. Landman Gay
Brent Anderson wrote: Hello. I would imagine that it is making a false detection of your string as a number. I replaced the Es with Fs and it worked fine. Until Revolution comes out with a correction, you'll have to make the comparison using a function to process the data. A sure-fire way to

Re: Filtering Columns in Tables

2007-04-07 Thread J. Landman Gay
Jim Schaubeck wrote: Hello all, I'm trying to code a way so a user can click on the title of a particular column in a table field to select filters for that column. Much like you can use a spreadsheet and add filter boxes in the header cells to select the specific contents for that column.

Re: A string doesn't equal itself

2007-04-07 Thread Jeanne A. E. DeVoto
At 9:24 PM -0600 4/7/2007, Brent Anderson wrote: It's very odd that revolution doesn't interpret the two strings the same (and, therefore, as equal). It makes you wonder what's going on under the hood. I'm guessing it's an overflow problem, because it varies depending on the numbers used.