Scripting Moderators thisdp Posted November 22, 2017 Author Scripting Moderators Share Posted November 22, 2017 18 minutes ago, SmoothGarlic said: Hi, i hope my eyes aren't broken When i look at this GUI i see a blure effect or something, can u fix that or how can i fix that ? I use the updated version. https://imgur.com/a/4rWPr I will fix it after i return home. It seems that dx gui in render target will cause this problem. Link to comment
Scripting Moderators thisdp Posted November 24, 2017 Author Scripting Moderators Share Posted November 24, 2017 On 2017/11/23 at 05:47, SmoothGarlic said: Hi, i hope my eyes aren't broken When i look at this GUI i see a blure effect or something, can u fix that or how can i fix that ? I use the updated version. https://imgur.com/a/4rWPr updatedgs and you will find the problem solved. Link to comment
SmoothGarlic Posted November 24, 2017 Share Posted November 24, 2017 Not by me, still blurred Link to comment
Scripting Moderators thisdp Posted November 24, 2017 Author Scripting Moderators Share Posted November 24, 2017 (edited) 44 minutes ago, SmoothGarlic said: Not by me, still blurred updatedgs and is there something different? Edited November 24, 2017 by thisdp Link to comment
SmoothGarlic Posted November 24, 2017 Share Posted November 24, 2017 Now it fixed, thank you man ! Link to comment
Scripting Moderators thisdp Posted November 24, 2017 Author Scripting Moderators Share Posted November 24, 2017 21 minutes ago, SmoothGarlic said: Now it fixed, thank you man ! my pleasure. and thanks for your advice. Link to comment
ahmedo01 Posted November 26, 2017 Share Posted November 26, 2017 I wanna ask is there a sorting system in gridlist? 1 Link to comment
Scripting Moderators thisdp Posted November 26, 2017 Author Scripting Moderators Share Posted November 26, 2017 (edited) 2 hours ago, ahmedo01 said: I wanna ask is there a sorting system in gridlist? just table.sort export table and sort it rowData = dgsDxGUIGetProperty(gridlist,"rowData") table.sort(rowData,function(a,b) return a[1][1]>b[1][1] end) dgsDxGUISetProperty(gridlist,"rowData",rowData) Edited November 26, 2017 by thisdp Link to comment
Daniels69 Posted November 26, 2017 Share Posted November 26, 2017 keep getting this error atm, it's the latest update.. and the dgs elements don't load, before i updated every thing was working, now it won't..http://prntscr.com/hfmrov Link to comment
Scripting Moderators thisdp Posted November 27, 2017 Author Scripting Moderators Share Posted November 27, 2017 12 hours ago, Daniels69 said: keep getting this error atm, it's the latest update.. and the dgs elements don't load, before i updated every thing was working, now it won't..http://prntscr.com/hfmrov fixed Link to comment
SmoothGarlic Posted November 28, 2017 Share Posted November 28, 2017 (edited) Something with the last update is wrong https://imgur.com/a/Ymfdb (no button, look debug) /edit I downgradet via github now it work again. Edited November 28, 2017 by SmoothGarlic Link to comment
Scripting Moderators thisdp Posted November 29, 2017 Author Scripting Moderators Share Posted November 29, 2017 13 hours ago, SmoothGarlic said: Something with the last update is wrong https://imgur.com/a/Ymfdb (no button, look debug) /edit I downgradet via github now it work again. Delete colorSchemeLoad.txt, and updatedgs. Link to comment
GodOfPenguins Posted December 4, 2017 Share Posted December 4, 2017 After last update. Deleting colorSchemeLoad did not help. 1 1 Link to comment
Scripting Moderators thisdp Posted December 4, 2017 Author Scripting Moderators Share Posted December 4, 2017 (edited) 4 hours ago, Taka said: After last update. Deleting colorSchemeLoad did not help. Oh , I think it was my mistake.Sry for it and it will be fixed after 14 hours. Thanks for your report. Edited December 4, 2017 by thisdp 1 Link to comment
Scripting Moderators thisdp Posted December 5, 2017 Author Scripting Moderators Share Posted December 5, 2017 18 hours ago, Taka said: After last update. Deleting colorSchemeLoad did not help. Fixed. Thank you. 1 Link to comment
Scripting Moderators thisdp Posted December 8, 2017 Author Scripting Moderators Share Posted December 8, 2017 We got new update version. see detail: http://angel.mtaip.cn:233/dgsUpdate 1 Link to comment
Ahmed Ly Posted December 8, 2017 Share Posted December 8, 2017 5 hours ago, thisdp said: We got new update version. see detail: http://angel.mtaip.cn:233/dgsUpdate good job , thanks 1 Link to comment
anchor Posted December 11, 2017 Share Posted December 11, 2017 i wonder how to create a grid like the calendar in the preview, it's really hard to set the position of the date 1 Link to comment
Scripting Moderators thisdp Posted December 11, 2017 Author Scripting Moderators Share Posted December 11, 2017 5 minutes ago, anchor said: i wonder how to create a grid like the calendar in the preview, it's really hard to set the position of the date In the preview, I use scroll pane and button to realize . 1 1 Link to comment
anchor Posted December 12, 2017 Share Posted December 12, 2017 i think onClientDgsDxComboBoxSelect 2nd params is not working properly now, it doesnt return selected item. i got this bug after update the latest dgs Spoiler local qiw = DGS:dgsDxCreateComboBox(0.1, 0.3, 0.20, 0.04, true) DGS:dgsDxComboBoxAddItem( qiw, "1" ) DGS:dgsDxComboBoxAddItem( qiw, "2" ) DGS:dgsDxComboBoxAddItem( qiw, "3" ) addEventHandler( "onClientDgsDxComboBoxSelect", qiw, function ( prev, current ) outputChatBox( current ) end ) Link to comment
Scripting Moderators thisdp Posted December 12, 2017 Author Scripting Moderators Share Posted December 12, 2017 55 minutes ago, anchor said: i think onClientDgsDxComboBoxSelect 2nd params is not working properly now, it doesnt return selected item. i got this bug after update the latest dgs Reveal hidden contents local qiw = DGS:dgsDxCreateComboBox(0.1, 0.3, 0.20, 0.04, true) DGS:dgsDxComboBoxAddItem( qiw, "1" ) DGS:dgsDxComboBoxAddItem( qiw, "2" ) DGS:dgsDxComboBoxAddItem( qiw, "3" ) addEventHandler( "onClientDgsDxComboBoxSelect", qiw, function ( prev, current ) outputChatBox( current ) end ) I have exchanged the place between the two params Link to comment
SmoothGarlic Posted December 13, 2017 Share Posted December 13, 2017 DgsDxCreateCycleHitShape What does t and what are the parameters ? 1 Link to comment
Scripting Moderators thisdp Posted December 14, 2017 Author Scripting Moderators Share Posted December 14, 2017 I recommend you not to use this function, because it will be abandoned soon. In stead, it will be replaced by another function which have more options and functions. Link to comment
Scripting Moderators thisdp Posted December 19, 2017 Author Scripting Moderators Share Posted December 19, 2017 Sry everyone, I am so busy with my study these days. This project will slow down for several days. But I promise, when I came back, it will be a big update ( DGS Version 3.0 ) with a lot of new properties and functions. 1 2 2 Link to comment
Scripting Moderators thisdp Posted December 20, 2017 Author Scripting Moderators Share Posted December 20, 2017 Thanks for your supports. 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now