User:Jaime Prilusky/Test/JSmolExtensionExamples
From Proteopedia
(Difference between revisions)
Line 2: | Line 2: | ||
<StructureSection load='3rec' size='340' side='right' caption='Caption for this structure' scene=''> | <StructureSection load='3rec' size='340' side='right' caption='Caption for this structure' scene=''> | ||
+ | The code below will create a green link (Proteopedia's links that interact with applets are green) with the text 'Turn on labels' that will execute the script inside <script> and </script> | ||
+ | <pre> | ||
<jmol> | <jmol> | ||
<jmolLink> | <jmolLink> | ||
Line 8: | Line 10: | ||
</jmolLink> | </jmolLink> | ||
</jmol> | </jmol> | ||
+ | </pre> | ||
+ | <jmol> | ||
+ | <jmolLink> | ||
+ | <script> select all; labels on; </script> | ||
+ | <text>Turn on labels</text> | ||
+ | </jmolLink> | ||
+ | </jmol> | ||
+ | |||
+ | |||
+ | Replacing 'jmolLink' by 'jmolButton' will draw a button. | ||
+ | <pre> | ||
<jmol> | <jmol> | ||
<jmolButton> | <jmolButton> | ||
Line 15: | Line 28: | ||
</jmolButton> | </jmolButton> | ||
</jmol> | </jmol> | ||
+ | </pre> | ||
+ | |||
+ | <jmol> | ||
+ | <jmolButton> | ||
+ | <script> select all; labels off; </script> | ||
+ | <text>Turn off labels</text> | ||
+ | </jmolButton> | ||
+ | </jmol> | ||
+ | |||
</StructureSection> | </StructureSection> | ||
== References == | == References == | ||
<references/> | <references/> |
Revision as of 03:32, 14 July 2020
Plain examples for JSMolExtension
|