| View previous topic :: View next topic |
| Author |
Message |
smee
Joined: 03 Jun 2008 Posts: 2
|
Posted: Mon Jun 23, 2008 7:04 am Post subject: bf2 map screen shot |
|
|
Hi
I'm after trying to get screen shot of the map screen each time after i open the map button ( one button does both actions, yes a macro ).
Is there anyone that could write a macro for it. I wouldn't think it would be that difficult to someone that knows what they are doing.
Many thanks . |
|
| Back to top |
|
 |
Alekoz
Joined: 17 Jun 2007 Posts: 157
|
Posted: Mon Jun 23, 2008 8:53 am Post subject: |
|
|
with taking a screenshot you would need an external program because the screetshot taking in bf2 doesnt work so good.
this one should save it to the clipboard using printscreen(not tested though)
| Code: |
$F12::
Send, {M Down}
Sleep, 50
Send, {PrintScreen}
Sleep, 40
Send, {M Up}
return
|
but if you use something like fraps to take screenshots like i do then i think it should work perfectly if you have your screenshot button in fraps on printscreen
you might also play with the sleep times _________________ My BF2 Scripts |
|
| Back to top |
|
 |
Guest
|
Posted: Mon Jun 23, 2008 8:45 pm Post subject: |
|
|
| where would i put this sorry for asking dumb question |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6847 Location: Pacific Northwest, US
|
Posted: Mon Jun 23, 2008 9:30 pm Post subject: |
|
|
in an autohotkey script. If you find yourself asking "What is Autohotkey" then you should click the picture at the top of this page. if you know what autohotkey is, but can't figure out how to use posted code, try the tutorial in the autohotkey help file. _________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
|