... [Arx_help] ... 4.x is a sort of back to basics release. It's much simpler to setup, no need to fiddle with any ArexxGuide installation at all. ... Newer...
Rolf Max Rotvel wrote something about AppIcons position, but the original message was lost :-) It is easy for me to get and set the position of an appicon, but...
Hi, I just released a new little toy. The script contains a procedure GET_MOUSE_XY() that shows how to obtain the current mouse coordinates in plain ol' Arexx...
... I know but that is not enogh...Anyway try the new rmh on my hp. I found out what was the bug. Take a look at the ai.rexx example. Ciao. Alfonso....
... Excellent, I'll have a look one of these days (I'm busy with exams atm). I did make a workaround that used the Workbench Arexx port to move the icon right...
I've written a Say GUI script that uses translator.library and narrator.device to speak a text string. It works, but I can't get mouth shapes. Of course, if I...
Robert A. Sisk
RSisk@...
May 12, 2003 10:14 pm
3101
Hello Robert, ... if i run it i get: Say: Line 348 syntax error 17: Wrong number of arguments :-(( Regards, OPI (Frank Weber) <opionline@...> -- Computer:...
Hi, This is a script I wrote to pack (.lha) messages from a folder. How you invoke the script is up to you. Me, I use Dopus and tick "output to window". An...
Andrew Bruno
abruno@...
May 25, 2003 12:32 am
3105
Hello, fellow ARexx fans. Here's the latest version of my speech script. With the SofTalk narrator, requesting both channels uses only the right, and the mouth...
Robert A. Sisk
RSisk@...
May 29, 2003 10:10 pm
3106
Hello: Can ARexx compound variables be used in conjunction with something like an object? I need to make a number of substitutions and what I am doing now is ...
... I do not understand what you're up to... Substitutions, yes - but what more? ... This is Greek to me ;-P ... I would say "no"... ... I have done a lot of...
Hannu E K Nevalainen ...
garbage_collector@...
Jun 5, 2003 3:13 pm
3108
... How about making a string containing the full command, and INTERPRET it... Robin -- · Phone: (+44) [0]7968 967441 · Email: rycochet@... · Web:...
... Sustitutions are all that's needed, Hannu. This part of a SELECT is what I have started to use... WHEN ticker = "ACM.B" & exchange = "TSX" THEN DO ticker =...
Donald Dalley said, ... Can't you use compound variables for this? do i = 1 to tickers.count if ticker = tickers.old.i then do ticker = tickers.new.i leave end...
... Very obvious, yes... ... My guess is that building string tables is the most efficient. If both the 'from' and 'to' data were all of equal length then you...
Hannu E K Nevalainen ...
garbage_collector@...
Jun 6, 2003 9:25 pm
3112
Thanks for your thoughts, Hannu. ... sub_string = "CAO CAO.A TEK.A TEK.B RET RET.A" IF POS(ticker, sub_string) THEN PARSE VAR sub_string . ticker new_ticker . ...
... Yes, but my question was for an efficient way to populate the variable pairs >without< reading files. Parsing a long string saves this step, too. ... ...
Donald Dalley said, ... That's reasonable, but rmh.library probably does most of what you need from external libraries, and is far more efficient than doing...
... The above won't work, I believe (or have I missed smth?). I'd change it to (untested!) ... parse var sub_string (ticker) new_ticker . This seems a lot...
Hannu E K Nevalainen ...
garbage_collector@...
Jun 7, 2003 6:21 pm
3117
... Of course... my mistake - just typing off the top of my head. Thanks for your ideas. Donald Dalley...
... I like to keep to what ARexx does on its own, Neil, if I can. I use one of the system libraries, for reading directories, but that's the only one that...
The formatting came out all wrong on my previous post. I wonder if this looks better: Here are some more ideas for your ticker problem, Donald. /* * ot =...
... This one might be easier to change... /* untested as always. No Amiga Running Currently :-P i.e. "NARC" */ /* cfg */ num_matches=0 call addMatch('ACM.B TSX...