Search found 189 matches

by Serkan
Tue Feb 25, 2020 5:13 pm
Forum: News And Announcements
Topic: SDStudio Alpha (WIP) Version 0.0.143 Release
Replies: 6
Views: 10809

Re: SDStudio Alpha (WIP) Version 0.0.143 Release

The main goal is not making an application that is better than application X or Y or Z, As a developer i am using many different IDEs But none of them perfect for everthing , The 'Best' or 'Better' is relative terms nowadays Time is very precious as well , therefore Best tool is the tool that does r...
by Serkan
Sun Feb 16, 2020 6:38 pm
Forum: News And Announcements
Topic: SDStudio Alpha (WIP) Version 0.0.143 Release
Replies: 6
Views: 10809

SDStudio Alpha (WIP) Version 0.0.143 Release

SDStudio version 0.0.143 is ready to download As of the release of the version 0.0.40 , Alpha versions of the SDStudio will be released publicly Everyone can download and evaluate the SDStudio application and post their ideas or suggestions or bug reports etc.. What's New In This Version New class C...
by Serkan
Tue Feb 04, 2020 6:43 pm
Forum: Suggestions And Feature Requests
Topic: Debug Traceback
Replies: 3
Views: 9080

Re: Debug Traceback

Done ,
You can load external script files and get debug info in IDE
You can also load script files with UTF-8 encoding and UTF-16 (Unicode) encoding

This works a little different from the require function , therefore this will not return a lua variable.


debug_file.png
by Serkan
Thu Jan 30, 2020 8:39 pm
Forum: Suggestions And Feature Requests
Topic: Debug Traceback
Replies: 3
Views: 9080

Re: Debug Traceback

This requires a custom function , the require executes the code out of the box therefore we can not track it Especially after next version update (With Multi Thread Addition) it will be dangerous to use that function A custom "Application:LoadScript" will be available with the next version to execut...
by Serkan
Thu Jan 30, 2020 5:51 pm
Forum: Bug Reports
Topic: [Bug]Crash When Iterating Over Global Table
Replies: 3
Views: 13676

Re: [Bug]Crash When Iterating Over Global Table

Can you please share a simple demo of the project that you experience the issues
by Serkan
Sun Jan 19, 2020 7:33 pm
Forum: Suggestions And Bug Reports
Topic: __Graphics.DrawString
Replies: 8
Views: 5722

Re: __Graphics.DrawString

For now you can use a 16x16 png icon for that The internal text conversion function takes a code page attribute and ,it requires CP_SYMBOL to be specified in order to display charaters from symbolic fonts You can also use GDI functions to draw symbols as well ,if you are familiar with it Maybe i can...
by Serkan
Sun Jan 19, 2020 2:41 pm
Forum: Suggestions And Bug Reports
Topic: __Graphics.DrawString
Replies: 8
Views: 5722

Re: __Graphics.DrawString

Try replacing the "ü" with

Code: Select all

tostring("\252")
withing the scope of following line

Code: Select all

if(m_Checked == true) then
by Serkan
Sun Jan 19, 2020 11:29 am
Forum: Suggestions And Bug Reports
Topic: __Graphics.DrawString
Replies: 8
Views: 5722

Re: __Graphics.DrawString

Can you copy the Graphics.a within the attached zip file
to follwing path and try again ?

Code: Select all

{ProgramFiles}\AmsPluginMaker\Data\Modules\Graphics
by Serkan
Sat Jan 18, 2020 9:26 pm
Forum: General Discussion
Topic: Object plugin
Replies: 14
Views: 11410

Re: Object plugin

Your question is not clear , do you want to embed another control to your object plugin ? This is possible ,but problems might appear since the host application owns the control changing parent will cause problems steps are like below create your object window get handle of the control you want to h...
by Serkan
Sat Jan 18, 2020 9:09 pm
Forum: Suggestions And Bug Reports
Topic: __Graphics.DrawString
Replies: 8
Views: 5722

Re: __Graphics.DrawString

What did you mean by incorrectly ? It draws nothing at all , or partial ? It uses default codepage therefore if your pc default language is not Russian then this might happen But this is a common issue with ANSI applications ,since the data (string) comes from an ANSI built application Plugins or mo...