Hi, I have now got back into the swing of things and am playing with this "terminate the loop" thing. This is the example program: /* */ ECHO 'Starting the...
Andrew Bruno
abruno@...
Aug 11, 2001 4:42 am
2445
G'day Andrew Bruno, On 11-Aug-01, on the subject of "[arexx] Back to my "ITERATE" problem", ... ECHO i <--- Add this ... The ITERATE command...
Steve & Ulli Bowman
stevebow@...
Aug 11, 2001 6:08 am
2446
... If you want to "terminate the loop" if the name is found you have to use the "LEAVE" command. ITERATE just will continue with the loop at the start. ... ...
Bernd Gollesch
bgollesch@...
Aug 11, 2001 11:09 am
2447
Gently extracted from the mind of Andrew Bruno; ... I assume that you wish to know which i gives (test.i = name). If that is true replace ITERATEe with LEAVE. ...
Ash Wyllie
ashw@...
Aug 11, 2001 10:23 pm
2448
Hello Bernd ... YES YES YES YES YES (As Sally said at the table with Harry looking on in "When Harry met Sally") That is what I want. Thanks! Now my codes...
Andrew Bruno
abruno@...
Aug 11, 2001 10:27 pm
2449
Once upon a time, 11-Aug-01 13:49:28, Andrew Bruno spoke thus about ... If you're trying to terminate the loop when you've found a match then you should be...
Dave Clarke
bj73@...
Aug 12, 2001 6:10 am
2450
Hello I am trying to use RawInsert from Franz Schwartz It is supposed to accept the 'Commodities key combination syntax' I am trying to put an 'arrow' in such...
Joseph Duchâtelet
jduchatelet@...
Aug 14, 2001 7:51 pm
2451
Recently in testing a few Amiga webservers, I downloaded HServ and was playing around with it, but couldn't figure out how to set it up to service more than ...
Kevin Orme
amigau@...
Aug 14, 2001 8:31 pm
2452
... I am not sure if I understand what you want to do. But you could 'stack' and 'queue' your commands. Good bye, -- Andreas <sp.amix@...> Cool links...
Andreas Mixich
sp.amix@...
Aug 20, 2001 4:22 pm
2453
Hi, I hope I am not re-inventing the wheel here. Although it is probably a pointless excercise, when I get spam, I bounc it to abuse@..... The "problem" is...
Andrew Bruno
abruno@...
Aug 25, 2001 6:48 am
2454
hello, I try to write my first arexx-Program and need your help. I want to add some text into a picture with adpro and arexx. The command is OPERATOR...
alexander.fritsch@...
Sep 2, 2001 4:54 pm
2455
... Pass a quoted value like this: OPERATOR "TEXT_VISUAL" STRING '"Hello ArexxFans"' Kind regards, -- Bob Robert A. Sisk RSisk@......
Robert A. Sisk
RSisk@...
Sep 2, 2001 7:22 pm
2456
Gently extracted from the mind of alexander.fritsch; ... I think str = "hello world" 'OPERATOR "TEXT_VISUAL" STRING' str will work. -ash for assistance dial...
Ash Wyllie
ashw@...
Sep 3, 2001 1:44 am
2457
... Date is 03 Sep 2001 So I wrote originally text = 'Date is' Date() But now I would have to add quotes as you wrote in order to avoid my spaces-problem. How...
Fritsch Alexander
alexander.fritsch@...
Sep 3, 2001 7:55 am
2458
... Pass the symbol with quotes: OPERATOR "TEXT_VISUAL" STRING '"'text'"' or 'OPERATOR TEXT_VISUAL STRING "'text'"' Kind regards, -- Bob Robert A. Sisk ...
Robert A. Sisk
RSisk@...
Sep 3, 2001 8:51 am
2459
... Pass the symbol with quotes: OPERATOR "TEXT_VISUAL" STRING '"'text'"' or 'OPERATOR TEXT_VISUAL STRING "'text'"' ... Thank you very much, that works...
Fritsch Alexander
alexander.fritsch@...
Sep 4, 2001 8:17 am
2460
... That sounds quite impressive for a first script. :-) ... Of course. Just use DOS commands. ... Sure. If you have ARexx documentation, I'm sure you can find...
Robert A. Sisk
RSisk@...
Sep 4, 2001 10:18 am
2461
G'day Fritsch, On 04-Sep-01, you wrote: FA> But... FA> there are some more problems. Whats the recommended way of starting FA> an external program? At...
Craig Hutchison
chotch@...
Sep 4, 2001 6:24 pm
2462
This has been bugging me...hopefully someone can help. Here's a small program: /* filesplitter */ open('infile','ram:in','R') open('odd','ram:odd','W') ...
Dennis Griffin
griffin@...
Sep 4, 2001 10:09 pm
2463
... A simpler way to wait for a port to appear would be be to use the, umm, WaitForPort command. Kind regards, -- Bob Robert A. Sisk RSisk@......
Robert A. Sisk
RSisk@...
Sep 5, 2001 4:54 am
2464
... You should place a CALL in front of each function: /* filesplitter */ call open('infile','ram:in','R') call open('odd','ram:odd','W') call...
Bernd Gollesch
bgollesch@...
Sep 5, 2001 7:15 am
2465
... A more simpler way is to use rmh.library/PORTWAIT(<portName>,[secs/N]) Ciao. Alfonso....
Alfonso Ranieri
ranieria@...
Sep 5, 2001 10:26 am
2466
Hello Bernd ... Yes! I tried both programs using an "in" file of 286K (5778 lines) and my original program took 183.2 seconds to complete. With the call...
Dennis Griffin
griffin@...
Sep 5, 2001 6:21 pm
2467
G'day Robert, On 05-Sep-01, you wrote: RAS> A simpler way to wait for a port to appear would be be to use the, RAS> umm, WaitForPort command. That'd be too...
Craig Hutchison
chotch@...
Sep 5, 2001 6:34 pm
2468
Craig Hutchison wrote on Tue, 04 Sep 2001 19:24:26 +1000 about 'Starting programs, waiting for execution' ... IF ~SHOW('P','YAM') THEN DO ADDRESS COMMAND 'Run...
Jules
jules@...
Sep 5, 2001 9:20 pm
2469
Thanks to everybody who replied to my questions. You were a big help for me. My ARexx-controlled WebCam runs nicely. The ARexx-Script needs still some cleanup...
Fritsch Alexander
alexander.fritsch@...
Sep 6, 2001 8:19 am
2470
... It still needs to utilize my scaling routine. The image has some nasty pixelization. -- Xavier, xcaliber@... on 06-09-2001...
Xavier
onelist@...
Sep 6, 2001 8:29 am
2471
... Bleh, I hate when I reply the wrong place. I might as well explain it for the rest. In ADPro, if you want to double the size of an image, quadruple it....
Xavier
onelist@...
Sep 6, 2001 8:35 am
2472
G'day Alfonso, ... AR> A more simpler way is to use AR> rmh.library/PORTWAIT(<portName>,[secs/N]) Ooooh. I hadn't found this one. Thanks. Cache Ya, Craig....
Craig Hutchison
chotch@...
Sep 6, 2001 12:47 pm
2473
... Or you can easily create a procedure yourself: (This procedure requires rexxsupport.library - call addlib('rexxsupport.library', 0, -30 , 0)) PORTWAIT:...