1
General Discussion / Re: German Weather in combination with TTS?
« on: October 13, 2011, 04:46:09 AM »
Ok, I think I got it now. Thanks for taking the time to explain this to me, James!
Cel
Cel
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
<command id="314" name="Wetter heute" enabled="true" alwaysOn="False" confirm="False" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>Scrape</cmdType>
<cmdString>http://de.wetter.yahoo.com/deutschland/<< your location here >>/</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<cmdString>yw-cond">(.*)</div><dl><dt></cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.Speak</cmdType>
<cmdString>Im Moment {Match.1} und</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<cmdString>Temperatur:</dt><dd>(.*)&deg;C</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.Speak</cmdType>
<cmdString>{Match.1} Grad.</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
</command>