Code: Select all
<MACRO id="a25">
<MAIN repeat="x">
<KEYINPUT behaviour="PRESS" type="VIRTUAL_CODE" code="0x27"/>
<KEYINPUT behaviour="RELEASE" type="VIRTUAL_CODE" code="0x27"/>
<WAIT time="25ms"/>
</MAIN>
</MACRO>
How do I fix it to always press and release correctly?
Edit: this is the fix I was looking for. Macro makers, watch and learn:
Code: Select all
<MACRO id="APulse50">
<START>
</START>
<MAIN repeat="x">
<KEYINPUT behaviour="PRESS" type="VIRTUAL_CODE" code="0x41"/>
<WAIT time="150"/>
<KEYINPUT behaviour="RELEASE" type="VIRTUAL_CODE" code="0x41"/>
<WAIT time="25"/>
</MAIN>
<END>
<KEYINPUT behaviour="RELEASE" type="VIRTUAL_CODE" code="0x41"/>
</END>
</MACRO>