Vectric Lua Interface for Gadgets: Difference between revisions

From SDK
Jump to navigation Jump to search
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[File:Back.jpg|right|50px|link=Main Page]]
[[File:Back.jpg|right|50px|link=Main Page]]
[[Category:SDK]]
[[Category:SDK]]
======''Version 3.0''======
======''Version 3.1''======
'''Please Note: ''The base material for the contents found in this WiKi was sourced from Vectric Lua Interface for Gadgets, version 10.0, published 21st August 2019. by Vectric Ltd.'''''
'''Please Note: ''The base material for the contents found in this WiKi was sourced from Vectric Lua Interface for Gadgets, version 11.0, published 18st October 2021. by Vectric Ltd.'''''


::Most current document and sample Gadgets can be downloaded from Vertric at [https://gadgets.vectric.com/developerinfo.html Vertric Developer Information ]
::Most current document and sample Gadgets can be downloaded from Vertric at [https://gadgets.vectric.com/developerinfo.html Vertric Developer Information ]
Line 8: Line 8:
<p>The Script interface and associated documentation is designed for people who are familiar with programming and is provided as a development tool for such people. It is extremely important to understand that Vectric cannot offer individual support for people wanting to write scripts. This documentation and the associated example scripts available from the [https://www.vectric.com Vectric web site] are the only way you can learn about the script interface and develop your own gadgets. The appropriate area on the [http://forum.vectric.com/index.php Vectric forum] may also be useful for asking questions of other users.</p>
<p>The Script interface and associated documentation is designed for people who are familiar with programming and is provided as a development tool for such people. It is extremely important to understand that Vectric cannot offer individual support for people wanting to write scripts. This documentation and the associated example scripts available from the [https://www.vectric.com Vectric web site] are the only way you can learn about the script interface and develop your own gadgets. The appropriate area on the [http://forum.vectric.com/index.php Vectric forum] may also be useful for asking questions of other users.</p>


<strong>Introduction</strong> [[File:Help.png|right|50px|link=Help:SDK]]
<strong>Introduction</strong>  


<p>The Script interface and associated documentation is designed for people who are familiar with
<p>The Script interface and associated documentation is designed for people who are familiar with
Line 41: Line 41:
;*[[DocumentVariableList]]  
;*[[DocumentVariableList]]  
;*[[DocumentVariable]]
;*[[DocumentVariable]]
;*[[SDK: Code Examples]]
;*[[JimAndi Toolbox]]
;*[[Wiki Toolbox]]




[[File:Back.jpg|right|50px|link=Main Page]]
[[File:Back.jpg|right|50px|link=Main Page]]

Revision as of 21:32, 9 March 2024

Back.jpg
Version 3.1

Please Note: The base material for the contents found in this WiKi was sourced from Vectric Lua Interface for Gadgets, version 11.0, published 18st October 2021. by Vectric Ltd.

Most current document and sample Gadgets can be downloaded from Vertric at Vertric Developer Information
Vectric SDK ver 10.0

The Script interface and associated documentation is designed for people who are familiar with programming and is provided as a development tool for such people. It is extremely important to understand that Vectric cannot offer individual support for people wanting to write scripts. This documentation and the associated example scripts available from the Vectric web site are the only way you can learn about the script interface and develop your own gadgets. The appropriate area on the Vectric forum may also be useful for asking questions of other users.

Introduction

The Script interface and associated documentation is designed for people who are familiar with programming and is provided as a development tool for such people. It is extremely important to understand that Vectric cannot offer individual support for people wanting to write scripts. This documentation and the associated example scripts available from the Vectric web site are the only way you can learn about the script interface and develop your own gadgets. The appropriate area on the Vectric forum may also be useful for asking questions of other users.

This document lists the objects (classes) available to Lua scripts (Gadgets) from VCarve Pro V7.5 and Aspire V4.5

An object in Lua can have both methods and properties. A method is called using ‘:’ after the object name e.g. job:Refresh2DView(), a property is accessed via ‘.’ e.g. job.Exists . Properties can be either read only (R/O i.e Get Values) or read / write (R/W - Get/Set Values).

Software Development Kit


Back.jpg