Related changes

Jump to navigation Jump to search

Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 | 60 | 90 | 120 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 06:54, 14 September 2025
   
Page name:
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

11 September 2025

N    09:47  Template:DGS Plugin/Render Target Functions‎‎ 2 changes history 0 [Liwa‎ (2×)]
     
09:47 (cur | prev) −556 Liwa talk contribs (→‎Syntax) Tag: Blanking
N    
09:47 (cur | prev) +556 Liwa talk contribs (Created page with "==Syntax== <syntaxhighlight lang="lua"> element dgsCreateRenderTarget( int width, int height [, bool isTransparent = true ] ) </syntaxhighlight> ===Required Arguments=== *'''width:''' The width of the render target in pixels. *'''height:''' The height of the render target in pixels. ===Optional Arguments=== *'''isTransparent:''' A boolean indicating if the render target should support transparency. Defaults to '''true'''. ===Returns=== Returns a render target element if...")
     09:40  Template:DGSFUNCTIONS diffhist +138 Liwa talk contribs (→‎Other Plugins)

24 August 2025

     05:53  DgsMediaLoadMedia diffhist +74 Thisdp talk contribs (→‎Required Arguments)

23 August 2025

N    22:59  DgsGIFGetSize diffhist +1,846 Lettify talk contribs (Created page with "__NOTOC__ {{Client function}} Returns the dimensions (width and height) of a GIF element created using dgsCreateGIF. The values correspond to the original size extracted from the GIF file during loading. ==Syntax== <syntaxhighlight lang="lua"> int int dgsGIFGetSize( element gif ) </syntaxhighlight> ===Required Arguments=== *'''gif: ''' The '''dgs-dxgif''' type element you want to get the size of. ===Returns=== Returns two integers corresponding to ''width'' an...")
N    10:28  DgsCreateGIF‎‎ 2 changes history +707 [Thisdp‎ (2×)]
     
10:28 (cur | prev) −5 Thisdp talk contribs
N    
10:27 (cur | prev) +712 Thisdp talk contribs (Created page with "__NOTOC__ {{Client function}} This function creates a GIF interface plugin. ==Syntax== <syntaxhighlight lang="lua"> element dgsCreateGIF( string pathOrRaw ) </syntaxhighlight> ===Required Arguments=== *'''pathOrRaw: ''' A string representing the path to your GIF file, or the raw GIF data ===Returns=== Returns a dgs-dxgif element (DGS Plugin Type)[ dgs-dxgif (Element Type) ] if succeed, ''false'' otherwise ==Example== <syntaxhighlight lang="lua"> DGS = exports.dg...")
N    10:23  Template:DGS Plugin/Gif diffhist +262 Thisdp talk contribs (Created page with "*dgsCreateGIF *dgsGIFGetSize *dgsGIFGetImageCount *dgsGIFGetImages *dgsGIFPlay *dgsGIFStop *dgsGIFSetSpeed *dgsGIFGetSpeed *dgsGIFGetPlaying *dgsGIFSetLooped *dgsGIFGetLooped *dgsGIFSetFrameID *dgsGIFGetFrameID")
     10:21  Template:DGSFUNCTIONS diffhist +108 Thisdp talk contribs (→‎Other Plugins)

21 August 2025

     03:29  DgsSVGNodeSetAttribute diffhist +2 Thisdp talk contribs (→‎Example)
     03:06  DgsProgressBarSetMode diffhist +17 Thisdp talk contribs (→‎Required Arguments)

11 July 2025

     04:37  DgsMenuGetItemColor diffhist +437 Thisdp talk contribs (→‎Syntax)

10 July 2025

N    09:09  DgsMenuAddSeparator‎‎ 3 changes history +6,573 [Mohab‎ (3×)]
     
09:09 (cur | prev) −17 Mohab talk contribs
     
08:32 (cur | prev) +231 Mohab talk contribs
N    
08:28 (cur | prev) +6,359 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function adds a separator to a DGS menu. A separator is a visual divider that can be used to organize menu items into logical groups. It can be displayed as a horizontal line or as text. ==Syntax== <syntaxhighlight lang="lua"> int uniqueID, int position dgsMenuAddSeparator ( element menu [, string text, int parentItemID, int position ] ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element to add the separator...")
N    08:53  DgsMenuRemoveItem diffhist +1,255 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function removes an item from a DGS menu element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuRemoveItem ( element menu, int uniqueID ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element from which to remove the item *'''uniqueID:''' The unique ID of the menu item to remove (returned by dgsMenuAddItem) ===Returns=== Returns ''true'' if the item was successfully removed, ''false'' if the item wit...")
N    06:43  DgsMenuGetItemColor diffhist +5,085 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function gets the color of a specific menu item. You can retrieve the colors either as separate RGBA components or as color values. ==Syntax== <syntaxhighlight lang="lua"> int r, int g, int b, int a, int hr, int hg, int hb, int ha dgsMenuGetItemColor ( element menu, int uniqueID ) int normalColor, int hoverColor dgsMenuGetItemColor ( element menu, int uniqueID, bool notSplitColor ) </syntaxhighlight> ===Required Arguments=== *'''menu:...")
N    06:18  DgsMenuSetItemColor diffhist +4,335 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function sets the color of a specific menu item. You can set both the normal and hover colors for the item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuSetItemColor ( element menu, int uniqueID, int r, int g, int b [, int a ] ) bool dgsMenuSetItemColor ( element menu, int uniqueID, int color ) bool dgsMenuSetItemColor ( element menu, int uniqueID, table colors ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS...")
N    06:06  DgsMenuGetItemTextSize diffhist +1,405 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function gets the text size of a specific menu item. ==Syntax== <syntaxhighlight lang="lua"> float, float dgsMenuGetItemTextSize ( element menu, int uniqueID ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) ===Returns=== Returns two floats representing the horizontal and vertical text scale factors, or '...")
N    05:59  DgsMenuSetItemTextSize diffhist +1,762 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function sets the text size of a specific menu item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuSetItemTextSize ( element menu, int uniqueID, float textSizeX [, float textSizeY ] ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) *'''textSizeX:''' The horizontal scale of the text ===Optional Argum...")
N    04:52  DgsMenuGetItemText‎‎ 2 changes history +1,311 [Mohab‎ (2×)]
     
04:52 (cur | prev) −28 Mohab talk contribs
N    
04:49 (cur | prev) +1,339 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function retrieves the displayed text of a menu item. ==Syntax== <syntaxhighlight lang="lua"> string dgsMenuGetItemText ( element menu, int uniqueID ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) ===Returns=== Returns the text string if successful, ''false'' if the item doesn't exist. ==Examples== <sy...")
N    04:51  DgsMenuGetItemCommand‎‎ 3 changes history +1,979 [Mohab‎ (3×)]
     
04:51 (cur | prev) −34 Mohab talk contribs
     
04:51 (cur | prev) −28 Mohab talk contribs
N    
04:44 (cur | prev) +2,041 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function retrieves the command identifier of a menu item. The command is used to identify which action should be performed when the item is selected. ==Syntax== <syntaxhighlight lang="lua"> string dgsMenuGetItemCommand ( element menu, int uniqueID ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) ===Retur...")
N    04:51  DgsMenuSetItemCommand‎‎ 2 changes history +2,205 [Mohab‎ (2×)]
     
04:51 (cur | prev) −28 Mohab talk contribs
N    
04:40 (cur | prev) +2,233 Mohab talk contribs (Created page with "{{client function}} __NOTOC__ This function changes the command identifier of an existing menu item. The command is used to identify the item when it's selected. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuSetItemCommand ( element menu, int uniqueID, string command ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) *'''command:''' Th...")
N    04:51  DgsMenuSetItemText‎‎ 3 changes history +1,953 [Mohab‎ (3×)]
     
04:51 (cur | prev) −28 Mohab talk contribs
     
04:47 (cur | prev) −42 Mohab talk contribs
N    
04:47 (cur | prev) +2,023 Mohab talk contribs (Created page with "{{Client function}} __NOTOC__ This function changes the displayed text of an existing menu item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuSetItemText ( element menu, int uniqueID, string text ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element containing the item *'''uniqueID:''' The unique ID of the menu item (returned by dgsMenuAddItem) *'''text:''' The new text to display for this menu item ===Returns=== Returns ''true'' i...")
N    04:50  DgsMenuHide‎‎ 2 changes history +1,416 [Mohab‎ (2×)]
     
04:50 (cur | prev) −28 Mohab talk contribs
N    
04:28 (cur | prev) +1,444 Mohab talk contribs (Created page with "{{client function}} __NOTOC__ This function hides a DGS menu and cleans up any associated submenus. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMenuHide ( element menu ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element to hide ===Returns=== Returns ''true'' if the menu was hidden successfully, ''false'' otherwise. ==Examples== <syntaxhighlight lang="lua"> loadstring(exports.dgs:dgsImportFunction())()-- load functions -- Create a menu...")
N    04:50  DgsMenuAddItem‎‎ 2 changes history +2,834 [Mohab‎ (2×)]
     
04:50 (cur | prev) −28 Mohab talk contribs
N    
04:32 (cur | prev) +2,862 Mohab talk contribs (Created page with "{{client function}} __NOTOC__ This function adds a new item to a DGS menu. Each item can have text, a command identifier, and can optionally be a child of another item to create submenus. ==Syntax== <syntaxhighlight lang="lua"> int, int dgsMenuAddItem ( element menu, string text, string command [, int parentItemID, int position ] ) </syntaxhighlight> ===Required Arguments=== *'''menu:''' The DGS menu element to add the item to *'''text:''' The text that will be display...")
N    04:17  DgsAddPropertyListener‎‎ 3 changes history +5,218 [Mohab‎ (3×)]
     
04:17 (cur | prev) +9 Mohab talk contribs
     
04:16 (cur | prev) −112 Mohab talk contribs
N    
04:14 (cur | prev) +5,321 Mohab talk contribs (Created page with "{{client function}} __NOTOC__ This function enables monitoring of property changes on DGS elements. When a property that has been added to the listener list changes via dgsSetProperty, it triggers the onDgsPropertyChange event. {{Note|Property listeners only trigger when using dgsSetProperty, not when using specific setter functions}} {{Note|The '''onDgsPropertyChange''' event is only triggered for properties that have been explicitly added to th...")

25 June 2025

N    19:57  DgsMenuShow diffhist +1,629 Alex7202 talk contribs (Create page with example)