Re: OT--Apples Pages outputs CSS

2005-08-31 Thread Sivakatirswami
Aloha Tom: Pages output off CSS is very bad example -- implementation of CSS MS programs can be worse the *only* decent implementation of html export for layout programs (and I've seen out put from most all of them over the past 10 years) is Gluon's Web Express for Quark for anyone

Arrays in Revolution

2005-08-31 Thread Ben Fisher
I just wrote a cool library for working with arrays and matrices. Even if you don't use arrays too often, I encourage you to check it out. It has useful functions like Push, and its split and join functions don't mess with your strings the way the built-in functions do. I also wrote functions for

[ANN: plugin] SmartNotes - context-sensitive 'sticky' notes for Revolution

2005-08-31 Thread Terry Judd
Dear Revolutionaries, I'd like to announce a new plugin for the Rev IDE - SmartNotes! SmartNotes allows you to create and manage context-sensitive 'sticky' notes in Revoution. By context-sensitive I mean that you can associate individual notes with any stack (mainstack or substack) or Revoluti

Choppy video?

2005-08-31 Thread Alan Simon
I am in the process of writing an application that displays AVI video loops, each a second or two in duration. When the video plays back, it appears that some of the frames are being skipped, and I get a choppy appearance. The playback machine is a 3 GHz Pentium with 1GB of memory, so I

RE: modal stack "Prompt"

2005-08-31 Thread Lynch, Jonathan
It is consistent with the way the message path works, and I can envision situations where you would need this sort of behavior - such as if you had an app that created many stacks on the fly, and needed to do something when one of those stacks was opened. However, it can still cause problems. Be e

Re: CGI Question

2005-08-31 Thread J. Landman Gay
Gregory Lypny wrote: I'm simply trying to gather data from a form, redisplay it on a web page, and save it in a field in the stack. The problem is that writing to a field gives me an error. If I comment-out the sixth line from the end, that is, put webOutput into fld "Another List"

Re: modal stack "Prompt"

2005-08-31 Thread Peter T. Evensen
That seems to be what it was. That is rather esoteric behavior. I think the main stack was catching a preOpenCard or OpenCard, but the substack that did the modal command also had those. I added empty preOpenStack, openCard and preOpenCard handlers and that seems to have solved the problem.

Re: modal stack "Prompt"

2005-08-31 Thread Nicolas Cueto
Since no Rev-pro has stepped up to bat on this one, I'll hesitatingly venture a suggestion... Is there an "on openStack" or "on preOpenStack" handler in the "Prompt" substack? The reason I ask is that, when any stack first opens, I think an "openStack" message is generated. Thus, if the "Prompt"

Re: modal stack "Prompt"

2005-08-31 Thread Martin Baxter
Peter T. Evensen wrote: I have a substack that calls modal stack "Prompt" The problem is, stack "Prompt" appears over the main stack of the file, which was hidden, hiding the stack issuing the modal command. When I dismiss the Prompt dialog, the substack reappears. I have another place is t

Re: Darwin engine and AppleScript in CGI's?

2005-08-31 Thread Mark Smith
Ineresting. I did as you suggest, and it ran the 'echo' sample script just fine, but trying to run a stack cgi got an error Mark On 31 Aug 2005, at 19:08, Andre Garzia wrote: On Aug 31, 2005, at 2:31 PM, Mark Smith wrote: Ah...that explains a few things. Thanks for the info. Cheers,

Re: Darwin engine and AppleScript in CGI's?

2005-08-31 Thread Mark Smith
Great idea. I'll give that a try... Cheers, Mark On 31 Aug 2005, at 19:08, Andre Garzia wrote: On Aug 31, 2005, at 2:31 PM, Mark Smith wrote: Ah...that explains a few things. Thanks for the info. Cheers, Mark Mark, I am betting here okay, but try pulling the executable out of MacOS X

Re: CGI Question

2005-08-31 Thread Mark Smith
I think you can't use UI elements (such as fields) in CGI stacks. Try storing it in a custom property, or a file... Cheers, Mark On 31 Aug 2005, at 20:03, Gregory Lypny wrote: Hello everyone, I'm using a stack as a CGI script but I'm having a problem accessing a field. The stack is called

modal stack "Prompt"

2005-08-31 Thread Peter T. Evensen
I have a substack that calls modal stack "Prompt" The problem is, stack "Prompt" appears over the main stack of the file, which was hidden, hiding the stack issuing the modal command. When I dismiss the Prompt dialog, the substack reappears. I have another place is the same stack the does a

Default Colours in OS9, OSX and PC

2005-08-31 Thread Jim Carwardine
I'm working with inheritance for my application. I've developed it using the OS9 version of the IDE. I liked the default BG colour (a very light grey) so I let everything default to that colour. Now, when I look at the OSX and PC versions of my app, that BG colour isn't there and is white instea

CGI Question

2005-08-31 Thread Gregory Lypny
Hello everyone, I'm using a stack as a CGI script but I'm having a problem accessing a field. The stack is called from a text file with the following script: #!../revolution on startup start using stack "thisStack.rev" signup end startup The stack "thisStack" has the following stack hand

Re: how to get the textfont of the clickchunk in an unlocked field ?

2005-08-31 Thread Ken Ray
On 8/31/05 9:52 AM, "Langers Christian" <[EMAIL PROTECTED]> wrote: > Well I wanted to be able to get the font name to be displayed when > the user clicks (with MouseButtonNumber 1 !!!) a word/textchunk in a > textfield... > > I tried this handler in the textfield : > > on mouseUp > put the

Re: Darwin engine and AppleScript in CGI's?

2005-08-31 Thread Andre Garzia
On Aug 31, 2005, at 2:31 PM, Mark Smith wrote: Ah...that explains a few things. Thanks for the info. Cheers, Mark Mark, I am betting here okay, but try pulling the executable out of MacOS X bundle and using it as the CGI engine, use it with the "-ui" parameter. It works fine. I just p

Re: Darwin engine and AppleScript in CGI's?

2005-08-31 Thread Mark Smith
Ah...that explains a few things. Thanks for the info. Cheers, Mark On 31 Aug 2005, at 17:21, Mark Waddingham wrote: The Darwin engines are just like they say on the tin - compiled for Darwin :o) Darwin is the BSD-derived UNIX base for MacOS X and due to this none of the MacOS X specific APIs

RE: Scanning directly into Rev (TWAIN)

2005-08-31 Thread Scott Kane - Reptile Software Consultant
> Does anyone know if it is possible to scan an image directly > into a Rev > app via the TWAIN scanner interface? Just as most graphics > applications on > Windows have this capability, it would be a nice to have this > capability > in Rev. I can't remember it's name - but there is a twain

Scanning directly into Rev (TWAIN)

2005-08-31 Thread Roger . E . Eller
Good day wonderful List, Does anyone know if it is possible to scan an image directly into a Rev app via the TWAIN scanner interface? Just as most graphics applications on Windows have this capability, it would be a nice to have this capability in Rev. Kind Regards, Roger Eller <[EMAIL PROTECT

Re: Darwin engine and AppleScript in CGI's?

2005-08-31 Thread Mark Waddingham
The Darwin engines are just like they say on the tin - compiled for Darwin :o) Darwin is the BSD-derived UNIX base for MacOS X and due to this none of the MacOS X specific APIs are available to compile against (in this mode). Indeed, the engine itself is compiled using the internal POSIX porting l

Re: how to get the textfont of the clickchunk in an unlocked field ?

2005-08-31 Thread Eric Chatonet
Yeap Lynch :-) The same using selectionChanged message! Much better for the engine. Le 31 août 05 à 18:02, Lynch, Jonathan a écrit : SelectionChanged is also sent to an unlocked field, and can be used quite effectively in place of mousedown. Best Regards from Paris, Eric Chatonet.

Re: Darwin engine and AppleScript in CGI's?

2005-08-31 Thread Mark Smith
I wonder if this is some sort of security precaution. "Launch" doesn't seem to work, either. Mark On 31 Aug 2005, at 15:55, david bovill wrote: Testing out the Darwin engine - running as a CGI with OSX built in Apache server ("Personal Web Sharing") configured for CGI'S When I call an A

RE: how to get the textfont of the clickchunk in an unlocked field ?

2005-08-31 Thread Lynch, Jonathan
SelectionChanged is also sent to an unlocked field, and can be used quite effectively in place of mousedown. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Chatonet Sent: Wednesday, August 31, 2005 11:47 AM To: How to use Revolution Subject: Re: how

video size on PC - mciSendstring

2005-08-31 Thread sims
I am playing videos on a PC using the wonderful example app "mciMpegVideo.rev" made by Signe Marie Sanne (can be found on Rev online at sms). On OSX I use a player object and can resize the movie by locking the dimensions of the player. That way I only need one set of videos to refer to (set the

Re: how to get the textfont of the clickchunk in an unlocked field ?

2005-08-31 Thread Eric Chatonet
Hi Christian, When a field is not locked, the mouseDown message is only sent when you click with button 3 but the engine always keeps the value of the clickchunk . So, as the only messages that are always sent to a not locked field are mouseDoubleDown and mouseMove, you could try a combin

Darwin engine and AppleScript in CGI's?

2005-08-31 Thread david bovill
Testing out the Darwin engine - running as a CGI with OSX built in Apache server ("Personal Web Sharing") configured for CGI'S When I call an AppleScript which is embedded within a stack and which works fine when called from the stack I get "lternate language not foun" returned from

how to get the textfont of the clickchunk in an unlocked field ?

2005-08-31 Thread Langers Christian
Well I wanted to be able to get the font name to be displayed when the user clicks (with MouseButtonNumber 1 !!!) a word/textchunk in a textfield... I tried this handler in the textfield : on mouseUp put the effective textfont of the clickChunk end mouseUp but mouseUp/down meassages ar

re: mainStack scripts, now Windows??

2005-08-31 Thread Robert Brenstein
Hi all! I thank Richard, Eric and Robert for their concise expalnations and help. Now that I have followed that advice (a different stack with no script is now the mainStack) I'm happy as a clam. One more thing though; One of the reasons I made the major changes to my project was to try

Re: mainStack scripts, now Windows??

2005-08-31 Thread Eric Chatonet
Hi Lars, Rev is cross-platform and claims that you can build Windows apps from Mac OS (or the opposite): as for the "process", that's true. But I have to confess that I have never have been able to build a satisfying stack without working again on the destination platform. I am used to work o

re: mainStack scripts, now Windows??

2005-08-31 Thread xbury . cs
Lars Try to remove the traversal=ON from most menus and buttons - it just wrecks havoc with hillites... Also, test your apps on windows 2000 AND XP where the themes will change teh geometry of buttons, appearance of groups, and possibly more... Just my two cents... Please vote for all windows

re: mainStack scripts, now Windows??

2005-08-31 Thread Lars Brehmer
Hi all! I thank Richard, Eric and Robert for their concise expalnations and help. Now that I have followed that advice (a different stack with no script is now the mainStack) I'm happy as a clam. One more thing though; One of the reasons I made the major changes to my project was to tr

Really cool WindowShapes X-plat

2005-08-31 Thread Marielle Lange
Hi Todd, Coolest ones are by Scott Rossi. And the recent american flag. Something more "approachable", the teacher manual: (middle of the page) I have the photoshop file for that one, free to share if y

RE: OT-IT--Apples Pages outputs CSS

2005-08-31 Thread Marielle Lange
Hi Tom, If you want to explore CSS a bit more in topic, have a look at the stack "HTML exporter", in the education gallery: (right under tools and plugins, in the last third of the page) It exports the content of a stack into HTML (for the

Interesting article for open source code

2005-08-31 Thread xbury . cs
Hi everyone, This could help more than one person... http://www.theregister.co.uk/2005/08/31/koders_shareware_search_engine/ enjoy Xavier - Visit us at http://www.clearstream.com IMPORTANT MESSAG