Is it possible to have both macro's autorepeat? I would like both actions to autorepeat with one keypress (i.e. the OSD showing the changing volume level as the volume changes). The macro that I have setup is as follows:
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1194">
<Macro Name="Sound Mixer Ex: Increases 'Wave Out 4/5 - Wave - Volume' 4/5'" Expanded="True">
<Event Name="Lirc.pc:volume_up" />
<Action>
SoundMixerEx.SetSoundFader(6, 0L, u"'Wave Out 4/5 - Wave - Volume' on 'kX Wave SB0350 10k2 [a000] 4/5'", 1.0, 1)
</Action>
<Action>
EventGhost.ShowOSD(u'Room Volume: {int(eg.result)} {"|" *int(round(eg.result) * 0.5) + "-" *int(round(100-(eg.result)) * 0.5)}', u'0;-30;0;0;0;700;0;0;0;0;3;2;1;34;Arial', (255, 255, 255), (0, 0, 0), 5, (0, 0), 0, 3.0, True)
</Action>
<Action>
EventGhost.AutoRepeat(0.29999999999999999, 0.01, 0.01, 3.0)
</Action>
</Macro>
</EventGhost>