Search found 1305 matches

by Bugala
Fri Feb 14, 2025 9:30 pm
Forum: General programming
Topic: StartTimer slows down more times it is used.
Replies: 3
Views: 195

Re: StartTimer slows down more times it is used.

It was a matter of independence why I wanted to start a new timer all the time, not needing to rely on anything outside, but due to slowdown I am making a system with just one timer. Also since I think I once asked about timers something and I think Andreas said it is not a problem to start multiple...
by Bugala
Thu Feb 13, 2025 4:08 pm
Forum: Wishlist
Topic: Wishlist: t = GetDirectoryAsTable(path)
Replies: 2
Views: 241

Re: Wishlist: t = GetDirectoryAsTable(path)

Just couple of lines from the whole: Window.DropFileToAWindow(WindowID, Action) Project.AddFilesToDirectory(DirItem, Action.DropFiles, DirShowing) ... Function Project.AddFilesToDirectory(DirItem, T_Files, Path) For Local n = 0 To TableItems(T_Files)-1 Local File = T_Files[n] Local t = GetFileAttrib...
by Bugala
Thu Feb 13, 2025 1:00 pm
Forum: Wishlist
Topic: Wishlist: t = GetDirectoryAsTable(path)
Replies: 2
Views: 241

Wishlist: t = GetDirectoryAsTable(path)

I just noticed there is no way to read Directory in such a way that it would return a table of all the files. Main point here being consistency with DropFile option. As if I drop more than one file to a window, it will give me a table containing every files path and type. Based upon this I made a sy...
by Bugala
Thu Feb 13, 2025 11:22 am
Forum: General programming
Topic: StartTimer slows down more times it is used.
Replies: 3
Views: 195

StartTimer slows down more times it is used.

Example code: StartTimer(0) For n=1 To 100000 StartTimer(n) If n=20000 Or n=40000 Or n=60000 Or n=80000 Or n=100000 Then DebugPrint(GetTimer(0)) Next DebugPrint("done") result: 1598 8105 19074 34303 54059 done Is this supposed to be this way? I did this test since I am making an Audio Orga...
by Bugala
Sun Feb 09, 2025 7:18 pm
Forum: Newbie questions
Topic: How to move graphics over non-hollywood screen?
Replies: 4
Views: 600

Re: How to move graphics over non-hollywood screen?

Thanks! This will do.

I actually thought of moving display myself too, but I forgot that you were able to make them transparent, for which reason I thought it would be silly looking moving a rectangle display all around, but with transparency this will work nicely for the purpose.
by Bugala
Sun Feb 09, 2025 11:33 am
Forum: Windows IDE
Topic: Error shows wrong file. (triggered by control code i guess)
Replies: 3
Views: 3362

Re: Error shows wrong file. (triggered by control code i guess)

Not reproducible since Im not sure what triggered it, so cant test it anymore. Point being that suddenly it happened that it showed the error in wrong main file, but I first didn't realise that it was only opening the wrong main file, but still telling the correct error. It continued doing this way,...
by Bugala
Sun Feb 09, 2025 11:20 am
Forum: RapaGUI
Topic: How to dynamically add Radio items, and a page.
Replies: 11
Views: 10157

Re: How to dynamically add Radio items, and a page.

Thanks. Good to know it was a bug and not a skill issue then. Was wondering that how cant I figure out how this thing works, but being a bug explains it.
by Bugala
Sat Feb 08, 2025 8:47 pm
Forum: Newbie questions
Topic: How to move graphics over non-hollywood screen?
Replies: 4
Views: 600

Re: How to move graphics over non-hollywood screen?

In this case windows desktop, as I am planning a program for my own use to find sounds/music, but might release it for others too. Changing Mousepointer came to my mind too, but unless you can change the Windows own mousepointers looks somehow in Hollywood, then it wont work, as when I tested puttin...
by Bugala
Sat Feb 08, 2025 2:13 pm
Forum: Newbie questions
Topic: How to move graphics over non-hollywood screen?
Replies: 4
Views: 600

How to move graphics over non-hollywood screen?

Figured I ask from here instead of start digging from manual. But assume I have two Hollywood window displays opened. Both windows are 100x100 in size. Window 1 resides at co-ordinates 10, 10. Window 2 resides at co-ordinates 800x800. To give more familiar example, suppose window 1 and window 2 are ...
by Bugala
Sat Feb 08, 2025 1:59 pm
Forum: Wishlist
Topic: Double clicks on words with '_' are not fully selected [Windows IDE]
Replies: 2
Views: 446

Re: Double clicks on words with '_' are not fully selected [Windows IDE]

Theres a reason to this I suppose. Point being that "_" is often used to separate different words, as in, you cant have space in your variables, like you cant have a variable: ABC DEF 123 = 5 Therefore it is quite common that "_" is used instead of space. Therefore there comes th...