DLL registering

2005-11-15 Thread Eric Chatonet
Hi all, On Win XP and/or 2000, what would be the script to register a DLL in order to make it available from Rev? I'm rather a Mac man then help would be much appreciated :-) Best Regards from Paris, Eric Chatonet. So Smart

Re: DLL registering

2005-11-15 Thread xavier . bury
Hi Eric, here's the script from MetaCard's stack components... on mouseUp local f if the platform is Win32 then put *.dll into f else put * into f answer file Choose an external: with external with filter f if it is not empty then set the itemDelimiter to / if field List is

Re: DLL registering

2005-11-15 Thread Eric Chatonet
Hi Xavier, Thanks. But my problem is not this one: I know how to set an external in a stack but it's not enough : the DLL (installed by simple copy) has to be registered into the OS: that's the problem ;-) Le 15 nov. 05 à 09:37, [EMAIL PROTECTED] a écrit : Hi Eric, here's the script

Re: DLL registering

2005-11-15 Thread xavier . bury
Not that i know of. Last time i made a DLL (4 years ago), i just compiled it, copied to to the MC folder where my stack was, added the external to the stack and it worked... Something im missing? cheers Xavier [EMAIL PROTECTED] wrote on 15/11/2005 09:42:49: Hi Xavier, Thanks. But my

Re: DLL registering

2005-11-15 Thread Eric Chatonet
Xavier, I think there is something to do with regsvr32 trough a command line but don't know exactly what and how :-( Best Regards from Paris, Eric Chatonet. Le 15 nov. 05 à 09:44, [EMAIL PROTECTED] a écrit : Not that i know of. Last time i made a DLL (4 years ago), i just compiled it,

Re: DLL registering

2005-11-15 Thread Chipp Walters
Hi Eric, In order to use a DLL with RunRev there are a couple of things to know: 1) The DLL must be compiled specifically for RunRev; IOW, you can't just use any DLL with RR. 2) You don't need to register it. Just put it in the folder with the .exe and set the externals properly. best,

Re: DLL registering

2005-11-15 Thread Eric Chatonet
Hi Chipp, Thanks a lot. But I wonder: what do you want to mean by 'The DLL must be compiled specifically for RunRev'? Best Regards from Paris, Eric Chatonet. Le 15 nov. 05 à 09:59, Chipp Walters a écrit : Hi Eric, In order to use a DLL with RunRev there are a couple of things to know:

Re: DLL registering

2005-11-15 Thread xavier . bury
Eric Regular DLLs are made with glue to windows APIs and whatever app that calls it. Here you need your DLL to have Rev-API glue to communicate with rev... cheers Xavier [EMAIL PROTECTED] wrote on 15/11/2005 10:03:17: Hi Chipp, Thanks a lot. But I wonder: what do you want to mean by

Re: Serious Engine annoyance with is a folder on Win32...

2005-11-15 Thread xavier . bury
After further testing it seems ony Windows 2003 is affected. Windows 2000 is not (server or workstation) Windows XP is not either. NT4 (who cares?) i'll have to be extra careful with W2K3 services made with Rev so it doesn't get blocked by this! cheers Xavier [EMAIL PROTECTED] wrote on

Re: Check Modification Date of single file?

2005-11-15 Thread Klaus Major
Hi Swami, Klaus, Aloha from Hawaii, I hope you don't have too cold a winter over there, pray that the Gulf Stream doesn't stop...predicted to soon -- maybe as soon as in next five years or so -- at which time Europe freezes over; what a nice outsight... :-/ if it does you can move to

Re: ANN: New website

2005-11-15 Thread Klaus Major
Bonjour Pierre, Aïe, aïe, aïe ! :-) All the ones whose did'nt switch to CSS2 are yet able to sse why we need to do it, AS SOON AS POSSIBLE !!! Hear, hear!!! Great and cool, Klaus :-) Merci, mon ami! Best Regards, That's all for yet, Friends, Kind Regards, Pierre Sahores A partir

Re: Load URL returns error 10049

2005-11-15 Thread Dave Cragg
On 15 Nov 2005, at 05:59, Dave Beck wrote: Erin, I had the user ping the web site that the script is trying to access through Load URL and the ping returned: Ping statistics for 66.160.133.98 Packets: Sent 4, Received 4, lost 0 Approximate round trip minimum =72ms, maximum 78 ms,

Re: Load URL returns error 10049

2005-11-15 Thread Erin D. Smale
Hi Dave, I would check to see how she gets her IP, just to rule out any oddity. She can ping the address, but if her DHCP settings are wonky, that address may not resolve to the correct site. So, yes, if you could get her IP (static or dynamic?), default gateway, subnet mask, and host file

Problem with loop of array elements

2005-11-15 Thread Thomas Fischer
Hello, I have a small script that extracts URLs from an HTML page (see below). This works nicely if I do it step by step using the debugger. But if I let it run, I get only every other URL with blank lines in between. Does anybody have an idea what's going on? Thomas --- on mouseUp put cd fld

MC/RR and QT movies on Linux

2005-11-15 Thread Mathewson
I am just about to see what can be done with OpenQuicktime ( http://www.openquicktime.org/ ) as it M I G H T be the answer to bl**dy xanim. Those of you who haven't blotted your copybook with the folks at RunRev (My God, they take a long time forgiving things) could mention OpenQuicktime in their

revCopyFile progress bar

2005-11-15 Thread Andrew Sharp
Hello everyone, Is it possible to have a progress bar while a file is being copied to a server with the revCopyFile command. The files are fairly large and take a minute or so to copy. The computer is actually copying the file but to the user it appears as if the computer has locked up. Any

Re: DLL registering

2005-11-15 Thread Mark Wieder
Eric- Tuesday, November 15, 2005, 12:42:49 AM, you wrote: Xavier's right. The DLL shouldn't have to be registered with the OS in order for runrev to use it. I take it this isn't a DLL that you've made yourself? -- -Mark Wieder [EMAIL PROTECTED] ___

Re: DLL registering

2005-11-15 Thread Eric Chatonet
Hi Mark, No I did not made the DLL myself but I know the guy who did: I'm trying to help him. Any clues I could tell him? Le 15 nov. 05 à 17:25, Mark Wieder a écrit : Xavier's right. The DLL shouldn't have to be registered with the OS in order for runrev to use it. I take it this isn't a

Revolution and DLLs (was Re: DLL registering) [Long]

2005-11-15 Thread Ken Ray
On 11/15/05 3:03 AM, Eric Chatonet [EMAIL PROTECTED] wrote: Thanks a lot. But I wonder: what do you want to mean by 'The DLL must be compiled specifically for RunRev'? Let me step in here - there's actually two things to talk about: the first is what it means to be 'compiled specifically for

Re: revCopyFile progress bar

2005-11-15 Thread Ken Ray
On 11/15/05 10:15 AM, Andrew Sharp [EMAIL PROTECTED] wrote: Hello everyone, Is it possible to have a progress bar while a file is being copied to a server with the revCopyFile command. The files are fairly large and take a minute or so to copy. The computer is actually copying the file but

Re: Problem with loop of array elements

2005-11-15 Thread Jim Ault
On 11/15/05 6:58 AM, Thomas Fischer [EMAIL PROTECTED] wrote: open file theSearchFile read from file theSearchFile until end close file theSearchFile put it into theSearchResult Suggestion: instead of these 4 lines, consider put url (file:/ theSearchFile) into theSearchResult Jim

Re: Revolution and DLLs (was Re: DLL registering) [Long]

2005-11-15 Thread Eric Chatonet
Ken, You rock! Thanks a big lot for all this clarification :-) I have to dig in... Best Regards from Paris, Eric Chatonet. Le 15 nov. 05 à 17:25, Ken Ray a écrit : On 11/15/05 3:03 AM, Eric Chatonet [EMAIL PROTECTED] wrote: Thanks a lot. But I wonder: what do you want to mean by 'The

Re: Revolution and DLLs (was Re: DLL registering) [Long]

2005-11-15 Thread Mark Wieder
Ken- Tuesday, November 15, 2005, 8:25:49 AM, you wrote: Awesome post. 4) Since the VBS file only connects to a DLL and executes a function, there's no way for Windows to know whether the function is bad or good, so virus protection software won't intercept the attempt to call the DLL (so

Re: DLL registering

2005-11-15 Thread Mark Wieder
Eric- Tuesday, November 15, 2005, 8:24:27 AM, you wrote: No I did not made the DLL myself but I know the guy who did: I'm trying to help him. Any clues I could tell him? I'll defer to Ken's great post here, but adding the glue to the DLL shouldn't be that big a deal. That's the way I would

AW: Problem with loop of array elements

2005-11-15 Thread Thomas Fischer
Hi Jim, open file theSearchFile read from file theSearchFile until end close file theSearchFile put it into theSearchResult Suggestion: instead of these 4 lines, consider put url (file:/ theSearchFile) into theSearchResult Yes, you're right, I'm sticking unnecessarily to my

Re: Revolution and DLLs (was Re: DLL registering) [Long]

2005-11-15 Thread Ken Ray
On 11/15/05 11:07 AM, Mark Wieder [EMAIL PROTECTED] wrote: Ken- Tuesday, November 15, 2005, 8:25:49 AM, you wrote: Awesome post. Thanks! 4) Since the VBS file only connects to a DLL and executes a function, there's no way for Windows to know whether the function is bad or good, so

Re: revCopyFile progress bar

2005-11-15 Thread Andre Garzia
On Nov 15, 2005, at 2:15 PM, Andrew Sharp wrote: Hello everyone, Is it possible to have a progress bar while a file is being copied to a server with the revCopyFile command. The files are fairly large and take a minute or so to copy. The computer is actually copying the file but to the

Re: Revolution and DLLs (was Re: DLL registering) [Long]

2005-11-15 Thread J. Landman Gay
Ken Ray wrote: On 11/15/05 3:03 AM, Eric Chatonet [EMAIL PROTECTED] wrote: Thanks a lot. But I wonder: what do you want to mean by 'The DLL must be compiled specifically for RunRev'? Let me step in here - there's actually two things to talk about: the first is what it means to be 'compiled

Unicode in Window Title?

2005-11-15 Thread Trevor DeVore
Has anyone been able to display Unicode in a window title on OS X? When I set the title property for a stack (which has textFont set to ,Unicode) to a Unicode string I just get garbage characters. I'm trying to get Russian to display properly. -- Trevor DeVore Blue Mango Multimedia

Re: Revolution and DLLs (was Re: DLL registering) [Long]

2005-11-15 Thread Ken Ray
On 11/15/05 12:33 PM, J. Landman Gay [EMAIL PROTECTED] wrote: Ken Ray wrote: On 11/15/05 3:03 AM, Eric Chatonet [EMAIL PROTECTED] wrote: Thanks a lot. But I wonder: what do you want to mean by 'The DLL must be compiled specifically for RunRev'? Let me step in here - there's

Re: revCopyFile progress bar

2005-11-15 Thread Vikram Singh
Maybe you can embed a small browser (without borders etc... I am talking of Chipp's external) and play the GIF animation in the browser, rather than in the stack directly (if I remember, it will lock up/freeze too). I *think* the browser should not. Just my 2 cents On Nov 15,

Re: revCopyFile progress bar

2005-11-15 Thread Andre Garzia
On Nov 15, 2005, at 5:15 PM, Vikram Singh wrote: Maybe you can embed a small browser (without borders etc... I am talking of Chipp's external) and play the GIF animation in the browser, rather than in the stack directly (if I remember, it will lock up/freeze too). I *think* the browser

Re: Unicode in Window Title?

2005-11-15 Thread Trevor DeVore
On Nov 15, 2005, at 11:01 AM, Trevor DeVore wrote: Has anyone been able to display Unicode in a window title on OS X? When I set the title property for a stack (which has textFont set to ,Unicode) to a Unicode string I just get garbage characters. I'm trying to get Russian to display

How to lock a field after a drag?

2005-11-15 Thread William de Smet
Hi there, As a newbie I'm trying to do the following with a field: drag field 1 onto field 2 and then count 1 up in a field called score (field 1 must then be locked until field score is five and next field 1 must be draggable again. So far I use the following code:

Re: revCopyFile progress bar

2005-11-15 Thread Vikram Singh
Yes Sir, i know that ;) The problem as I got it is that the stack freezes till the end of the activity, since it is single threaded appl. And the GIF freezes at the current frame, i remember having done something like this 2 yrs back. If it doesnt, then great! I dont know though

Re: Table Field Object - how to use?

2005-11-15 Thread Jerry J
From: Alex Tweedly [EMAIL PROTECTED] Subject: Re: Table Field Object - how to use? It might be the tutorial (number 16) by Eric Chatonet of So Smart Software. Can be found at http://www.sosmartsoftware.com/?r=revolution_didacticielsl=en Thanks, Alex, that does it nicely. And thanks Eric, I

Cmd-A doesn't work from Keyboard in Standalone

2005-11-15 Thread Sivakatirswami
I have a pulldown menu button on group shared across all cards in a stack... the standard Edit. Select All/A the cmd symbol for the Mac appears as expected to the right of the menu item in the pull down. case Select All if the selected fld is not empty then select text of the selected

deleteDups()

2005-11-15 Thread HyperChris
I used to use an Xcmd set called HyperExternals Pro and one of its useful XFCN's was deleteDups(). The main thing it did was to quickly eliminate the duplicate lines in a sorted list. Here is my transcript replacement ... function deleteDups pList repeat with x=number of lines in pList down

Re: deleteDups()

2005-11-15 Thread Eric Chatonet
Hi Chris, Repeat for each is always much more faster than repeat with x: So I would prefer: function deleteDups pList local tLine,tStrippedList - repeat for each line tLine in pList if tLine is not among the lines of tStrippedList then put tLine cr after tStrippedList

Re: deleteDups()

2005-11-15 Thread J. Landman Gay
[EMAIL PROTECTED] wrote: I used to use an Xcmd set called HyperExternals Pro and one of its useful XFCN's was deleteDups(). The main thing it did was to quickly eliminate the duplicate lines in a sorted list. Here is my transcript replacement ... function deleteDups pList repeat with

How can I print all parts of oversize cards..Happy ending.

2005-11-15 Thread Kresten Bjerg
Hey, to Jacqueline, and the other helpers Jacquelines last posting solved the problem, - the imagedata line didnt work, instead: (I copy below essentials of the handler, in case somebody should get involved in the same mysteries) Jacqueline,I am not sure, how I caused the

Re: The Disappearing Desktop - It's Real This Time

2005-11-15 Thread David Bovill
On 14 Nov 2005, at 20:53, Dan Shafer wrote: Agreed. That and security are the issues and they have been more than adequately addressed for a long time now. The omigod my data isn't on my own server alarm is a red herring. Any company that sees the advantage in distributed browser-based

Re: MC/RR and QT movies on Linux

2005-11-15 Thread David Bovill
Better still would be cross platform VLC? On 15 Nov 2005, at 08:14, Mathewson wrote: I am just about to see what can be done with OpenQuicktime ( http://www.openquicktime.org/ ) as it M I G H T be the answer to bl**dy xanim. Those of you who haven't blotted your copybook with the folks at

Re: The Disappearing Desktop - It's Real This Time

2005-11-15 Thread Dan Shafer
David. If we had a trusted business relationship established and you needed my accounts, I would feel every bit as secure making them available over the Net as I do sending them in the mail. Since we don't :-) Dan On Nov 15, 2005, at 3:22 PM, David Bovill wrote: On 14 Nov

Re: Unicode in Window Title?

2005-11-15 Thread ron barber
Hi Trevor, Sigh. One day we will be able to do this and I would love to have someone come in and tell me that today is the day but until then we continue to wait for more complete unicode support. I can't remember if this is on the bugzilla list or not but please add it if it isn't.

scope puzzle with menus

2005-11-15 Thread Charles Hartman
I've got that incremental-search-in-a-sorted-field routine working the way I want it (thanks to all the help from this list.) So I decided to move it to my mainstack's script to avoid having a dozen copies in the scripts for the scrollable fields themselves. In the mainstack script there's

Re: Unicode in Window Title?

2005-11-15 Thread Trevor DeVore
On Nov 15, 2005, at 4:37 PM, ron barber wrote: Hi Trevor, Sigh. One day we will be able to do this and I would love to have someone come in and tell me that today is the day but until then we continue to wait for more complete unicode support. I can't remember if this is on the bugzilla

Re: Unicode in Window Title?

2005-11-15 Thread ron barber
Hi again, One workaround is to set the language of the OS in the International section of the system preferences. For Russian, you can drag it to the top of the list. Note this also changes the special menu items - help, about, quit and maybe another that I can't remember. Another way to do

[offlist] Re: Unicode in Window Title?

2005-11-15 Thread Trevor DeVore
On Nov 15, 2005, at 6:20 PM, ron barber wrote: Hi again, One workaround is to set the language of the OS in the International section of the system preferences. For Russian, you can drag it to the top of the list. Note this also changes the special menu items - help, about, quit and

Re: scope puzzle with menus

2005-11-15 Thread J. Landman Gay
Charles Hartman wrote: I've got that incremental-search-in-a-sorted-field routine working the way I want it (thanks to all the help from this list.) So I decided to move it to my mainstack's script to avoid having a dozen copies in the scripts for the scrollable fields themselves. In the

Re: How can I print all parts of oversize cards..Happy ending.

2005-11-15 Thread J. Landman Gay
Kresten Bjerg wrote: Hey, to Jacqueline, and the other helpers Jacquelines last posting solved the problem, - Glad it worked, in spite of my confusion. -- Jacqueline Landman Gay | [EMAIL PROTECTED] HyperActive Software | http://www.hyperactivesw.com

Re: scope puzzle with menus

2005-11-15 Thread Charles Hartman
Jacque, I would not have thought of that in 127 days. Thank you! (I'm still a little puzzled. I still don't see why my script local variable is getting tampered with by something outside the script at all. I fear I'm missing a General Concept here.) Charles Hartman On Nov 15, 2005, at

Re: Problem with loop of array elements

2005-11-15 Thread Jim Ault
On 11/15/05 6:58 AM, Thomas Fischer [EMAIL PROTECTED] wrote: Original email was about looping arrays and debugging. Along a different line, I am offering a more universal way of getting URL links. Thomas, another technique you might try is locating and using the href = ³www.url.com² string. This

Re: [offlist] Re: Unicode in Window Title?

2005-11-15 Thread ron barber
Glad it worked for you, but I think we still need to be able to use unicode in a more direct, natural way. On Nov 16, 2005, at 12:37 PM, Trevor DeVore wrote: In my Japanese/Chinese/Korean/English app, I have the user choose a default language and work with it this way. Try it and let me know

Re: The Disappearing Desktop - It's Real This Time

2005-11-15 Thread Geoff Canyon
On Nov 13, 2005, at 11:12 PM, Graham Samuel wrote: I want to know, are we looking at a 'paradigm shift' or an addition to the spectrum of possible app technologies or what? AJAX generalizes to this: an engine stored on the user's computer accessing program code and data from a server on

Re: scope puzzle with menus

2005-11-15 Thread J. Landman Gay
Charles Hartman wrote: Jacque, I would not have thought of that in 127 days. Thank you! (I'm still a little puzzled. I still don't see why my script local variable is getting tampered with by something outside the script at all. I fear I'm missing a General Concept here.) Well, if you