Well I have managed to get my SN working the way I like it...
At the main menu of the skin I am running you will get mouse movement, audio control, and winamp present control. If you go to the Song browser, volume control changes to song selection scrolling.
Here it is for anyone thats interested.
This was based off of Inh's config, thanks again man.
Code:
<deviceContexts>
<deviceContext name="Media" device="SpaceNavigator">
<axe threshold="200" type="binary" posAction="" negAction=""/> <!-- axe 0 pan left/right -->
<axe threshold="200" type="binary" posAction="" negAction=""/> <!-- axe 1 pan foreward/back -->
<axe threshold="200" type="binary" posAction="RR Next" negAction="RR Prev"/> <!-- axe 2 push/pull -->
<axe simulateMouseMove="y"
threshold="50"
divisor="30" /> <!--axe 3 tilt forward/back -->
<axe simulateMouseMove="x"
threshold="50"
divisor="30" /> <!--axe 4 title left/right -->
<axe threshold="100"
type="exponential"
startPulse="1"
endPulse="20"
posAction="RR Volume Up"
negAction="RR Volume Down" /> <!-- axe 5 Twist -->
<buttons>
<button simulateMouseButton="left" />
<button downAction="RR FullVisu"
upAction="" />
</buttons>
</deviceContext>
<deviceContext name="Player" device="SpaceNavigator">
<axe threshold="200" type="binary" posAction="" negAction=""/> <!-- axe 0 pan left/right -->
<axe threshold="200" type="binary" posAction="" negAction=""/> <!-- axe 1 pan foreward/back -->
<axe threshold="200" type="binary" posAction="RR Next" negAction="RR Prev"/> <!-- axe 2 push/pull -->
<axe simulateMouseMove="y"
threshold="50"
divisor="30" /> <!--axe 3 tilt forward/back -->
<axe simulateMouseMove="x"
threshold="50"
divisor="30" /> <!--axe 4 title left/right -->
<axe threshold="100"
type="exponential"
startPulse="1"
endPulse="20"
posAction="RR Item Down"
negAction="RR Item Up" /> <!-- axe 5 Twist -->
<buttons>
<button simulateMouseButton="left" />
<button downAction="RR Cancel"
upAction="" />
</buttons>
</deviceContext>
</deviceContexts>
<contexts>
<context name="Default"
deviceContext="Media" />
<context name="Media"
deviceContext="Media" />
<context name="Player"
deviceContext="Player" />
</contexts>
<actions>
<sendWindowMessage name="Context Up"
type="CopyData"
window="SpaceNavigatorDriver"
message="CONTEXT;Up"/>
<sendWindowMessage name="Context Down"
type="CopyData"
window="SpaceNavigatorDriver"
message="CONTEXT;Down"/>
<sendWindowMessage name="RR Volume Up"
type="CopyData"
window="RoadRunner"
message="VOL+"/>
<sendWindowMessage name="RR Volume Down"
type="CopyData"
window="RoadRunner"
message="VOL-"/>
<sendWindowMessage name="RR Cancel"
type="CopyData"
window="RoadRunner"
message="CANCEL"/>
<sendWindowMessage name="RR Play/Pause"
type="CopyData"
window="RoadRunner"
message="PLAY"/>
<sendWindowMessage name="RR Next"
type="CopyData"
window="RoadRunner"
message="NEXT"/>
<sendWindowMessage name="RR Prev"
type="CopyData"
window="RoadRunner"
message="PREV"/>
<sendWindowMessage name="RR Item Up"
type="CopyData"
window="RoadRunner"
message="UP"/>
<sendWindowMessage name="RR Item Down"
type="CopyData"
window="RoadRunner"
message="DOWN"/>
<!--
"BYVAR;VISURUNNING;RUNVISU<<STOPVISU",@FULL_VISU@
-->
<sendWindowMessage name="RR FullVisu"
type="CopyData"
window="RoadRunner"
message="VISU"/>
<keyPress name="Copy">
<key>17</key>
<key>67</key>
</keyPress>
<keyPress name="Paste">
<key>17</key>
<key>86</key>
</keyPress>
</actions>
</snConfig>