| 123456789101112131415161718192021 |
- package elements.menu {
- public class DefaultCameraIconProperties extends Properties
- {
- public function DefaultCameraIconProperties( json:Object ) {
-
- // the user JSON can override any of these:
- var parent:Properties = new Properties( {
- 'colour': '#0000E0',
- 'text': "Save chart",
- 'javascript-function': "save_image",
- 'background-colour': "#ffffff",
- 'glow-colour': "#148DCF",
- 'text-colour': "#0000ff"
- } );
-
- super( json, parent );
-
- }
- }
- }
|