CompuServe Messages

#Wndws Macro/Batch Proces

    02-Feb-95 22:33:14
Fm: EDWARD HARVEY 75533,3303
To: ROBERT RITGER 75050,2255
Bridge Tool Kit Softbridge, Inc 125 CambridgePark Dr Cambridge, Ma 02140 617 5762257 800 9559190 I use it to automate just about any process in Windows. The latest version, 3.1 can send commands to Dos programs. Its a macro builder that can easily deal with sequential files. Ive used it to bring hundereds of files into Photostyler, convert them,do several operations on them( including operations that require "animated settings" for example, progressive sphere distort, or hue change on a series of files ) then save them. It will also record mouse moves and keystrokes and embed the recordings in the scripts so every aspect of a program can be automated. You can even edit the recorded strokes.It will build dialogue boxes and button bars. Its saved me thousands of hours of work in Coreldraw, Photostyler etc.. Heres an example of a moderately complex script( I got it with no knowledge of even batch files so it seemed complex to me) SELECT PSTYLER; ON KEY X GOSUB BAT RETURN :BAT FOR I = 1 TO 89 SELECT PSTYLER; PUT "%%f{DOWN}{DOWN}{DOWN}{DOWN}{ENTER}" SELECT PSTYLER; PUT "%%fO" SELECT PSTYLER; PUT "CIRC" SELECT PSTYLER; PUT "{ENTER}" SELECT PSTYLER; PUT "%%fO" index = %index% + 1 root = str.cat( "f",%index% ) filename = str.cat( %root%,".TGA" ) select PSTYLER; put "%filename%" SELECT PSTYLER; PUT "{ENTER}" SELECT PSTYLER; PUT "%%SM{ENTER}" SELECT PSTYLER; PUT "%%I{ENTER}U" NUM = %NUM% + 2 SELECT PSTYLER; PUT "{tab}" SELECT PSTYLER; PUT "%NUM%{TAB}" SELECT PSTYLER; PUT "{ENTER}" SELECT PSTYLER; PUT "%%SN" SELECT PSTYLER; PUT "%%FS" NEXT I RETURN "In photostyler, process 89 framescalled f*.tga by changing the hue within a selection area(circ) in cumulative increments of two % per frame and save." If you go with this solution let me know if you need any help with the scripts. Ed