How fix the bug 2126 ?

2004-12-23 Thread Ludovic Thébault
Hello, the bug of disappearing menus in rev 2.5 seem to be fixed, as i saw it in bugzilla. But how fix it on my rev app ? I've the last release. Thanks. ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/li

Re: OSX Menu Mystery

2005-03-09 Thread Ludovic Thébault
On Wed, 09 Mar 2005 15:00:16 -0800, Richard Gaskin wrote: > It may seem odd at first, but having spent many hours in meetings > with the SuperCard team many years ago when they were still planning > a Windows version, I must say that Scott Raney's solution -- once > grokked -- is a wonder of sim

Text font and platform

2001-12-05 Thread Ludovic Thébault
It is possible to encapsulate a font in a stack ? Because between mac Os 9, mac oS X and Windows (and Unixs), it's very difficult to found the same font on every system ! Thanks ! ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com

How transform a spreadsheet in an array ?

2002-01-04 Thread Ludovic Thébault
I've a big list like this : Namename1 name2 name3 Data1 1 0 10 Data2 10 1 0 Data3 0 1 10 how transform it in one array ? Thank ! -- Ludovic THEBAULT (Sorry for my pr english :-) __

Re: How transform a spreadsheet in an array ?

2002-01-05 Thread Ludovic Thébault
[EMAIL PROTECTED] wrote: >put tarray["Name"] --return 1,0,10 >put tarray["Data1"] --return 10,1,0 > >put keys(tarray) returns Name,Data1,Data2,Data3 I've found this, but i want something like this : put tarray["Name3","Data3"] -- return 10 And if i combine tarray just after split, the result is

Re: replacetext

2002-01-18 Thread Ludovic Thébault
Mike McManus wrote: >replaceText((line n of textToParse),"red","blue") > >always generate the error: Expression: missing ')' before factor. The >error comes up with or without the internal parans, and if I use a >variable instead of a chunk. I even get it when I use a simple quoted >string. T

Re: Font menu

2002-01-21 Thread Ludovic Thébault
Richard D. Miller wrote: >Do we really have to writing the coding to include a Font menu in our >program? Anyone done that yet? Sure would appreciate the best coding for >that... just : put the fontnames into theMenu ___ use-revolution mailing list

[Bugs?] Parenthesis, MacOS X and option menu

2002-01-22 Thread Ludovic Thébault
On Windows ME i've created a stack with an option Menu which contains these items : Easy (CP) Moderate (CE) Difficult (CM) All items are enabled, the menu work fine. On MacOS X, all items are disabled. If i delete parenthesis, items are enabled. on a 68k standalone all items are enabled on a P

Re: Rev/Windows performance

2002-01-26 Thread Ludovic Thébault
Richard D. Miller wrote: > but I'd like to hear what others are experiencing. A stack which manipulate lot of text seem to be more reactive on a Pentium celeron 666 MHz with Windows Me than a iMac 600 MHZ with MacOS X (glups!). ___ use-revolution mailin

Re: Rev/Windows performance

2002-01-26 Thread Ludovic Thébault
Richard D. Miller wrote: >Hi Ludovic: > >Does reactive mean faster? Yes. ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution

Screenrect and geometry manager

2002-03-01 Thread Ludovic Thébault
Hello, I created a stack for childs. I want that the window occupies all the screen. To work with all resolution, i use the geometry manager. If i change the size of the stack, with the stack properties, its works, but only for the current card. In the openstack script i put : set the rect of

Re: Screenrect and geometry manager and preOpenStack

2002-03-05 Thread Ludovic Thébault
[EMAIL PROTECTED] wrote: > > << set the rect of stack "theStack" to the screenrect >> > > Make sure you are saving the stack or it will go back to it's previous state. > Actually, the "resizing" works in the environment of Revolution but not in the standalone. Just create a simple stack, wit

How import icon of a file in a stack ?

2002-04-08 Thread Ludovic Thébault
If i use the getresource function, i've only text data and i don't know how to transform it in an image; If i use the Application Overview to place ICON resource or icl8 resource in the stack, nothing appear in the "image chooser" of the stack. btw, i want to import icon by script. The Geticon

Convert PICT object into graphic object ?

2002-04-12 Thread Ludovic Thébault
Hello, I've a PICT image (with vector not bitmap) with many "objects" (like polygon..). I want to transform each object in a Rev graphic, to change their attributes with a script. It is possible, or i need to redraw all ? -- Ludovic THEBAULT (Sorry for my pr english :-) ___

Re: arrowkey

2002-04-20 Thread Ludovic Thébault
Ivers, Doug E wrote: >Why isn't the arrowKey message implemented on Macs? Will it be in the future? As a >fall-back solution, I tried the keyDown message, but it isn't sent when I hit the >arrow keys, at least on my PowerBook G3 running OSX. I've the same problem last hour ! but i found the s

Re: arrowkey

2002-05-04 Thread Ludovic Thébault
Jeanne A. E. DeVoto wrote: >It ought to work. (Works here.) Is anyone else having this problem? I retry with the last build of Rev, i've this problem. MacOS X 10.1.4 (french keyboard), Rev 1.1.1r2 and iMac 600. -- Ludovic THEBAULT (Sorry for my pr english :-) ___

Display an image, bun without import it ?

2002-05-04 Thread Ludovic Thébault
In the Transcript Dictionary we could read this : Use the import command to place a sound, movie, or image in a stack, instead of creating a referenced control that uses an external file. I want create a referenced control that uses an external file. But how ? Thanks -- Ludovic THEBAULT (Sor

Re: Kiosk mode?

2002-05-14 Thread Ludovic Thébault
Nils Zettervall wrote: >Is it possible to have a standalone app with no caption, borders or >menubar? >I also want this standalone app to be fullscreen and always on top... Yes : set the rect of this stack to the screenrect but you need to adjust the position of objects with the geometry manager

Re: Manipulating large qtys of text

2002-05-15 Thread Ludovic Thébault
Barry Levine wrote: >Is there an external that would speed this up or, perhaps, is there a >more efficient method for thrashing through the container? try : set the itemDelimiter to tab set the lockScreen to true set the lockMessages to true put field myField into var put 0 into tNum repeat for

AppleScript, iTunes and Rev

2002-05-19 Thread Ludovic Thébault
hello I want to make an iconized window in the dock which display the current track of iTunes but if i am a newbie with Rev, i am a baby with AppleScript :-) I just need to get the current track (artist + song name) with AppleScript and put it in a fld in rev. (With iconized window and the lens

Re: Redraw iconized windows (was: AppleScript, iTunes and Rev)

2002-05-20 Thread Ludovic Thébault
Sarah wrote: >This has only been tested on OS X but I assume the OS 9 version of >iTunes has the same AppleScript dictionary. Cool ! many thanks, it's works, but another problem :  The window does not change when it is iconized How to redraw the content window without maximize it ? ___

[standalone] Why my image disappear ?

2002-06-08 Thread Ludovic Thébault
Hello, I've made a little stack with an beautifull background image, grouped with some buttons. I created standalones for MacOS PPC, OS X and Win. All works fine. but when i created an hybrid CD with these standalones, only the win standalone was perfect. The beautifull background as disappear

Re: [standalone] Why my image disappear ?

2002-06-09 Thread Ludovic Thébault
Klaus Major wrote: >sounds like you are using a referenced image. > >So the mac version of your app cannot find the path to that image and so >it does not appear :-( No, i've imported this image, and the bug appear only when the standalone are on a CD.

Re: [standalone] Why my image disappear ?

2002-06-09 Thread Ludovic Thébault
malte brill wrote: >I used PNG files (saved for the web in Photoshop) instead of using JPGs >and these work fine from CD on Mac OS. Eventhough they take up more memory >I´m on the save side now. Yes, it's work with png file. Thanks ! ___ use-revolution

Re: askList.rev

2002-06-13 Thread Ludovic Thébault
Yves Coppé wrote: >When I first launch Revolution then ask "File -> Open", the stack >appears grayed, so I cannot open it (what's a pity because I cannot >insert it as substack in my project !) It's happen to me when i copy windows stacks from a CD on my iMac. The solution is to launch rev, dou

Get active user folder on macOS X ?

2002-09-19 Thread Ludovic Thébault
Hello, Is there a command to get the active user folder on macOS X (the Home folder) ? Thank. -- Ludovic THEBAULT (Sorry for my pr english :-) ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revoluti

How to reduce a window on MacOS X ?

2002-09-22 Thread Ludovic Thébault
hello, the "iconic" function doesn't works (the stack is without decoration). I want to put a window in the dock by script. Thanks. -- Ludovic THEBAULT (Sorry for my pr english :-) ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.ru

UTF-8 and Revolution

2002-10-13 Thread Ludovic Thébault
It is possible to decoding the charset UTF-8 with Revolution ? (on MacOS X) Or it is for (the/a) next release ? Thanks -- Ludovic THEBAULT (Sorry for my pr english :-) ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mail

Re: Standalone for MacOS X and rev. 2.0

2002-12-30 Thread Ludovic Thébault
Robert Presender wrote: >Hi, >Using OS 10.2.3 > >Is there a way to make the Data folder(and all its components) >invisible and only have the app as a result of making a standalone for >Mac and Windows? Using the procedure of Tip 1 of RR site. A game for MacOS X, which seem to be created with Me

Re: Rev 1.1.1 and Mac OS X 10.2.3 FR

2003-01-15 Thread Ludovic Thébault
yves COPPE wrote: >Hello Ludovic On peut se dire bonjour ;-) >When you type in the msg box : answer the filename of this stack > >do you get a ".../user/..." filename Yes ! And in the finder browser i've "Utilisateurs" ___ use-revolution mailing li

Re: Rev 1.1.1 and Mac OS X 10.2.3 FR

2003-01-15 Thread Ludovic Thébault
Yves COPPE wrote: >download the altThumbViewer from > >http://www.altuit.com/webs/altuit2/RunRev/Downloads.htm > >It worked for me with Mac OS X 10.1.x FR >It doesn't work anymore with OS X 10.2.3 FR > >Can anyone answer me ??? Work with me. ___ use-rev

Re: [OT] More French questions

2003-02-07 Thread Ludovic Thébault
sims wrote: > >I need to know from someone who has a French System > >1. Do the month names display correctly in French? No. Month names are in english >2. After you click on a day in the calendar does the month display >in French in the first field. Yes. __

Re: [OT] More French questions

2003-02-07 Thread Ludovic Thébault
sims wrote: >>>2. After you click on a day in the calendar does the month display >>>in French in the first field. >> >>Yes. > >Well! That is most encouraging, thank you Ludovic! For me the first field is the field inside the calendar. Two others field with the month name are in english.

Filter and regex

2004-08-20 Thread Ludovic Thébault
Hello, I want to filter a list by date. For example i want all lines which contains a date between 01/05/* to 07/05/* I try this : filter myList with "(01|07)/05/*" filter myList with "((01)|(07))/05/*" filter myList with "[01|07]/05/*" but it doesn't seem to work. Any idea ? thanks Ludovic

Re: Filter and regex

2004-08-20 Thread Ludovic Thébault
On Fri, 20 Aug 2004 09:58:21 -0700, Mark Wieder wrote: > Well, if that's what you really want, then this does the trick: > > 0[1-7]/05/* Thanks, but it's more difficult. I'm on french system, also the date format is DD/MM/YY. I want to found for example all datas of the first week of a month, or

RE: Filter and regex

2004-08-20 Thread Ludovic Thébault
On Fri, 20 Aug 2004 19:54:37 +0200, MisterX wrote: > You'll have to find the right syntax that works with RR >i feel better when I dont mess with grep's nasty syntax Thanks, but these is not yet the right script ! ( i doesn't want the real week -- Monday to sunday) but only the day 1 to day

Rev equivalent to the php imageColorset ?

2004-08-25 Thread Ludovic Thébault
Hello, I want to change the color of "sectors" of an png picture. Each sector of the picture have an unique color. With php, and the imageColorSet function, i can replace one color by an other in this picture, and colorize each "sector" as i want. How do this with Rev (2.1) ? I think i need to

Why 10 hours for a newbie and 30 days for a "programmer" ?

2004-08-31 Thread Ludovic Thébault
Hello, Why the Dreamcard trial is limited to ten hours ? A newbie need time to discover a language, to discover programming, or simply to discover a new program (especially a "rich" program like Rev). Ludovic ___ use-revolution mailing list [EMAIL PRO

Re: Why 10 hours for a newbie and 30 days for a "programmer" ?

2004-08-31 Thread Ludovic Thébault
On Wed, 01 Sep 2004 01:06:02 -0500, Ken Ray wrote: > Download Dreamcard and take as long as you want to try it out, up to a limit > of 10 hours of actual usage - click here > > Note that this is "actual usage" vs. 30 days where you may or may not use it > at all within that time. Still it is o

[FUN] Rev 2.5 and MacOS X

2004-09-05 Thread Ludovic Thébault
Hello, With Rev/DC 2.5, show the msg box, put it on the top-middle of the stack, Close the stack with the widget btn (to show the alert window for saving the stack) and look. Fun and helpful Ludovic ___ use-revolution mailing list [EMAIL PROTECTED]

DreamCard : Protected Stacks and Custom properties

2004-09-07 Thread Ludovic Thébault
hello, With Dreamcard we cannot make standalone. We need to share the stack as .rev file, no ? So, if we protect the stack with a password, it is possible to modify custom properties to save prefs in the stack ? Like we can with a standalone and a "splash" stack ? Thanks. Ludovic

ImageData, colors and screen

2004-09-18 Thread Ludovic Thébault
Hello, i use imagedata to replace one color by an other in a picture (which is inclued in the stack). for example : get the imagedata of mypicture replace (numtochar(0)&numtochar(200)&numtochar(248)&numtochar(248)) with \ (numtochar(0)&numtochar(200)&numtochar(200)&numtochar(200)) in

Re: mp3/wma in Rev?

2004-09-19 Thread Ludovic Thébault
On Sat, 18 Sep 2004 19:30:12 -0700, untameYourself wrote: > Hi all, > > I was wondering if there is any way to play mp3 or wma files from within Rev > (ideally without instantiating an external player.) With the player (quicktime) there is no problem for mp3/ogg*/aac and all formats supported

Re: Date in Rev 2.5

2004-09-21 Thread Ludovic Thébault
On Tue, 21 Sep 2004 19:02:40 +0200, Yves COPPE wrote: > Hi klaus, > > I think I've found a serious subject of discussion... I've the same bug. Perhaps this bug is related to an other : http://lists.runrev.com/pipermail/use-revolution/2004-March/034662.html Ludovic _

Re: Go last and substack

2004-09-21 Thread Ludovic Thébault
On Tue, 21 Sep 2004 21:39:06 +0200, Klaus Major wrote: > Need more info about what you are doing here... > What and where is the script? Oups, i mean "back" and i wrote "Last" :-/ But my script use "go back" In the mainstack i show pictures. If the user click on a picture, a substack is opened

Re: Rev doesn't want create standalone !

2004-09-27 Thread Ludovic Thébault
On Mon, 27 Sep 2004 12:24:12 +0200, Malte Brill wrote: > What did you change in your stack? > More scripts, one new substack But finally, after several tests in the standalone builder, i delimit the "bug" : - I "reload" icons for app and documents i've made, and also the generic icon of Rev (f

Type in upper case

2004-09-29 Thread Ludovic Thébault
Hello, I want the user type in upper case. I've made a script with the keyup handler to convert lower letter in upper letter, but the conversion is visible. How make the conversion in the keydown handler ? thanks Ludovic ___ use-revolution mailing

Re: Type in upper case

2004-09-30 Thread Ludovic Thébault
On Thu, 30 Sep 2004 09:32:27 +0200, Éric Chatonet wrote: > It's a pity but toUpper rev function is unaware of the existence of > latin vowels :-) > You are french. So you need to uppercase them Merci ! Thanks ! Ludovic ___ use-revolution mailing list

Rev 2.6 and Defaultfolder

2005-06-06 Thread Ludovic Thébault
Hello, Someone use Defaultfolder ? Rev 2.6 crash with it when you display an "Open dialog" (on tiger) I exclude Rev from Defaultfolder and it works. Because my english is too bad, someone can put this bug on bugzilla ? Thx Ludovic ___ use-revolution

Re: Revolution 2.0 Beta Now Available - And Special Offer

2003-04-04 Thread Ludovic Thébault
Sylvain Bouju wrote: >Same for me, after trying twice, once with the Mac OS 9 version, >the other with the Windows version. For me too. And error with the download engine. ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman

Eliminate doubles in a long list field

2003-06-27 Thread Ludovic Thébault
I've a long list field with double entry I want to eliminate double. I use this script : repeat for each line l in myLongList if l is not in myLongListWithoutDouble then put l&cr after myLongListWithoutDouble end if end repeat But it's long. There is an another solution ? Thanks. _

Telnet and eMail

2003-07-24 Thread Ludovic Thébault
Hello, for fun and for learn, i want to wrote a little app to connect to my pop server by telnet, to delete spam messages. I'm not able to get messages from the host : on mouseup open socket to pop.myhost:110 read from socket pop.myhost:110 with message "itswork" -- ok, it's work write

Rev. 2.1 andd licence

2003-08-05 Thread Ludovic Thébault
Hello, I want to take an "Express" licence of rev (with the limited time offer). If Rev 2.1 is not released before 31 august, the update in rev 2.1 would be it possible ? Thanks. ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.co

Re: button resize

2003-08-16 Thread Ludovic Thébault
On Fri, 15 Aug 2003 12:33:16 -0700, Andrew wrote: > The main problem that I'm having with Revolution is getting an > image's rect to be the right size. Say I create a cartoon of a man > in photoshop and I paste him into Revolution. Then my little man > becomes an "image" in Revolution language

Metal and drag

2003-08-17 Thread Ludovic Thébault
Hello, With Rev 2.1 we can metalize MacOS X stacks, but to respect the guidlines, it is "necessary" to be able to move the window by its metal background and not only by the title bar. How do this ? A 'grab me' in the card or stack script doesn't work. With this script it doen't work very w

Re: Deleting lines within a 'repeat for each' loop

2003-08-19 Thread Ludovic Thébault
On Tue, 19 Aug 2003 18:00:07 +1000, Martin Steer wrote: Try, (if you are sure that you don't need any empty line) : on mouseUp > > put ".ds_store" & return & "Help File 1.xml" & return & "Help File > 3.xml" into fileList > > put 1 into i > > breakpoint > repeat for each line currLine

Re: How to purge a stack from memory by script?

2003-08-22 Thread Ludovic Thébault
On Sat, 23 Aug 2003 00:43:58 +0200, François Cuneo wrote: > Hello! > I'm completely unable to works with saved and closed stack with my code. > When I close the stack and I save it, if I load the stack again or change > her name, I have a message that says that I'm trying to load a stack already >

Re: Multi column scrolling with checkbox

2003-08-23 Thread Ludovic Thébault
On Sat, 23 Aug 2003 02:27:22 -0400, [EMAIL PROTECTED] wrote: > Can anyone tell me if there's a way to create a 2 column text field, > where the user can have editable text in the left column, and in the > right column have a checkbox? (So that the checkboxes all line up > with the text and scro

Re: repeat for each....

2003-08-25 Thread Ludovic Thébault
On Mon, 25 Aug 2003 13:45:28 +0100, Mark Smith wrote: > I haven't yet been able to make the 'repeat for each...' structure > work at all, not even once, in any circumstance, in a year of trying > it from time to time. I can find nothing in the electronic docs to > help me. I am mystified. rep

Old versions and licence

2003-08-26 Thread Ludovic Thébault
Hello, I've just purchased Rev. 2.1. After the release of a new version, can i download rev 2.1 if i need to reinstall it, or i must stock it ? Thanks. ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-re

Re: The Manhole - not free

2003-08-26 Thread Ludovic Thébault
On Tue, 26 Aug 2003 10:25:43 -0600, Barry Levine wrote: > Oops! Didn't go far enough through that link I gave earlier. The site > is now charging a subscription. Sorry. > try http://www.oldware.net/Dl.php?Lien=TWFuaG9sZS56aXA= ___ use-revolution mailing

Re: The Manhole - not free

2003-08-26 Thread Ludovic Thébault
On Tue, 26 Aug 2003 20:53:23 +0200, Ludovic Thébault wrote: > On Tue, 26 Aug 2003 10:25:43 -0600, Barry Levine wrote: >> Oops! Didn't go far enough through that link I gave earlier. The site >> is now charging a subscription. Sorry. >> > try http://www.oldware.ne

Re: play an mp3?

2003-09-06 Thread Ludovic Thébault
On Fri, 5 Sep 2003 22:54:03 +0200, Klaus Major wrote: > This will let you select a file and sets the filename to the absolute > path to your > mp3. Now the filename is set and "start player My Player" should work... Recently i want also to play mp3, but i've got problem : I've a bad noise when i

Re: check box and closefield

2003-09-14 Thread Ludovic Thébault
On Sun, 14 Sep 2003 22:16:16 -0600, Michael Young wrote: > What I cannot figure out how to do is create x buttons with x fields > and send the field information to the output text field in the button > order, i.e. try : on mouseUp if hilite of me is true then put fld ("Field "&last word o

Re: .mp4 Mac file type?

2003-10-07 Thread Ludovic Thébault
On Tue, 07 Oct 2003 11:33:28 -1000, Thomas Speitel wrote: > Hi Folks, > I am looking for the Macintosh file type for .mp4 files and .mp3 > files. For instance .mov files are Mac file type "MooV". I need the > info to filter file types using ANSWER FILE. Natively, mp4 are not readable on mac. A (

Re:

2003-10-17 Thread Ludovic Thébault
On Fri, 17 Oct 2003 19:00:50 +0200, Pierre wrote: > I'm trying to call a function which is defined in a card, from > another card of the same stack. I've been tryinng with the "get" and > "call" keyword but each time, revolution tells me "can't find > handler". > Does anyone can give me the righ

[FR] [EN] Mighty mouse and Scroll

2005-08-11 Thread Ludovic Thébault
Bonjour / hello Heureux possesseur d'une mighty mouse d'Apple, je constate que la molette n'a aucun effet sur le défilement d'un groupe d'objet possédant un ascenceur. Happy owner of the mighty mouse of Apple, i discover that the scroll doesn't work with the scroll ball on a group. Comment fa

Launch several files in a app ?

2005-10-08 Thread Ludovic Thébault
Hello, It's possible to open an app with a document (launch mytext.txt with myApp), but how launch an app with several documents in one time ? In fact, i want to import several pictures with iPhoto. Any Ideas ? Thanks. Ludovic ___ use-revolution mai

Re: Newbie question

2005-10-09 Thread Ludovic Thébault
On Sun, 9 Oct 2005 13:08:58 EDT, [EMAIL PROTECTED] wrote: > Is there something I can put in a script that'll stop it there and display > the script editing window at that point? To debug it ? Try "breakpoint" Ludovic ___ use-revolution mailing list use

load, url and repeat

2004-01-03 Thread Ludovic Thébault
Hello and happy new year ! How use the url command in a loop ? I want to get a lot of web page which an url like this : http://domain.com/page.php?ID=88 I just need to change the number of ID to get all pages. But it's seem that the loop is too fast to get the info, even with a "load" command.

[MacOS X] How identify a bundle with 'the folders' command ?

2006-12-20 Thread Ludovic Thébault
Hello, When i use the folders command, MacOS X bundle (.app, .key, .pages...) are listed as folder. How make the difference with real folders ? Thks. Ludovic http://www.botanic06.com ___ use-revolution mailing list use-revolution@lists.runrev.com Ple

Sort by the number of items of each

2006-12-21 Thread Ludovic Thébault
Hello, How sort a list by the number of items of each lines ? In the documentation, i saw this : "To create a custom sort order, use the each keyword to pass each line or item to a custom function. The value returned by the function is used as the sort key for that line or item." but i don't k

Re: [MacOS X] How identify a bundle with 'the folders' command ?

2006-12-25 Thread Ludovic Thébault
On Thu, 21 Dec 2006 14:54:05 -0600, J. Landman Gay wrote: > Ludovic Thébault wrote: >> Hello, >> >> When i use the folders command, MacOS X bundle (.app, .key, >> .pages...) are listed as folder. How make the difference with real >> folders ? > > This is

Display a text on a movie

2007-01-14 Thread Ludovic Thébault
Hello, It's not possible to put a field on a movie (rev 2.6.1 on macOS X). But perhaps there is a workaround ? Thanks. Ludovic http://www.botanic06.com ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

Re: Display a text on a movie

2007-01-14 Thread Ludovic Thébault
On Sun, 14 Jan 2007 09:45:23 -0800, Joe Lewis Wilkins wrote: > Hi Ludovic, > > Take your movie into iMovie. There you should be able to add text or > all sorts. Save the movie and then use it in Rev. Obviously, I've > never done this, but that's the beauty of Macs, everything usually > works se

HyperCard Flash effect

2007-01-28 Thread Ludovic Thébault
Hello With hypercard we could use the "Flash" command to have a "flashy effect" of the screen but this command doesn't exist on Rev. How simulate it ? Thanks Ludovic http://www.botanic06.com ___ use-revolution mailing list use-revolution@lists.runrev

Re: replaceText --> Regex question

2010-07-24 Thread Ludovic Thébault
Le 24 juil. 2010 à 19:39, Glen Bojsza a écrit : > > This should be easy for the Regex experts ... or maybe I can do it another > way? > > I have to change the beginning of a string. > > The original string is ALWAYS proceeded by _parm [...] > I have thousands of beginnings that need changing s

Applescript, do command and ten statement problem

2009-10-23 Thread Ludovic Thébault
Hello, With rev 2.9.1 I write an applescript to import pictures on an xpress file (i've thousand of pictures to put in it, in different pictures box). It's in a fld and with Rev i change some values to make a loop and import all pictures. The script works but after nine loops it fail with

Re: Applescript, do command and ten statement problem

2009-10-23 Thread Ludovic Thébault
Le 23 oct. 2009 à 18:10, Ludovic Thébault a écrit : Hello, With rev 2.9.1 I write an applescript to import pictures on an xpress file (i've thousand of pictures to put in it, in different pictures box). It's in a fld and with Rev i change some values to make a loop and

WindowID and Revlet ?

2009-11-14 Thread Ludovic Thébault
Hello, I need to do an import snapshot on a portion of my stack. But if it's work well in revMedia, on the web, the snapshot seem to be relative to the corner of the browser's window, not the stack's window. How do this ? Thx !___ use-revolution mail

Re: WindowID and Revlet ?

2009-11-14 Thread Ludovic Thébault
Le 14 nov. 2009 à 17:01, Richard Miller a écrit : > > Hope that does it for you. > Richard Miller > Thank ! It's perfect ! http://ludovic.thebault.free.fr/accueilonline.php?rub=geom___ use-revolution mailing list use-revolution@lists.runrev.com Please

put URL doesn't work on windows

2009-12-09 Thread Ludovic Thébault
Hello, With Revolution 2.91 To update my application, i created a script to see on a web site if there are updates available. It work fine under Macos X. But doesn't work under Windows XP. After test, a simple script like this : put URL "http://www.runrev.com"; put cr & the result after msg

Re: put URL doesn't work on windows

2009-12-09 Thread Ludovic Thébault
Le 9 déc. 09 à 12:08, Dave Cragg a écrit : "invalid host address" suggests it's failing on a hostNameToAddress call, which suggests DNS problems. But if other net applications are working, it sounds strange. I don't have 2.9.1 on XP here, but 3.0 works OK. Can you test the following, but t

Mouseenter for objects inside groups

2010-01-02 Thread Ludovic Thébault
Hello, I've a group, inside that grp, i've an other grp with scrollbar, and inside this group i've an other group (!) where objects need to be active with a mouseenter. It's not working (it's work if there is only the last group). Only script's object have the mouseenter handler. What i miss ?

Re: Applescrript from Rev

2010-01-08 Thread Ludovic Thébault
Le 9 janv. 2010 à 08:03, Yves COPPE a écrit : > > Hello list > > on mac OS X(leopard) > I'd like do send an applescript from rev to mail.app > it should be something like this : > open mail.app > open a new message > fill the fields "To", "Object" and "Message" with variables > > Can anyone he

Ask window and foreign language

2010-01-15 Thread Ludovic Thébault
Hello, It is possible to translate the "Cancel" button in the ask window ? Thanks. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists

Re: Ask window and foreign language

2010-01-16 Thread Ludovic Thébault
Le 16 janv. 10 à 09:16, Phil Davis a écrit : Try this: set the label of btn "Cancel" of stack "ask dialog" to "" ask "Use what value?" Phil So simply ! Thanks ! ___ use-revolution mailing list use-revolution@lists.runrev.com Please vis

Replace colors in imageData under linux doesn't work

2010-03-07 Thread Ludovic Thébault
Hello, I've made a map wih several sectors. Each sector have a specific color. For example sector one have this color : 245, 255, 255 sector two : 215,255,255 sector three : 194,255,255 ... The map appear in blue (each sector with a different blue) Under MacOS and Windows, a script replace the co

Re: Replace colors in imageData under linux doesn't work

2010-03-07 Thread Ludovic Thébault
Le 7 mars 2010 à 16:18, Jeffrey Massung a écrit : > > Is the Linux machine you are on PPC (read: big endian)? No, i've tried on a emulated linux (with Parallel on a iMac intel), on a pc and on a netbook intel___ use-revolution mailing list use-revolu

Customize headers in a datagrid

2010-03-10 Thread Ludovic Thébault
Hello. It's possible to add a little icon before the label of a column ? Thanks. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runr

Re: Customize headers in a datagrid

2010-03-17 Thread Ludovic Thébault
Le 11 mars 2010 à 16:24, Trevor DeVore a écrit : > > On Mar 11, 2010, at 1:35 AM, Ludovic Thébault wrote: > >> It's possible to add a little icon before the label of a column ? > > You are wandering into undocumented territory but now seems like a good time > to

Re: Customize headers in a datagrid

2010-03-17 Thread Ludovic Thébault
Le 17 mars 2010 à 21:42, Trevor DeVore a écrit : > The image appeared in the header. > > Can you try those steps and see if it works for you? It's works, thanks.___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to s

backdrop and alt-tab

2008-09-09 Thread Ludovic Thébault
Hello, I've a stack with decorations sets to empty, the menubar is invisible and a backdrop hide the desktop. If i select an other application with alt-tab (on windows) or cmd-tab, or space (on macos x) and, after, i come back to my rev app, i see only the backdrop. I need to set the backdr

Slider. i miss something ?

2008-12-01 Thread Ludovic Thébault
Hello, It's not possible to force a slider to scroll only at pageinc ? (scroll only by multiple of 5 for example) Thx. PS : Rev 2.9.1 ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe an

Re: RevBrowser Doesn't Like Backdrop?

2008-12-19 Thread Ludovic Thébault
Le 19 déc. 08 à 11:14, Scott Rossi a écrit : Can anyone confirm that RevBrowser doesn't render properly on OS X when a backdrop is present? (Rev 3.0) Yes. I opened a bug report (for rev. 2.9) about this annoying bug. ___ use-revolution mailing

Re: La communauté Revolution est en deuil

2009-01-17 Thread Ludovic Thébault
Le 17 janv. 09 à 21:19, Jérôme Rosat a écrit : Bonjour, Je viens d'apprendre que Éric Chatonet est décédé mercredi. Toutes mes pensées vont à son fils et sa famille. Jérôme Je ne peux que m'associer aux nombreux hommages qui lui sont rendus. Il nous manquera.__

Re: [OT] Google goes mad?..

2009-01-31 Thread Ludovic Thébault
Le 31 janv. 09 à 16:13, viktoras d. a écrit : a few minutes ago I searched for runtime revolution, birds, webcam hints, climate change in google and each of these searches now is marked "This site may harm your computer". So if I click the link it redirects to www.google.com/insterstitia

Format a disk on MacOS X

2009-02-06 Thread Ludovic Thébault
Hello, I want to make a button to format a disk with the shell (in FAT16 which is impossible to do with the GUI of MacoS X). Here my script : get shell("df") put line lineoffset("/Volumes/"&the label of btn "disk", it) of it into tdisk set the itemdel to " " put item 1 of tdisk int

Re: Format a disk on MacOS X

2009-02-06 Thread Ludovic Thébault
Le 6 févr. 09 à 12:22, Richmond Mathewson a écrit : Probably a naive question (well, they are my speciality), but when I looked at the Help for Dosk Utility it said that I can format a disk with MS-DOS (FAT) - is that 16 or 32; certainly a bit unclear from the documentation. Yup, the GUI of

Re: Format a disk on MacOS X

2009-02-06 Thread Ludovic Thébault
Le 6 févr. 09 à 16:03, Thierry a écrit : typo or error in your shell ? I found ! Before in my script i've set the defaultfolder to "/Volumes/"&thedisk, so it's normal that MacOS X doesn't want to eject the disk. ___ use-revolution mailing list u

  1   2   >