Hi,
I have a screenshot capture app downloaded from http://www.d--b.webpark.pl/onlinescreen_en.htm. I am trying to record a session of capturing a screen shot of one webpage. When I try to run the recorded Macro it just doesn't even focus on the screen shot capture tool. The focus just stays on the MacroScheduler window only. But when do something on firefox and record that session it works just fine. Any ideas are appreciated.
Thanks
HeMan
MacroScheduler failing with Screenshot capture app
Moderators: JRL, Dorian (MJT support)
-
- Automation Wizard
- Posts: 1101
- Joined: Fri Jan 07, 2005 5:55 pm
- Location: Somewhere else on the planet
I used snagit but now I have switched to HyperSnap-DX http://www.hyperionics.com/ which is very good too and has a command line mode that makes it very easy to automate.
- Bob Hansen
- Automation Wizard
- Posts: 2475
- Joined: Tue Sep 24, 2002 3:47 am
- Location: Salem, New Hampshire, US
- Contact:
Don't make a decision without checking out HardCopy which is FREE.
Does not have a command line feature, but can remap Print Screen and other keys for Capture functions. Has image editing, email, Twain, etc.
Does not have a command line feature, but can remap Print Screen and other keys for Capture functions. Has image editing, email, Twain, etc.
Hope this was helpful..................good luck,
Bob
A humble man and PROUD of it!
Bob
A humble man and PROUD of it!
Not many features in this sample but it demonstates that Macro Scheduler has some screen capture capabilities built in.
Dialog>Dialog1
Caption=Capture Script
Width=344
Height=286
Top=100
Left=100
Label=Capture Filename.jpg or Filename.bmp,48,16
Button=Capture,48,192,75,25,3
Button=Cancel,208,192,75,25,2
Edit=msEdit1,48,40,225,C:\FunkyName.jpg
RadioGroup=msRadioGroup1,Capture Choices,48,72,185,105,Capture Window%CRLF%Capture Screen,-1
EndDialog>Dialog1
show>Dialog1
Label>ActionLoop
GetDialogAction>Dialog1,r
if>r=3,Capture
if>r=2,exit
Goto>ActionLoop
Label>exit
SRT>Capture
If>Dialog1.msRadioGroup1=Capture Screen
CloseDialog>Dialog1
Let>WW_TIMEOUT=1
WaitWindowClosed>Capture Script*
GCP>X,Y
MOU>10000,10000
GCP>X2,Y2
MOU>%X%,%Y%
ScreenCapture>0,0,X2,Y2,Dialog1.msEdit1
MDL>Capture complete...%CRLF%View the results at:%CRLF%%Dialog1.msEdit1%
EndIf
If>Dialog1.msRadioGroup1=Capture Window
CloseDialog>Dialog1
MDL>Pick OK then Select a Window to capture%CRLF%within 5 seconds
Wait>5
GetActiveWindow>Winder,X,Y,Width,Height
Let>X2=X+Width
Let>Y2=Y+Height
ScreenCapture>X,Y,X2,Y2,Dialog1.msEdit1
MDL>Capture complete...%CRLF%View the results at:%CRLF%%Dialog1.msEdit1%
EndIf
//ResetDialogAction>Dialog1
END>Capture
Also from Tips and Scripts
http://www.mjtnet.com/forum/viewtopic.php?t=1477
Later,
Dick
Dialog>Dialog1
Caption=Capture Script
Width=344
Height=286
Top=100
Left=100
Label=Capture Filename.jpg or Filename.bmp,48,16
Button=Capture,48,192,75,25,3
Button=Cancel,208,192,75,25,2
Edit=msEdit1,48,40,225,C:\FunkyName.jpg
RadioGroup=msRadioGroup1,Capture Choices,48,72,185,105,Capture Window%CRLF%Capture Screen,-1
EndDialog>Dialog1
show>Dialog1
Label>ActionLoop
GetDialogAction>Dialog1,r
if>r=3,Capture
if>r=2,exit
Goto>ActionLoop
Label>exit
SRT>Capture
If>Dialog1.msRadioGroup1=Capture Screen
CloseDialog>Dialog1
Let>WW_TIMEOUT=1
WaitWindowClosed>Capture Script*
GCP>X,Y
MOU>10000,10000
GCP>X2,Y2
MOU>%X%,%Y%
ScreenCapture>0,0,X2,Y2,Dialog1.msEdit1
MDL>Capture complete...%CRLF%View the results at:%CRLF%%Dialog1.msEdit1%
EndIf
If>Dialog1.msRadioGroup1=Capture Window
CloseDialog>Dialog1
MDL>Pick OK then Select a Window to capture%CRLF%within 5 seconds
Wait>5
GetActiveWindow>Winder,X,Y,Width,Height
Let>X2=X+Width
Let>Y2=Y+Height
ScreenCapture>X,Y,X2,Y2,Dialog1.msEdit1
MDL>Capture complete...%CRLF%View the results at:%CRLF%%Dialog1.msEdit1%
EndIf
//ResetDialogAction>Dialog1
END>Capture
Also from Tips and Scripts
http://www.mjtnet.com/forum/viewtopic.php?t=1477
Later,
Dick