WoW:API ItemTextNextPage: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(upgraded deprecated template)
m (Move page script moved page API ItemTextNextPage to API ItemTextNextPage without leaving a redirect)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{wowapi}}
{{wowapi}}
<center>'''ItemTextNextPage''' - ''Documentation by [[User:Flickering|Flickering]]''</center>


Request the next page of an Item Text
Request the next page of an Item Text
Line 10: Line 9:


=== Returns ===
=== Returns ===
:<i>nil</i>
:''nil''




Line 16: Line 15:
: This simply requests the next page, you will receive an ITEM_TEXT_READY event when the new page is ready.
: This simply requests the next page, you will receive an ITEM_TEXT_READY event when the new page is ready.


: Try only to call this after receiving an ITEM_TEXT_READY event for the current page, and dont call it IN the event handler for that event, things get a little odd (Looks like a synchronization issue in the client) and your page cache might get corrupted.
: Try only to call this after receiving an ITEM_TEXT_READY event for the current page, and don't call it IN the event handler for that event, things get a little odd (Looks like a synchronization issue in the client) and your page cache might get corrupted.


: Does nothing if called while viewing the last page.
: Does nothing if called while viewing the last page.

Latest revision as of 04:46, 15 August 2023

WoW API < ItemTextNextPage

Request the next page of an Item Text

ItemTextNextPage()

Parameters[edit]

Arguments[edit]

()

Returns[edit]

nil


Details[edit]

This simply requests the next page, you will receive an ITEM_TEXT_READY event when the new page is ready.
Try only to call this after receiving an ITEM_TEXT_READY event for the current page, and don't call it IN the event handler for that event, things get a little odd (Looks like a synchronization issue in the client) and your page cache might get corrupted.
Does nothing if called while viewing the last page.