The txt file (I assume you got that from an early post in the thread?)
was used in very early versions of this applet which are now redundant,
the latest version uses xml. You need to edit data\SqueezeIR.xml to get
the applet to do what you want. You'll need something like this:
Code:
--------------------
<SqueezeIR>
<hotkey>66</hotkey> <!-- BACK + HOME -->
<remotes>
<remote ID="PHILIPS"> <!-- or whatever you want to call it -->
<protocol>RC5X</protocol>
<parameters>
<parameter ID="ADDRESS">31</parameter>
</parameters>
<commands>
<command ID="VOL_UP"><value>33</value></command>
<command ID="VOL_DOWN"><value>35</value></command>
</commands>
</remote>
</remotes>
<profiles>
<profile ID="{none}"/> <!-- dummy to disable SqueezeIR if necessary -->
<profile ID="TRANSPORTER"> <!-- Must match the name of your transporter -->
<keys>
<key ID="VOLUME_UP">
<events>
<event ID="PRESS">
<override>TRUE</override>
<actions>
<action order="1">
<remote>PHILIPS</remote>
<command>VOL_UP</command>
</action>
</actions>
</event>
<event ID="HOLD">
<override>TRUE</override>
<actions>
<action order="1">
<remote>PHILIPS</remote>
<command>VOL_UP</command>
</action>
</actions>
</event>
</events>
</key>
<key ID="VOLUME_DOWN">
<events>
<event ID="PRESS">
<override>TRUE</override>
<actions>
<action order="1">
<remote>PHILIPS</remote>
<command>VOL_DOWN</command>
</action>
</actions>
</event>
<event ID="HOLD">
<override>TRUE</override>
<actions>
<action order="1">
<remote>PHILIPS</remote>
<command>VOL_DOWN</command>
</action>
</actions>
</event>
</events>
</key>
</keys>
</profile>
</profiles>
</SqueezeIR>
--------------------
Stick that onto your controller, restart it and then go into Settings >
SqueezeIR. Set the default profile to "{none}" and ensure the "Use
Player Profiles" box is selected. Now whenever you switch your
controller to your transporter SqueezeIR will use the TRANSPORTER
profile and the volume buttons will send IR codes instead of their
normal function. When you switch to a different player SqueezeIR will
fall back to the "{none}" profile which has no actions defined so the
controller will behave as it always used to.
You may also want to define mute on the transporter profile and
possibly power on/off aswell. More info can be found in the \docs
folder.
--
indifference_engine
------------------------------------------------------------------------
indifference_engine's Profile:
http://forums.slimdevices.com/member.php?userid=20698
View this thread: http://forums.slimdevices.com/showthread.php?t=66795
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins