Re: Goin' crazy with a windows error!!!

2010-02-25 Thread Bernard Devlin
On Wed, Feb 24, 2010 at 7:33 PM, Giovanni Cannizzaro johncanmail-...@yahoo.it wrote: And here is the scenario: I use a really simple datagrid (table format, populated with the dgText) in a stack called in the modal way. Before the modal call of the stack I open the stack invisible, populate

Re: Playing sound in revWeb revlet

2010-02-25 Thread Judy Perry
As does iris open (no link; too tired to upload). But now it doesn't like one of my wav's... :-/ Judy On Wed, 24 Feb 2010, Judy Perry wrote: Dissolve also works. http://jperryl.ecs.fullerton.edu/test2.html ___ use-revolution mailing list

Re: DataGrid: Let Data Grid know that first line has column names

2010-02-25 Thread Andre.Bisseret
Bonjour Matthias, I have had the same problem as you can see in the thread that Zryip pointed out Have a look at page 44 in the Trevor' doc; it says: Note that if pFirstLineContainsHeaders is true then the columns must already exist in your data grid table in order to be displayed. So you

what applications are running

2010-02-25 Thread Nicolas Cueto
Hello, Had no idea how to frame the subject line... Is there a way that a Rev stack can find out what applications on a Windows machine (and Mac?) are already running? Thanks. -- Nicolas Cueto ___ use-revolution mailing list

Re: navigating cleanly between main- and sub-stacks

2010-02-25 Thread Nicolas Cueto
Thanks André. The lock screen did the trick. -- Nicolas Cueto ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

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 after

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

Re: navigating cleanly between main- and sub-stacks

2010-02-25 Thread Andre.Bisseret
Nicolas, If you find it nice, you could also add a visual effect (or two,) : -- lock screen set the visible of this stack to false go to cd 1 of stack theMainStack visual effect iris open -- or : visual effect shrink to center to black, or visual effect stretch from center

Re: navigating cleanly between main- and sub-stacks

2010-02-25 Thread Richmond Mathewson
Wow, another naive question from Richmond . . . :) What does cleanly in navigating cleanly mean? I assume (possibly wrongly) that you mean that the end-user is unaware s/he is actually changing from the main stack to a substack. If that is so important why do you bother to have a substack at

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 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 applying

Re: Freezing solid

2010-02-25 Thread David Glasgow
On 24 Feb 2010, at 6:00 pm, John Law wrote: How does one prevent the program locking up in the middle of a job? Never, ever, make any mistakes in your scripts :-D David Glasgow PS I can risk this facetiousness, because I know good and wise list members will give you sound and helpful advice

Re: navigating cleanly between main- and sub-stacks

2010-02-25 Thread Nicolas Cueto
Richmond asked a couple of questions: What does cleanly in navigating cleanly mean? I assume (possibly wrongly) that you mean that the end-user is unaware s/he is actually changing from the main stack to a substack. Yes, that unawareness factor is what I'm after. The way it was setup

an annual calendar somewhere?

2010-02-25 Thread Andre.Bisseret
Bonjour, I need an annual calendar, one which could be display entirely on one card of a stack. Something like 12 rows, one for each months. Does someone know if that has already been done with runrev and if it is possible to get it somewhere? Thanks a lot in advance for any clue Best

Re: Project Euler [SPOILER #3]

2010-02-25 Thread Geoff Canyon Rev
It's hurting my head trying to figure out why yours works. ;-) That said, it's very slow. The simple brute force method is roughly 100 times faster (since it doesn't iterate 10,000 times but only 100): put 0 into total put 0 into summer repeat with i = 1 to 100

Conference-DVDs arrived

2010-02-25 Thread Tiemo Hollmann TB
FYI: 25.02.2010, finally the Conference-DVDs (09, not 10!) arrived in Germany, so probably another eight weeks to down under J Tiemo ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Conference-DVDs arrived

2010-02-25 Thread Marc Siskin
Tiemo, When did you order your DVDs? Were you an early adopter (back in June) or did you order them later? Thanks. Marc On Feb 25, 2010, at 9:45 AM, Tiemo Hollmann TB wrote: FYI: 25.02.2010, finally the Conference-DVDs (09, not 10!) arrived in Germany, so probably another eight weeks

Re: Conference-DVDs arrived

2010-02-25 Thread Kevin Miller
On 25/02/2010 14:51, Marc Siskin msis...@andrew.cmu.edu wrote: When did you order your DVDs? Were you an early adopter (back in June) or did you order them later? Most of you have your DVDs at this point. I do sincerely apologize to those the small numbers that still don't. We will be writing

Re: Project Euler [SPOILER #3]

2010-02-25 Thread Geoff Canyon Rev
Ah, now I understand how yours works -- that _is_ quite clever! gc On Thu, Feb 25, 2010 at 8:21 AM, Geoff Canyon Rev gcanyon+...@gmail.com wrote: It's hurting my head trying to figure out why yours works. ;-) That said, it's very slow. The simple brute force method is roughly 100 times

Re: Project Euler [SPOILER #3]

2010-02-25 Thread Ian Macphail
put 100 into n put n * (n + 1) * (2 * n - 2) / 6 into total ;) ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Project Euler [SPOILER #3]

2010-02-25 Thread Ian Macphail
Ian Macphail wrote: put 100 into n put n * (n + 1) * (2 * n - 2) / 6 into total ;) _ Oops! forgot it was the square of the sum. put 100 into n put n * (n + 1) / 2 into a put n * (n + 1) * (2 * n + 1) / 6 into b put a * a - b into total

Re: Conference-DVDs arrived

2010-02-25 Thread Neal Campbell
Still waiting Neal Campbell Abroham Neal Software www.abrohamnealsoftware.com (540) 645 5394 NEW PHONE NUMBER Amateur Radio: K3NC Blog: http://www.abrohamnealsoftware.com/blog/ DXBase bug reports: email to ca...@dxbase.fogbugz.com Abroham Neal forums:

On-Rev and setting cookies

2010-02-25 Thread Jeffrey Massung
I'm having one helluva time trying to get a single cookie set from my irev files. It doesn't seem to matter what I do, unless I manually set it using the meta tag, the cookie doesn't show up on my system. put test=foobar; into tCookie put header Set-Cookie: tCookie This just doesn't work no

Re: navigating cleanly between main- and sub-stacks

2010-02-25 Thread stephen barncard
Actually Trevor Devore (in his Application Framework master class) recommends breaking a project into several substacks as a way to manage large projects. - Stephen Barncard San Francisco http://houseofcubes.com/disco.irev On 25 February 2010 05:13, Nicolas Cueto

Re: Can browser send a command to a servlet?

2010-02-25 Thread Jim Lambert
See splash21's excellent polling workaround. http://splash21.on-rev.com/revlet/index.irev. Jim Lambert ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: On-Rev and setting cookies

2010-02-25 Thread stephen barncard
Have you seen Sarah's ON-REV pages? http://www.troz.net/onrev/samples/cookies.irev - Stephen Barncard San Francisco http://houseofcubes.com/disco.irev On 25 February 2010 07:27, Jeffrey Massung mass...@gmail.com wrote: I'm having one helluva time trying to get a

Re: On-Rev and setting cookies

2010-02-25 Thread stephen barncard
Click the REV icon to see the script On 25 February 2010 08:46, stephen barncard stephenrevoluti...@barncard.com wrote: Have you seen Sarah's ON-REV pages? http://www.troz.net/onrev/samples/cookies.irev - Stephen Barncard San Francisco

[OT] Re: Playing sound in revWeb revlet

2010-02-25 Thread J. Landman Gay
Bob Sneidar wrote: Well I finally got ahold of Jacque's time *warp* stack (excuuuse me!), at which point I warped time and installed it on my first computer. (There are no colors in a wormhole btw.) after I restored time, it turns out I have always had it! So you're the one who took

RE: an annual calendar somewhere?

2010-02-25 Thread Robert Cole
André: On Mac OS X, I use a simple shell command to put the calendar into a field . put shell(cal 2010) into field Calendar Field Be sure to use a monospace font like Courier in the field Bob - - - - - - - Bonjour, I need an annual calendar, one which could be display entirely on one card

Re: Conference-DVDs arrived

2010-02-25 Thread Richmond Mathewson
On 25/02/2010 21:01, jcw...@jaguar1.usouthal.edu wrote: The DVDs have not made it to the deep south yet, and neither have I had a message from Kevin. Jim They haven't reached the Wild East either - mind you around here they won't be delivered; I'll have to hop in the car and go and fill

RunRevLive.10: 72 hours left to save

2010-02-25 Thread Richmond Mathewson
Save what? As I am still waiting for an awful lot of what I paid for last year I don't feel like paying more money for stuff that will either never materialise or will, but when it does it is so out of date it is not worth having . . . Free Bonuses Once bitten, shy ever afterwards.

Re: an annual calendar somewhere?

2010-02-25 Thread J. Landman Gay
Robert Cole wrote: André: On Mac OS X, I use a simple shell command to put the calendar into a field . put shell(cal 2010) into field Calendar Field Be sure to use a monospace font like Courier in the field !!! Had no idea. That is too cool. -- Jacqueline Landman Gay |

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Marian Petrides
Exactly my point, Richmond. That's why I passed up on the deal. And I didn't even get the chance to avail myself of the simulcast (or to attend the conference itself) because of time constraints. The ONLY benefit I will get out of what I paid will be when (if?) I get the DVDs. Not a happy

Re: Playing sound in revWeb revlet

2010-02-25 Thread J. Landman Gay
Judy Perry wrote: Dissolve also works. http://jperryl.ecs.fullerton.edu/test2.html Judy On Wed, 24 Feb 2010, Kenji Kojima wrote: Wipe right and wipe left work. http://www.kenjikojima.com/999ViewsRenga/ This uses blend wipe. http://www.kenjikojima.com/rgbmusicrenga/nycsubway/ Interesting,

Re-2: DataGrid: Let Data Grid know that first line has column names

2010-02-25 Thread runrev260805
Andre, thanks for that. I would have expect that information on page 19 not at page 44. I am reading a book page for page ;-) But anyway, i can now proceed with my DataGrid investigation. Matthias Original Message Subject: Re: DataGrid: Let Data Grid know that first line

Re: Conference-DVDs arrived

2010-02-25 Thread Marian Petrides
Nothing from Kevin here either. I DID get a response from Heather, but that only contained instructions to contact her yet again (fourth time) if they don't arrive by tomorrow. NO indication of what RunRev will do if they don't arrive. Not acceptable, no way. On Feb 25, 2010, at 12:54 PM,

Re: Project Euler [SPOILER #3]

2010-02-25 Thread Mick Collins
600851475143 = 71* 839 * 1471 * 6857 It's factors are 1, 71, 839, 1471, 6857, 59569, 104441, 486847, 1234169, 5753023, 10086647, 87625999, 408464633, 716151937, 8462696833, and 600851475143 I wrote a stack that will do this for any number whose largest prime factor is around 100,000,000 or

Re: Conference-DVDs arrived

2010-02-25 Thread J. Landman Gay
Richmond Mathewson wrote: I'll have to hop in the car and go and fill in all sorts of daft customs forms with the word 'Revolution' Good thing the product is now called Rev then. And the company is RunRev. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive

Re: navigating cleanly between main- and sub-stacks

2010-02-25 Thread J. Landman Gay
Nicolas Cueto wrote: Richmond asked a couple of questions: What does cleanly in navigating cleanly mean? I assume (possibly wrongly) that you mean that the end-user is unaware s/he is actually changing from the main stack to a substack. Yes, that unawareness factor is what I'm after. The

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Richmond Mathewson
On 25/02/2010 21:59, Marian Petrides wrote: Exactly my point, Richmond. That's why I passed up on the deal. And I didn't even get the chance to avail myself of the simulcast (or to attend the conference itself) because of time constraints. The ONLY benefit I will get out of what I paid will

Re: Conference-DVDs arrived

2010-02-25 Thread Kevin Miller
On 25/02/2010 18:17, Marian Petrides mpetri...@earthlink.net wrote: Apologies are nice, but getting the DVDs is much better. There are genuine, exceptional reasons for this delay which relate directly to the tragic events that occurred earlier this year. Unfortunately I'm not willing to go into

Re: Conference-DVDs arrived

2010-02-25 Thread Richmond Mathewson
On 25/02/2010 22:03, J. Landman Gay wrote: Richmond Mathewson wrote: I'll have to hop in the car and go and fill in all sorts of daft customs forms with the word 'Revolution' Good thing the product is now called Rev then. And the company is RunRev. Well, Yes, but I love the odd bit of

Re: Conference-DVDs arrived

2010-02-25 Thread jcwall
The DVDs have not made it to the deep south yet, and neither have I had a message from Kevin. Jim - James C. Wall, PhD Professor Department of Physical Therapy University of South Alabama 307 N University Blvd, Room 2011 Mobile AL 36688 Phone: (251) 445 9330

Re: Conference-DVDs arrived

2010-02-25 Thread Marian Petrides
Apologies are nice, but getting the DVDs is much better. What does RunRev plan to do for those of us that have NOT yet gotten our DVDs? For me, the only options I would consider acceptable at this late date would be either direct shipment by express carrier or refund of my money. I realize

Re: Project Euler

2010-02-25 Thread Mick Collins
First, thanks, Andre for starting the thread and turning us / me onto the Euler Project. I enjoy implementing algorithms, but math is fun, too! Since Euler was a mathematician, how about a more mathematical approach. I haven't seen these approaches yet in my quick scan of the posts, so I

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 Robert Cole bobc...@earthlink.net: André: On Mac OS X, I use a simple shell command to put the calendar into a field .     put shell(cal 2010) into field Calendar Field Be sure to use a monospace font like Courier in the field Bob Thanks for the tip, Bob ;) More infos for using

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 20:45, Robert Cole a écrit : André: On Mac OS X, I use a simple shell command to put the calendar into a field . put shell(cal 2010) into field Calendar Field Be sure to use a monospace font like Courier in the field Bob - - - - - - - Re, ye ! one question :

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread J. Landman Gay
Richmond Mathewson wrote: Can't they see just how much damage they are doing themselves by behaving like this? Can you see how much damage you are doing to the company by posting an uninformed tirade on a publicly archived list? Especially when you don't know what happened? RR behaved

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Jeff Massung
On Thu, Feb 25, 2010 at 2:16 PM, J. Landman Gay jac...@hyperactivesw.comwrote: Richmond Mathewson wrote: Can't they see just how much damage they are doing themselves by behaving like this? Can you see how much damage you are doing to the company by posting an uninformed tirade on a

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Marian Petrides
Excuse me? How can RR be perceived as behaving responsibly, when we get non-responses from queries about shipping status, when it takes more than 6 months for the DVDs to arrive and when there are such disparities (MORE THAN A MONTH) in shipping. Even if you sub-contract out a part of

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread J. Landman Gay
Jeff Massung wrote: If I had one complaint, it would be that I have yet to ever see a Rev engineer on the forums or in this list answering questions and actively helping users to get all they can out of their product. They are on the Improve-Rev list, which is open to Enterprise customers.

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 Yves COPPE yvesco...@skynet.be: Re, ye ! one question : is it possible to get the calendar in the chosen language in the preferences system (in my case : french) ? Greetings. Yves COPPE yvesco...@skynet.be Yves, Not sure that the calendar is stored in different

Re: an annual calendar somewhere?

2010-02-25 Thread Richmond Mathewson
AND . . . it works on Linux as well . . . :) Presumably this is because of the common UNIXy base of both Mac OS X and Linux. So, to get hold of a Julian calendar would involve mucking around with the data that arrived in the display field. And an Islamic, Jewish, Buddhist or Hindu (there are

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 21:56, zryip theSlug a écrit : 2010/2/25 Yves COPPE yvesco...@skynet.be: one question : is it possible to get the calendar in the chosen language in the preferences system (in my case : french) ? Not sure that the calendar is stored in different languages. For french,

Re: an annual calendar somewhere?

2010-02-25 Thread Richmond Mathewson
For an understanding of the parameters of the calendar do this: put shell (call -500) into fld Calendar Field that will generate an error (hard luck Herodotus!) and details of all the parameters . . . ___ use-revolution mailing list

Re: Project Euler

2010-02-25 Thread Michael Kann
Mick, You beat me to it on the Fibonacci series. I also thought about using the golden ratio. Using a few other relationships allows one to compose a rather compact script. 1. the F numbers are always odd odd even, odd odd even --- this allows you to use step 3 in the loop --- you will only

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Brian Yennie
I probably shouldn't touch this one with a 10-foot (100-foot? 100-meter?) pole, but... Perhaps the best solution for everyone would be if Rev just offered up some combination of refund or store credit. We certainly don't need to be debating the role of force majeure in this case, but some sort

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread zryip theSlug
Do as I do. Send you yourself a dvd each week, you'll never be disappointed. Anyway it could be worse, imagine: - as a slug, I'm in charge to deliver your dvd by hand - receiving the box but without the dvd - found a better way to dev cool stuffs during the time you wait - be burgled while your

Re: Project Euler

2010-02-25 Thread Brian Yennie
Good stuff! I particularly like this project, because it allows for a combination of clever coding AND pure math. The best problems surely require both. It also depends what level of computation you force yourself to contain in you code. For example, Rev has a sqrt() function, but what if you

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Richmond Mathewson
On 25/02/2010 23:20, Brian Yennie wrote: snip Would anyone be unwilling to just call it a day if RunRev said we're very sorry that we were unable to deliver these DVDs in a timely fashion. please accept our apology this credit towards XYZ and we will still ship your DVD when we can ?

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 Yves COPPE yvesco...@skynet.be: Le 25-févr.-10 à 21:56, zryip theSlug a écrit : 2010/2/25 Yves COPPE yvesco...@skynet.be: one question : is it possible to get the calendar in the chosen language in the preferences system (in my case : french) ? Not sure that the calendar is

Re: an annual calendar somewhere?

2010-02-25 Thread J. Landman Gay
zryip theSlug wrote: put tTheCal into fld Calendar Field end mouseUp And now? When I tried to use ncal on OS X, the command wasn't found. It seems it is unsupported there. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 J. Landman Gay jac...@hyperactivesw.com: zryip theSlug wrote:   put tTheCal into fld Calendar Field end mouseUp And now? When I tried to use ncal on OS X, the command wasn't found. It seems it is unsupported there. -- Jacqueline Landman Gay         |    

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 22:37, zryip theSlug a écrit : Okay, okay. on mouseUp local tTheCal, tTheMonth, tTheFrenchMonth, tTheDay, tTheFrenchDay put January ,February ,March,April,May,June,July,August,September,October,November,December into tTheMonth put Janvier ,Février

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 22:51, zryip theSlug a écrit : I'm on OS X too, and it seems that the ncal and cal commands are linked. When you type: put shell(man ncal) into fld Calendar Field What do you get? re, I get this : No manual entry for ncal Greetings. Yves COPPE yvesco...@skynet.be

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Kevin Miller
Richmond, I'm certainly not using those events as an excuse. I'm simply stating a fact which is true, for those of you that are interested. You can accept that or not. I have apologized for the situation with respect to the DVDs, it is inexcusable. We knew going into this that we had a lot to

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 Yves COPPE yvesco...@skynet.be: Le 25-févr.-10 à 22:37, zryip theSlug a écrit : Okay, okay. on mouseUp  local tTheCal, tTheMonth, tTheFrenchMonth, tTheDay, tTheFrenchDay  put January,February,March,April,May,June,July,August,September,October,November,December into tTheMonth

Re: navigating cleanly between main- and sub-stacks

2010-02-25 Thread Nicolas Cueto
In that case, you may just want to go stack other stack name in window mainstack name. The effect is the same as changing cards and you don't need any other script manipulations. Thanks Jacqueline, but the stacks differ in dimension, both from the mainstack and each other. -- Nicolas Cueto

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Neal Campbell
They did not do their best and they have acknowledged it and promised to correct it next year.Do I accept their apology? Of course I do! What do I gain by bashing a great small company serving a very intimate (sometimes maybe too intimate) clientele and are not trying to get rich on every

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:

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 zryip theSlug zryip.thes...@gmail.com: 2010/2/25 Yves COPPE yvesco...@skynet.be: Le 25-févr.-10 à 22:37, zryip theSlug a écrit : Okay, okay. on mouseUp  local tTheCal, tTheMonth, tTheFrenchMonth, tTheDay, tTheFrenchDay  put

Re: an annual calendar somewhere?

2010-02-25 Thread J. Landman Gay
zryip theSlug wrote: Maybe you are in 10.4? It does seem to be OS-related. On my Snow Leopard machine, ncal is supported. On my plain Leopard Mac, it is not. But even on Snow Leopard I don't see French, the calendar is returned in English. -- Jacqueline Landman Gay |

changing stack ID

2010-02-25 Thread DunbarX
Just a question. What is the rationale for changing the stack id whenever a new object is created in it? I get, and am grateful for, the altID, but what purpose was this behavior intended to serve? I got very used to rock solid ID's with you know what. Is there a benefit? Craig Newman

Re: an annual calendar somewhere?

2010-02-25 Thread zryip theSlug
2010/2/25 J. Landman Gay jac...@hyperactivesw.com: zryip theSlug wrote: Maybe you are in 10.4? It does seem to be OS-related. On my Snow Leopard machine, ncal is supported. On my plain Leopard Mac, it is not. But even on Snow Leopard I don't see French, the calendar is returned in

Re: an annual calendar somewhere?

2010-02-25 Thread Brian Yennie
According to the ncal docs, the country code has nothing to do with language, just Gregorian dates: -s country_code Assume the switch from Julian to Gregorian Calendar at the date associated with the country_code. If not specified, ncal tries to guess the

Re: changing stack ID

2010-02-25 Thread Richard Gaskin
DunbarX wrote: What is the rationale for changing the stack id whenever a new object is created in it? I get, and am grateful for, the altID, but what purpose was this behavior intended to serve? IIRC, the stack ID is merely the placeholder for the next available ID for any object to be

Re: On-Rev and setting cookies

2010-02-25 Thread Jeff Massung
Ya, figured it out thanks to a comment in the script. The cookie (and other headers) need to be written before any other data is written to the page. I so much prefer 8-bit micro-controllers to the web, but this is fun, too I suppose. ;-) Jeff M. On Thu, Feb 25, 2010 at 10:47 AM, stephen

Re: Conference-DVDs arrived

2010-02-25 Thread Kay C Lan
On Fri, Feb 26, 2010 at 3:47 AM, Richmond Mathewson richmondmathew...@gmail.com wrote: I learnt something extremely useful when I was at Carbondale from my MA supervisor: NEVER, NEVER, under any circumstances let your personal problems interfere with your professional obligations, AND, NEVER

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Tereza Snyder
On Feb 25, 2010, at 4:12 PM, Kevin Miller wrote: ... If you have not received your DVD you will have received a letter from us today offering you an estimated delivery time and year's free license extension. If you have not received the DVDs nor a letter, your DVD shipped some time ago and as

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Tereza Snyder
If this applies to you feel free to contact me directly, off list. oops. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Conference-DVDs arrived

2010-02-25 Thread Jeffrey Massung
On Feb 25, 2010, at 6:34 PM, Kay C Lan wrote: On Fri, Feb 26, 2010 at 3:47 AM, Richmond Mathewson richmondmathew...@gmail.com wrote: I learnt something extremely useful when I was at Carbondale from my MA supervisor: NEVER, NEVER, under any circumstances let your personal problems

Re: changing stack ID

2010-02-25 Thread Mark Wieder
Craig- Following up on Richard's response, I have to ask... why on earth are you looking at stack ids? -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

Test, please ignore

2010-02-25 Thread Paul D. DeRocco
___ 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: an annual calendar somewhere?

2010-02-25 Thread Robert Cole
I created a small stack to show how I use a monthly calendar (using the shell command) and the mouseText function to pick a date. I just uploaded Calendar Picker to RevOnLine where it is now available for download. Please feel free to use this stack and refine the visual appearance. It can be

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Alejandro Tejada
Kevin Miller wrote: Bill was sick for a long time before he died This means that Bill was already feeling sick, when he participated in this mail list, last december. Nothing in the messages that he wrote, could have suggested his health problems. ___

Re: Test, please ignore

2010-02-25 Thread Kay C Lan
Ignored. On Fri, Feb 26, 2010 at 11:09 AM, Paul D. DeRocco pdero...@ix.netcom.com wrote: ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Default font size

2010-02-25 Thread Paul D. DeRocco
I have an app that I've turned into a Windows standalone. It's been under development and revision for some time, but all of a sudden something changed, and the default font size used for things like the menus changed. When I'm working on the app inside Revolution, the menu text is the correct

relaunch anomaly

2010-02-25 Thread Paul D. DeRocco
The docs say that not passing the relaunch event, and not returning anything from the event, causes the new instance to terminate and the old instance to become the foreground window. When I do this under WinXP, everything works as advertised, including passing the command line parameter to the

Re: Default font size

2010-02-25 Thread Joe Lewis Wilkins
I'm only running XP, so not sure about yours, but there is a Control Panel setting that might reduce your font size. It's under: DisplayAppearanceFont Size HTH, Joe Lewis Wilkins On Feb 25, 2010, at 9:06 PM, Paul D. DeRocco wrote: I have an app that I've turned into a Windows standalone.

RE: Default font size

2010-02-25 Thread Paul D. DeRocco
From: Joe Lewis Wilkins I'm only running XP, so not sure about yours, but there is a Control Panel setting that might reduce your font size. It's under: DisplayAppearanceFont Size Well, yes there is, but it affects all apps. The point is that the Revolution standalone app now uses a smaller

Re: Default font size

2010-02-25 Thread Joe Lewis Wilkins
What I was suggesting is maybe you need to set that to Use Larger Font, if it isn't already that. Joe Lewis Wilkins On Feb 25, 2010, at 9:25 PM, Paul D. DeRocco wrote: From: Joe Lewis Wilkins I'm only running XP, so not sure about yours, but there is a Control Panel setting that might

Re: RunRevLive.10: 72 hours left to save

2010-02-25 Thread Richmond Mathewson
On 26/02/2010 00:12, Kevin Miller wrote: Richmond, I'm certainly not using those events as an excuse. I'm simply stating a fact which is true, for those of you that are interested. You can accept that or not. I have apologized for the situation with respect to the DVDs, it is inexcusable. We

Re: Conference-DVDs arrived

2010-02-25 Thread Richmond Mathewson
On 26/02/2010 02:34, Kay C Lan wrote: On Fri, Feb 26, 2010 at 3:47 AM, Richmond Mathewson richmondmathew...@gmail.com wrote: I learnt something extremely useful when I was at Carbondale from my MA supervisor: NEVER, NEVER, under any circumstances let your personal problems interfere with

Re: an annual calendar somewhere?

2010-02-25 Thread Yves COPPE
Le 25-févr.-10 à 23:05, zryip theSlug a écrit : put shell(ncal -s FR 2010) into tTheCal error : /bin/sh: line 1: ncal: command not found Greetings. Yves COPPE yvesco...@skynet.be Maybe you are in 10.4? Re, no, 10.5.7 Greetings. Yves COPPE yvesco...@skynet.be