CurrentExecPage - hossimo/GMA3Plugins GitHub Wiki
Page
CurrentExecPage() :Brief:
Returns a Page object for the current selected page.
Paramiters:
Name | Type | Description | Optional |
---|
Returns:
Type | Description |
---|---|
Page | Page Object for the selected Page |
Examples:
local page = CurrentExecPage();
Echo(page.index .. " - " .. page.name) -- e.g. "1 - Page 1"
page.name = "New Name"
Echo(page.index .. " - " .. page.name) -- "1 - New Name