Page

An Action Wheel container which is used to store up to 8 actions

Page.newAction

Adds a new Action on the selected Page's index
If no index is given it is added in the first available index
overload 1:
Page:newAction()
Method Property Fluent Description Representation
Return Value an Action
overload 2:
Page:newAction(index)
Method Property Fluent Description Representation
index accepts an Integer
Return Value an Action

Page.getAction

Example by applejuice:
local action = myPage:getAction(1)
Gets an Action from the Page's given index
overload 1:
Page:getAction(index)
Method Property Fluent Description Representation
index accepts an Integer
Return Value an Action

Page.setAction

Sets an Action in the Page's given index
If index is -1,
the action will be set in the latest empty index
overload 1:
Page:setAction(index, action)
Method Property Fluent Description Representation
index accepts an Integer
action accepts an Action
Return Value nil
a a