Kodi Community Forum
Run python scripts from 'my programs' - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+--- Thread: Run python scripts from 'my programs' (/showthread.php?tid=10447)



- vaj - 2005-03-07

is there ayway to run python scripts from inside 'my programs'? i tried listing them in the xml config but that seems to expect xbe's only. is there a 'wrapper xbe' that will play the scripts?

thanks!


- thor918 - 2005-03-07

<control>
<description>test.py script button</description>
<type>button</type>
<id>12</id>
<posx>60</posx>
<posy>342</posy>
<label>15110</label>
<font>font13</font>
<onleft>10</onleft>
<onright>10</onright>
<onup>8</onup>
<ondown>2</ondown>
<script>q:\scripts\test.py</script>
</control>

use the script tag


- vaj - 2005-03-11

thanks.. appreciate it.