HTML: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
HTML <br /> | |||
:::[''statements''] <br /> | :::[''statements''] <br /> | ||
End | End HTML | ||
== Description == | == Description == | ||
Line 12: | Line 12: | ||
'This sample shows how to add a button at runtime. | 'This sample shows how to add a button at runtime. | ||
HTML | |||
<button onmousedown="button1()">Button 1</button> | <button onmousedown="button1()">Button 1</button> | ||
<div id="box">Box</div> | <div id="box">Box</div> | ||
End | End HTML | ||
Function button1() | Function button1() | ||
box. | box.innerHTML= event.screenX & ", " & event.screenY | ||
End Function | End Function | ||
</pre> | </pre> |
Revision as of 12:46, 2 September 2012
HTML
- [statements]
- [statements]
End HTML
Description
The HTML statement allows you to ember pure HTML in your ap. This allows you to have additional functionality to your app. Statements within this block must follow all HTML rules. They are ignored by App Studio itself. For more information, see the Tech Note ‘The role of JavaScript and WebKit’.
Example
'This sample shows how to add a button at runtime. HTML <button onmousedown="button1()">Button 1</button> <div id="box">Box</div> End HTML Function button1() box.innerHTML= event.screenX & ", " & event.screenY End Function
Output
(a button and a box are displayed. Click the button and text is put in the box)