tactilefeedback/tactileactionplugin/data/tactile.rul
changeset 0 d54f32e146dd
equal deleted inserted replaced
-1:000000000000 0:d54f32e146dd
       
     1 <script xmlns="http://www.nokia.com/ns/cep/script/1.0/"
       
     2 xmlns:cep="http://www.nokia.com/ns/cep/1.0/">
       
     3     <if>
       
     4         <or>
       
     5             <equals>
       
     6                 <contextRef source='Call' type='State'/>
       
     7                 <string>Connected</string>
       
     8             </equals>
       
     9             <equals>
       
    10                 <contextRef source='Call' type='State'/>
       
    11                 <string>Dialling</string>
       
    12             </equals>
       
    13     	</or>
       
    14         <actions>
       
    15             <!-- Tactile feedback off -->
       
    16             <Tactile Feedback='OFF'/>	
       
    17         </actions>
       
    18     </if>
       
    19     <elseIf>
       
    20         <or>
       
    21             <equals>
       
    22                 <contextRef source='Call' type='State'/>
       
    23                 <string>None</string>
       
    24             </equals>
       
    25             <equals>
       
    26                 <contextRef source='Call' type='State'/>
       
    27                 <string>Disconnecting</string>
       
    28             </equals>
       
    29         </or>
       
    30         <actions>
       
    31             <!-- Tactile feedback on -->
       
    32             <Tactile Feedback='ON'/>
       
    33         </actions>
       
    34     </elseIf>
       
    35 </script>