Re: How do I decompress BZ2 files?

2010-05-22 Thread Christian Langers
Hi Bill, you might try shell()... http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man1/bzip2.1.html e.g. put bunzip2 -k tSource tDestination into tShellScript put/get shell(tShellScript) and escape space with \ in the path part... This might work, Christian

German French not liked by Valentina DB Rev ?

2010-05-13 Thread Christian Langers
Hi, I'm trying to feed my Valentina Db fields with text. When using English, no problem. But when using German or French, pfff.. The main problem are the Umlauts (ö,ä,ü,...) or french chars (é,è,à...). As I read in the docs, rev fields are storing text in UTF16. Valentina is storing text in

Re: MS Word document export

2010-01-30 Thread Christian Langers
Hi, I listened to Stephen and added my name and email into the stack's script (Textutil.rev) Greets, Christian On 30/01/10 02:23, Bruce Pokras wrote: Maybe I am doing something wrong (but it is so simple, how could I?), but I am not seeing any output. I import a file (e.g. a text file)

Re: Compact SQLite database

2009-12-30 Thread Christian Langers
Hi Stewart, this could answer your question : http://www.sqlite.org/lang_vacuum.html try somthing like this (if needed) : global gConID put VACUUM into tSQL get revdb_execute(gConID,tSQL) Hope this helps, Christian On 30/12/09 17:42, RevList wrote: Is there a way to compact a SQLite

Simple Chat Server on On-Rev ?

2009-10-24 Thread Christian Langers
Hello, for my project I wanted to implement the simple chat server-client stacks (or a similar solution using sockets), but I really have no idea how to start. I'm new to sockets... and I want to use my on-rev hosting service... Any help is appreciated :-) Christian Luxembourg

Re: File Types and Creator Codes

2009-09-24 Thread Christian Langers
Hi, if you have the Developer Tools installed on Mac Os X then you have two wonderfull little tools : GetFileInfo : look here : http://developer.apple.com/mac/library/DOCUMENTATION/Darwin/Reference/ManPages/man1/GetFileInfo.1.html#//apple_ref/doc/man/1/GetFileInfo and setFile : look here

Textutil

2009-09-17 Thread Christian Langers
never was aware of... I am now able to import these formats (it's not perfect... no images imported... but its the quick 'n dirty way) into runrev... So have fun and be creative ! ;-) Greets, Christian Langers Luxembourg ___ use-revolution

Re: another PHP-Revlet question

2009-08-29 Thread Christian Langers
Hi Yves, may it be : put http://www.mondomaine.com/myfunctionfile.php?var=urlencode(tVar) into tURL put URL(File:tURL) into myNewVar using $_GET[var] in PHP and echo the result ? Greets, Christian On 29/08/09 20:55, Yves COPPE wrote: Le 29-août-09 à 20:15, Pierre Sahores a écrit :

Rev 4 preBeta

2009-07-15 Thread Christian Langers
It seems that they released a preBeta version: from RevUp issue 74: We know you're all on the edge of your seats, waiting for Rev 4.0. We have just released a pre-Beta version to the Enterprise community list. Ok, I have a Enterprise licence... how do i get to the Enterprise community list ?

Re: Rev 4 preBeta

2009-07-15 Thread Christian Langers
Thanks Jan, it's best to email supp...@runrev.com to get this fixed. that's what I did minutes ago Christian On 15/07/09 15:38, Jan Schenkel wrote: Hi Christian, Enterprise customers with an active software assurance pack are automatically members of a separate mailing list, and you

Re: 4.0 Webinar Invite - Its Today!

2009-06-23 Thread Christian Langers
It started with birds singing in the background ! Christian On 23/06/09 19:48, Mark Schonewille wrote: I Won't be seeing it, because whatever I try I always end up at the FAQ page. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering

Re: Mac OS X Icon not being copied to Standalone

2009-05-06 Thread Christian Langers
On 6/05/09 18:46, Richmond Mathewson wrote: Yes, you have to relaunch the Finder: I do hope somebody other than me can understand 'close process' because when I typed 'close process Finder.app ' nothing happened. using the shell with : killAll Finder or in Rev using get shell(killAll

Re: La communauté Revolution est en deuil

2009-01-18 Thread Christian Langers
Mes sincères condoléances à la famille. ... quel choc... Christian On 18/01/09 8:55, Ludovic Thébault wrote: 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

Re: revCopyFile/revCopyFolder weirdness!

2008-09-15 Thread Christian Langers
Hi Dave, I never got this function to work on Mac, that's why I use my own way : function copyFileToDest pFrom, pTo if there is no folder pTo then create folder pTo -- Mac -- if platform() is MacOs then put (ditto -rsrc q(pFrom) q(pTo)) into tcomm get shell(tcomm) else

Re: Property Profiles - differences on Mac and Windows (language issues)

2008-08-19 Thread Christian Langers
the cREVGeneral[profileList] of stack (thatLine) to it end if end repeat put Done stackthatLinecr after fld result save stack (thatLine) end repeat end doChange Again, mille grazie to the community !!! ;-) Christian Le 18 août 08 à 15:24, Christian Langers a écrit : Hi

Property Profiles - differences on Mac and Windows (language issues)

2008-08-18 Thread Christian Langers
Hello, I just finished translating my app into 3 languages ; I developped on a Mac and I wanted to test my app on Windows. Surprise, surprise the objects lables/text in German (Umlauts mainly) or French (accents) are not respected (instead of Umlauts you have different symbols) on the

Re: Property Profiles - differences on Mac and Windows (language issues)

2008-08-18 Thread Christian Langers
/server.html for more info. On 18 aug 2008, at 14:09, Christian Langers wrote: Hello, I just finished translating my app into 3 languages ; I developped on a Mac and I wanted to test my app on Windows. Surprise, surprise the objects lables/text in German (Umlauts mainly) or French

Re: 3.0.0-dp-8 available

2008-08-01 Thread Christian Langers
Hello ! I'll too express my overall positive interface experience !!! But, I think one should know that on a Mac running Mac Os X 10.5.x working with databases had given me a little headache : - every time I tried to connect to a sqlite db, Rev returned an error ; even when I ran the

Re: revDataFromQuery and umlauts etc.

2008-05-20 Thread Christian Langers
Hi Ian, I think you're right... My solution is to use the MacToIso() function for inserting data into the db (from within Revolution) and applying the IsoToMac() function to the data you retrieved from the SQLite Db Christian Le 20 mai 08 à 10:42, Ian Wood a écrit : Does anyone

Re: revDataFromQuery and umlauts etc.

2008-05-20 Thread Christian Langers
MyAppTextEncodingToSQL pString switch platform() case MacOS return mactoiso(pString) break case Win32 return pString break end switch end RajTextEncodingToSQL Christian Le 20 mai 08 à 11:31, Ian Wood a écrit : On 20 May 2008, at 10:17, Christian Langers wrote: I

Re: Simple Database without SQL

2008-05-20 Thread Christian Langers
Hello Chris, I think yes, you have to use a external file if you're on a Win system... compiled apps can't be modified during runtime... Christian Le 20 mai 08 à 15:07, Chris Young a écrit : Perhaps this can't be done. Is there anyway to save the data within a compiled application? or

Re: access to Mac media browser?

2007-12-03 Thread Christian Langers
Hi Phil, look into the revOnline Browser, Category : Utilities ; I wrote some time ago such a stack which would do what you want ; it is named iPhoto_iTunes lib Palettes Modify it to your convenience... Christian Le 3 déc. 07 à 00:40, Phil Davis a écrit : Thanks Ian! I'll give it a

Re: Of Tiger Stripes and Blue Leopards

2007-11-14 Thread Christian Langers
Before reading my mails I already wrote this : Hi all, I don't know if you noticed, but I think there is a difference between Leo running on an Intel Mac and Leo running on a PPC (in relation to Revolution): - on Intel Mac : the REV IDE is light blue ; I think Ken noticed that it has to

SQLite questions

2007-08-27 Thread Christian Langers
Hi ! I have a few questions concerning SQLite... 1. Will the external be constantly updated (e.g. the current version in REV is 3.3.15 whereas the official version of sqlite is 3.4.2 -- I use the VACUUM command and there is a known bug with it which was introduced in version 3.3.14 ; on

Syntax coloring mode for SubEthaEdit

2007-08-08 Thread Christian Langers
: http://www.codingmonkeys.de/subethaedit/ modes.html/ Greets, Christian Langers Luxembourg ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http

Re: sqlite and update

2007-08-06 Thread Christian Langers
: http://www.sqlite.org/ lang_replace.htmlhttp://www.sqlite.org/ Hope this helps, Christian Langers ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences

Re: revBrowser : Problems with PDFs when Acrobat's Pdfviewer plugin is installed

2007-07-31 Thread Christian Langers
Hello Scott, Ian, If the Adobe Reader plug-in is not installed, Safari will display PDFs within a regular window, you mean a regular Safari window ? and yes, the right-click gives the option Open in Preview... but this option does not show up in revBrowser. I have Schubert|it

revBrowser : Problems with PDFs when Acrobat's Pdfviewer plugin is installed

2007-07-30 Thread Christian Langers
Hello everyone, Could anybody please confirm this : (perhaps this is a known issue, please forgive me then) - when calling a Pdf file from my HD (and probably from the internet too) and you've got Adobe's PdfViewer plugin installed, revBrowser will open an ask file window - I first

problems with standalone maker in 2.8.1

2007-05-19 Thread Christian Langers
Hi, with that new release I have very annoying problems : everytime I want to compile my project I get these warnings : -- a stack answer dialog in file xxx is already in memory... etc. then REV saves my project again with the answer dialog stack which I DO NOT have incorparated in my

Re: problems with standalone maker in 2.8.1

2007-05-19 Thread Christian Langers
Hi Mark, ok, I added my comments and addionnally this I forgot to mention : after the building process I do refresh the application browser and see that the revMacCursors stack is there as a main stack ; I remove it from memory and refresh the app browser again ; now it appears as a

Re: DotMac

2007-04-24 Thread Christian Langers
Hi... Some time ago i experimented with my iDisk... This seemed to work : post URL file:wallet.swdb to URL http:// user:[EMAIL PROTECTED]/user/Documents/sWallet/ wallet_tDate_tTime.swdb Christian Le 24 avr. 07 à 17:20, Richard Gaskin a écrit : Mark Schonewille wrote: Thanks for

Fwd: scaling and positioning proportionally an object at the same time

2007-04-19 Thread Christian Langers
, Christian Langers a écrit : Hello, I try since hours to do this : I have an image (photo) on a stack which scales to the right and down on resizing the stack (via Geometry Manager); I have a graphic (rectangle) placed at a precise location on the image (the user selects a portion

scaling and positioning proportionally an object at the same time

2007-04-18 Thread Christian Langers
Hello, I try since hours to do this : I have an image (photo) on a stack which scales to the right and down on resizing the stack (via Geometry Manager); I have a graphic (rectangle) placed at a precise location on the image (the user selects a portion of the image to hilite something on

Re: Amazing but true.....

2007-04-06 Thread Christian Langers
Hello Trevor, you got me interested : Once you understand how to reorder grouped controls in the engine I've found it to work flawlessly. There is a bit of a learning curve though. How and where can one learn about the engine ? Thanks, Christian from Luxembourg Le 5 avr. 07 à

REVO-lotion

2007-03-31 Thread Christian Langers
Does anybody on this list still need another REVO - lotion ? ;-) Christian ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Sequence of images to Quicktime Movie ?

2007-02-23 Thread Christian Langers
Hello, I'm working on an educative project where children will be shown a random sequence of images to which they will add some audio (their spoken story)... The question I have is if there is some way (within Rev) to assemble the images and the audio to a Quicktime movie ? What do you

Re: storing binary into a altSQLite DB

2006-10-16 Thread Christian Langers
Sorry to bother you again, but .. it does not do the job... same reactions --SQLite throws error message : syntax or unrecognized token It's perhaps a bug ? Christian Le 16 oct. 06 à 19:46, Shao Sean a écrit : Let's start with your code from the first example: put '*bURL

storing binary into a altSQLite DB

2006-10-15 Thread Christian Langers
Hello, I'm just learning how to use a DB ; Is there a way to store binary files into a DB with the altSQLite ? I read that SQLite 3 accepted such data (BLOB) but I do not manage to integrate it into the database. I did follow the tutorial for creating a new DB, a table and adding data.

Re: storing binary into a altSQLite DB

2006-10-15 Thread Christian Langers
Thanks for your reply ! Hmm, I tried everything, but I always get an syntax error from the database I tried this : answer file put '*bURL (binfile:it)' into tRowData -- CONSTRUCT SQL put INSERT INTO Fotos(FotoID,FotoData) VALUES(null, tRowData ) into tSQL -- EXECUTE

iPhoto_iTunes Lib Palettes

2006-05-05 Thread Christian Langers
Hi everybody, I just added a new ressource to the revOnline space... it allows you to use the iPhoto and iTunes Lib Palettes to be used in Revolution...uses Automator to perform this (seen recently on http:// www.macosxhints.com/) Categorie : Utilities Name : iPhoto_iTunes Lib Palettes.rev

Re: iPhoto_iTunes Lib Palettes

2006-05-05 Thread Christian Langers
add a Copy to Clipboard action Yep, and I primarily thought of drag an drop ... set the acceptDrop to true... (if one has a project which would use these palettes) But I'll try to add the action... Christian Le 5 mai 06 à 15:54, Ken Ray a écrit : On 5/5/06 8:33 AM, Christian Langers

Re: spit out on change

2006-03-06 Thread Christian Langers
Thanks Alex, I've tried it and it seems to work ! I'll do the transformations later when I have more time available... Thanks again... Christian (the only one on this list from Luxembourg ;-) ) Le 6 mars 06 à 12:54, Alex Tweedly a écrit : Christian Langers wrote: Hello all, But I want

spit out on change

2006-03-05 Thread Christian Langers
Hello all, I have a project where the standalone spits all important components (here images) out to the disk every time it starts up. Now I wanted to speed up the startup of my app. So I think that the important components will only be spitted out at the first run. The problem is that I

how to delete ponctuation in a textfield

2006-01-19 Thread Christian Langers
Does anybody know how to remove any ponctuation from text ? any regex filtering ? Thanks in advance, Christian Luxembourg ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: how to delete ponctuation in a textfield

2006-01-19 Thread Christian Langers
PROTECTED] On Behalf Of Christian Langers Sent: Thursday, January 19, 2006 2:27 PM To: use-revolution use Revolution Subject: how to delete ponctuation in a textfield Does anybody know how to remove any ponctuation from text ? any regex filtering ? Thanks in advance, Christian Luxembourg

Quicktime player issue

2006-01-16 Thread Christian Langers
Hello, I think on Windows with Rev 2.6.1 and the latest Quicktime (i think this occurs with other configurations too), the player component when hidden on a cd stops to play after about 2 secs... I set the filename of the player to a file and wanted it to play on openCard ; it always

Re: Quicktime player issue

2006-01-16 Thread Christian Langers
Ah, happy to read that's not a bug... but it costed it me nerves to find out !!! :-) Christian Le 16 janv. 06 à 21:04, Eric Chatonet a écrit : Hi Christian, Le 16 janv. 06 à 20:50, Christian Langers a écrit : Hello, I think on Windows with Rev 2.6.1 and the latest Quicktime (i

changing default buttonshapes

2006-01-15 Thread Christian Langers
Hello, I just wondered if it were possible to change the default shapes of buttons linked to a specific platform ? e.g. I wanted to use the Win radiobuttons on OS X is that possible ? and how ? Does anybody have an example ? Christian L. ___

Re: changing default buttonshapes

2006-01-15 Thread Christian Langers
Bonne fin de matinée Eric ;-) Do you think I should look at the code in Rev itself to see how it's done ? Christian Le 15 janv. 06 à 11:26, Eric Chatonet a écrit : Hi Christian, Menu View/Look and Feel/Windows Emulated :-) Le 15 janv. 06 à 11:23, Christian Langers a écrit : I just

Re: changing default buttonshapes

2006-01-15 Thread Christian Langers
Somewhere I read that you can customize the look of your controls (not only the look and feel but replacing the actual controls by others)... or am I wrong ? Christian Le 15 janv. 06 à 11:59, Eric Chatonet a écrit : Christian, Le 15 janv. 06 à 11:30, Christian Langers a écrit

display recordLoudness

2006-01-14 Thread Christian Langers
Hello all, I've made a testing stack to display the recording loudness ; it will be a part of my educational project where the children will have a visual feedback when they speak ; as I do not know the exact values for proper soundrecording I set the values I think the best... but if

Re: Full screen?

2006-01-07 Thread Christian Langers
Hi, perhaps this helps : set rect of this stack to the screenrect Christian Le 8 janv. 06 à 00:40, [EMAIL PROTECTED] a écrit : Hello everyone, I've been away for a while. I'm back working in Revolution, but I forgot a lot. I can't seem to figure out how to make a card Full Screen. I

speed up loading time of referenced imgs...

2006-01-06 Thread Christian Langers
Hello all, does anybody know how to speed up this process ? in my cd script i have these lines (among others)... (tags for Marielle ;-) ) code type=xtalk repeat with i=1 to 16 put line i of gTempVar into tempBiller[i] end repeat show grp wuart with visual dissolve very fast repeat

Re: [OT] .ds_store Messing Up ZIP

2006-01-04 Thread Christian Langers
Hello Revers, I just wanted to tell you, inspired by this topic, that I just uploaded a little plugin that will do the job... It's called Free us and it's in the Utilities-categorie of revOnline... It will erase those nasty .DS_Files and even, if you wish, zip this cleaned folder...

New plugin uploaded - OS X only

2006-01-04 Thread Christian Langers
Hello Revers, I just wanted to tell you (inspired by the topic of .DS_Store files) that I just uploaded a little plugin that will do the job... It's called Free us and it's in the Utilities-categorie of revOnline... It will erase those nasty .DS_Files and even, if you wish, zip this

Use of images

2006-01-02 Thread Christian Langers
Hello, I have to work with about 280 images making about 200mb. which method would have the best performance in Rev : - letting the images outsite the app and setting the filename of img to them - importing them in a stack and working with it as an invisible stack (referring to them by

Re: Use of images

2006-01-02 Thread Christian Langers
Hi all, thanks for your answers... would there be differences then when you have a substack with referenced images ? I work with the id numbers of these referenced images, setting the icon of a button of the mainstack to the id of them... Same memory problem then with this stack as

Re: Use of images

2006-01-02 Thread Christian Langers
Hmm, actually these images will not be edited ; these stacks will function as image libraries... Precisely, I do not want to let the user play around with the referenced images not because of copyright problems but loosing or modifiying them will alter the app... Christian Le 2

Re: Use of images

2006-01-02 Thread Christian Langers
Thanks Scott, I will Christian Le 2 janv. 06 à 13:30, Scott Kane a écrit : Christian, If Monks had Mac's is a good resource on how to do this. There is a short demo stack available that permits you to use the techniques used in that program (which is part of a large CD compilation).

Re: Problems with recording sound

2005-12-30 Thread Christian Langers
Hmm, nobody seems to have problems with it ? Christian Le 28 déc. 05 à 19:41, Christian Langers a écrit : Hello everybody, is it just me or does anybody else noticed this : (and this is new to me because before I had no problems with it...) I have 2 btns : one for recording sound

Re: Open an app in the centre of the screen

2005-12-30 Thread Christian Langers
on preOpenStack set the loc of this stack to the screenloc end preOpenStack christian Le 30 déc. 05 à 15:11, Jason (Polydiam) a écrit : How do you open up an application that is centred to the middle of the screen? Thanks ___ use-revolution

Problems with recording sound

2005-12-28 Thread Christian Langers
Hello everybody, is it just me or does anybody else noticed this : (and this is new to me because before I had no problems with it...) I have 2 btns : one for recording sound and the second for stopping recording ; Recording-Btn's Script : global tName on mouseUp if the uClicked

Re: Trouble Downloading Engine

2005-08-14 Thread Christian Langers
Hello Dan, I once had the same problem and I realized that it was because of being behind a firewall which filters cookies, banners, http infos I turned it off and it worked then... Christian Le 14 août 05 à 00:58, Dan Shafer a écrit : I'm trying to download the engines for OS 9

Re: Trouble Downloading Engine

2005-08-14 Thread Christian Langers
To be precise : it worked for downloading the win engine ; I tried to download the Mac OS 9 engines... Same message as you got : Problem downloading engine... Sorry, Christian Le 14 août 05 à 15:17, Christian Langers a écrit : Hello Dan, I once had the same problem and I realized

Re: need windows engine...

2005-07-02 Thread Christian Langers
Please do not consider the last message... I just had problems connecting to the site because of my firewall ; so now that I know this, I'll be aware of sites disliking firewalls ;-) Christian Le 1 juil. 05 à 17:14, Christian Langers a écrit : Hi everybody, it seems that you can't

need windows engine...

2005-07-01 Thread Christian Langers
Hi everybody, it seems that you can't download anything from runrev.com, so you can't download the engines neither :-) Could anybody send me the windows-engine of Revoluiton 2.6. ? (off-list) Thanks in advance, Christian iMacG4 , Powerbook G4, Mac Os X 10.4

Rev crashing with rawKeyUp/Down

2005-07-01 Thread Christian Langers
Hello, what could this be ? When using this handler in a field's script : on rawKeyUp set the cText of this stack to rtftext of me pass rawKeyUp end rawKeyUp then Revolution (i'm with 2.6) crashes after about 10 lines (just by holding down the enter key)... What am I doing wrong

Re: Rev crashing with rawKeyUp/Down

2005-07-01 Thread Christian Langers
structure to compare first). Good programming does not waste programmer energy neither CPU :-) Le 1 juil. 05 à 19:28, Christian Langers a écrit : on rawKeyUp set the cText of this stack to rtftext of me pass rawKeyUp end rawKeyUp Best Regards from Paris, Eric Chatonet

open files with my own created app

2005-06-30 Thread Christian Langers
Hello everybody, how do I do to have my app read it's own created data upon startup ? e.g. when double-clicking a text file, the text is loaded into the Textedit (on Mac)... I manage to link the created file to open my app, but not to read its content... So, if anybody could give me a

Re: Printing is hell

2005-06-16 Thread Christian Langers
hello Sarah, PDFCreator is effectively a virtual printer i.e. your Rev app is printing to it as if it was a real printer. If that works OK, then I would guess it is a printer problem Well, printing to the virtual Printer gives me satisfaction : the produced pdf-file, when printed out on

Printing is hell

2005-06-15 Thread christian . langers
Hi everyone, Is it just me or... I'm on a windows machine with Rev 2.6 , creating a stack which has the dimension to fill a A4-page, creating an image object or importing an img or creating a text field with a border, placing these anywhere on the stack (here first cd) and then telling Rev

printing cards with image(s) on it

2005-06-07 Thread Christian Langers
Hi list, I'm no image specialist, but what do I have do respect to get the max quality printout of images imported into a stack ? I only see that, when allowing the user to resize, rotate, set blendlevel the imported image or even letting the imported image at its initial state, when

Re: Page set Up

2005-06-06 Thread Christian Langers
Hello Yves, is answer printer not what you are looking for ? Cheers, Christian Le 6 juin 05 à 08:26, Yves COPPE a écrit : Hi, on Mac OS X, I'd like to make a Page Setup item in the file menu How can I ask the page setup printing dlog just to set the page setup but not for printing

How to find and replace

2005-06-06 Thread Christian Langers
Hello list... I think this has been asked many times, but i did not find any satisfying answer... I need to do the following : repeat with x=1 to the number of chars of the clicktext+5 put _ after char x of tChar end repeat replace the clicktext with tChar in fld 1 where i want

Re: How to find and replace

2005-06-06 Thread Christian Langers
tString end underscores Thanks to you all, Christian from (sleepy) yawn Luxembourg ;-) Le 7 juin 05 à 00:39, Dar Scott a écrit : On Jun 6, 2005, at 2:36 PM, Christian Langers wrote: I need to do the following : repeat with x=1 to the number of chars of the clicktext+5 put _ after char

what

2005-05-26 Thread Christian Langers
Hello, I'm a bit confused by the various win systems when I want to create a folder in the Program Files- Folder of Windows... What do I have to respect when I want to create my folder in that path independently of the win version ? Thanks for any help, Christian

Re: what

2005-05-26 Thread Christian Langers
Hi, Thanks for the infos... Indeed, I thought of constants... but I'll give Xavier's approach a try too ;-) Christian Le 26 mai 05 à 18:09, Klaus Major a écrit : Hi Christian, Hi Christian, Hello, I'm a bit confused by the various win systems when I want to create a folder in

create nested folders

2005-05-24 Thread Christian Langers
Hello, can anybody help me with this ? put Tutorial/Ladies/Bugs into test set itemdel to slash put the directory into oldDir put /Users/christ/Desktop/ into tLoc repeat with x=1 to the number of items of test set the directory to tLocitem (x-1) of test create folder (item x of test) end

Re: create nested folders

2005-05-24 Thread Christian Langers
empty into tPath set the directory to tLoctPath create folder (item x of test) end repeat set the directory to oldDir Christian Le 24 mai 05 à 21:06, Christian Langers a écrit : Hello, can anybody help me with this ? put Tutorial/Ladies/Bugs into test set itemdel to slash put

shell command on Windows

2005-05-22 Thread Christian Langers
Hello, on Os X, I'm able to use the shell for zipping files/folders... is there an equivalent command for the shell command ditto -c -k -- keepParent --sequesterRsrc SourceFileDestinationFile.zip) in windows ? Or can't I zip files via the shell in windows ? Thanks in advance,

unzip question (OS X)

2005-05-16 Thread Christian Langers
Hello, Does anybody know what option to set to the unzip shell command in order do get an incrementation to the file to extract (stored in a stack) when there is a file with the same name ? (unzipping via the Finder gives me that automatically : e.g. XML exists -- unzipping : XML 1 --

naming variables...

2005-05-04 Thread Christian Langers
Hello all, how does it come that the simple How do I create and use a numbered set of variables? example does not work in 2.5.1 ? I badly need to collect contents of flds into variables which are used later in the script... repeat with x = 1 to 20 put fld (ax) into (myVar x) end

Re: naming variables...

2005-05-04 Thread Christian Langers
Me too, but often I'm in my computer cellar, Grins ;-) Christian Le 4 mai 05 à 13:34, [EMAIL PROTECTED] a écrit : Moyen Christian, Finally another Lulu Rev partner? try this get fld (Ax) do put it into myVar X cheers Xavier (i dont need Tiger to get the weather in Luxembourg, I live it daily :

Re: Graphic turning to black

2005-04-20 Thread Christian Langers
Hi, Independently of the img format, the black is there ! But I found out that turning the best resize quality on in the object inspector, solves this problem...?! By the way, is there anybody who did a paint-like stack as I'm working on a module for coloring imported images for children in

Graphic turning to black

2005-04-19 Thread Christian Langers
Hi, On a windows machine (XP) : 1. I created a new stack 2. I imported an image (black and white img -- created in paint) (.bmp here) 3. colored parts of it with the fill bucket (any color) 4. selecting and resizing the image makes the whole image black !!! You can't work properly with this img

Re: Graphic turning to black

2005-04-19 Thread Christian Langers
Hallo, Merci fir deng Äntwert ... Christian Am 19/04/05 17:29 schrieb MisterX unter [EMAIL PROTECTED]: Christian said 1. I created a new stack 2. I imported an image (black and white img -- created in paint) (.bmp here) 3. colored parts of it with the fill bucket (any color) 4.

Xtalk/Transcript language mode for external editor SubEthaEdit

2005-04-14 Thread Christian Langers
...); just what I need, small and fast and free (for personal or educational use :-) ) So I hope someone finds this useful and please, do enjoy ... Christian Langers ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com

Re:Help... Ask/answer dialogs' color changing in standalone

2005-03-19 Thread Christian Langers
, at 8:14 AM, Christian Langers wrote: Hi, I only did what Sarah suggested me to to : Changing the backgroundcolor of the stack to white and setting the backgroundcolor (here of the cards needing dialogs) to black... Cheers, Christian Christian, What was it that fixed it? Sometimes

Re:Re:Help... Ask/answer dialogs' color changing in standalone

2005-03-17 Thread Christian Langers
it could be if that were happening to me and would like to know what fixed it, if ya found out that is. Sometimes they fix themselves Tom On Mar 16, 2005, at 6:28 PM, Christian Langers wrote: Thanks Sarah ! It works... Finally :-) Christian L

Help... Ask/answer dialogs' color changing in standalone

2005-03-16 Thread Christian Langers
? This never happened before ? Mac OS 10.3.8, Rev : 2.5.1 Christian Langers Primary school teacher ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/listinfo/use-revolution

Help... Ask/answer dialogs' color changing in standalone

2005-03-16 Thread Christian Langers
Thanks Sarah ! It works... Finally :-) Christian L. ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/listinfo/use-revolution

Call command bug or show/hide bug in windows standalones with Rev_2.5.1 ?

2005-03-14 Thread Christian Langers
Hello, Is it just me or ...? I need to call the mouseUp of a button in a script. Here is what I did : Created a new stack; a new fld (with a backgroundColor)(named test); 2 buttons (A and B) Btn A's script : on mouseUp put into fld test put 1,2,3 into tList call mouseUp of btn called

Using QT player for animation in background

2004-10-23 Thread Christian Langers
Hallo, I have a menu where the user selects buttons to continue ; I've tried to set a player as background animation ; the player's layer is 1 and should stay 1 when playing the movie in the background. When you are in the dev mode the movie is played as expected (in the background and the

Re: Using QT player for animation in background

2004-10-23 Thread Christian Langers
Bon jour Christian, Hallo, I have a menu where the user selects buttons to continue ; I've tried to set a player as background animation ; the player's layer is 1 and should stay 1 when playing the movie in the background. When you are in the dev mode the movie is played as expected (in

On openStack - preopenstack

2004-10-01 Thread Christian Langers
Hello, I have project with this structure : Splash (is engine) - password stack - main window Here is the script for the splash screen : on preOpenStack set loc of this stack to the screenLoc end preOpenStack on checkForScreenSize if item 3 of the screenRect 1024 \ or item 4 of the

RE : On openStack - preopenstack

2004-10-01 Thread Christian Langers
Salut Thierry, Je n'ai pas trouvé de workaround but my stacks are opening again as they should : I took a copy of the splash stack created on windows ; made a standalone on OS X for OS X... And guess what, no problems... Very étrange, n'est-ce pas ? Is it because Rev 2.5 on OS X is corrupting

revCopyFile different in 2.5?

2004-09-22 Thread Christian Langers
Hello Scott, I think, if I understood what you wrote, I found a solution : Here is what you can do (in a script) : put PathOfSourceFile (e.g. /Library/Receipts/BranchProposalSystem1.pkg) into tSource put PathOfDestination into tDestination (e.g. /Users/userName/Desktop) put (cp -R -p

revCopyFile different in 2.5?

2004-09-20 Thread Christian Langers
Hello all ! I do have the same problem. My script which worked without a problem in 2.2.1, does not copy anything ... ask question Name des Schülers ? as sheet if the result is not cancel then put it into tFoldName create folder (Dossiers/ tFoldName) create folder