WoW:API ChangeActionBarPage: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Changes the current action button set.)
 
mNo edit summary
Line 39: Line 39:
----
----
{{Template:WoW API}}
{{Template:WoW API}}
[[Category:API Functions|Action Functions]]
[[Category:API Functions|ChangeActionBarPage]]
[[Category:API Action Functions|ChangeActionBarPage]]

Revision as of 18:18, 27 August 2005

ChangeActionBarPage -Documentation by The Nerd Wonder

Changes the current action button set.


Arguments


No arguments are passed. This function checks the current value of the global CURRENT_ACTIONBAR_PAGE and sets the action bar to show that page. Possible page numbers are in the range 1 - NUM_ACTIONBAR_PAGES.


Returns
nil

Example
function ActionBar_PageUp()
   CURRENT_ACTIONBAR_PAGE = CURRENT_ACTIONBAR_PAGE + 1;
   if ( CURRENT_ACTIONBAR_PAGE > NUM_ACTIONBAR_PAGES ) then
      CURRENT_ACTIONBAR_PAGE = 1;
   end
   ChangeActionBarPage();
end
Result

This function does the same thing as pressing the Page Up button. It increments CURRENT_ACTIONBAR_PAGE, checks for a valid page number, then calls ChangeActionBarPage() to change the action bar.

This function can be found in Interface/FrameXML/ActionButton.lua.


Details
Changes the current action button set.

Template:WoW API