Search found 1181 matches

by Bugala
Fri Mar 22, 2024 6:15 pm
Forum: Newbie questions
Topic: Alt + Enter crashes on dual monitor setup
Replies: 8
Views: 4212

Re: Alt + Enter crashes on dual monitor setup

Answering to this to help you remember better. Hollywood 10 still has the problem that when starting with dual monitor setup, it might happen that you have to press "Alt" + "Enter" to get anything to show. I just released demo version in Steam and someone I asked to test it out t...
by Bugala
Fri Mar 22, 2024 5:11 pm
Forum: Newbie questions
Topic: Game creation questions...
Replies: 2
Views: 254

Re: Game creation questions...

"To Fix the fps to a certain rate" With SetInterval Function you can lock FPS rate. In SetInterval you tell how often, in MilliSeconds, the Function is to be executed, since 1 Second is 1000 Milliseconds, for example to get max 60 FPS rate, you would use 1000/60 = 16.666... = 17 Ms to lock...
by Bugala
Fri Mar 22, 2024 12:58 pm
Forum: General programming
Topic: Two screen problem with Hollywood.
Replies: 0
Views: 86

Two screen problem with Hollywood.

I tried to search this a bit, but couldnt find it. There was some problem with Hollywood, which had to do using two screens. I remember someone talked about that before too, but I have forgotten what exactly the problem was, and how to solve it. Anyone recalls this or have encountered it himself? I ...
by Bugala
Wed Mar 06, 2024 9:12 am
Forum: Wishlist
Topic: IsNum command for string commands.
Replies: 2
Views: 829

Re: IsNum command for string commands.

Ah, thanks. Didnt realise there was one. Got thrown off by IsAlNum and was looking for IsNum.
by Bugala
Sun Mar 03, 2024 5:53 pm
Forum: Wishlist
Topic: IsNum command for string commands.
Replies: 2
Views: 829

IsNum command for string commands.

There is
IsAlpha()
IsAlNum()

commands to check if string pos[n] is Alpha or AlphaNumeric character, but there is no option to just check if it is Simply Numeric.

You can get this done by first checking IsAlNum and if true, then checking if IsAlpha is false, but would be better to have simply IsNum()
by Bugala
Sun Mar 03, 2024 1:51 pm
Forum: Wishlist
Topic: SetEventHandler to have certain Function Event.
Replies: 0
Views: 101

SetEventHandler to have certain Function Event.

Not sure this should be added to SetEventHandler necessarily, but maybe have something similar then. Idea being that it would be great if I could have eventhandler in case a specific function is called, or some specific condition is met. It would be even better if it could be triggered by any functi...
by Bugala
Sun Mar 03, 2024 12:25 pm
Forum: Newbie questions
Topic: Missing mouse selection
Replies: 4
Views: 225

Re: Missing mouse selection

Reason for missing mouseclicks could be that your machine is not fast enough. To explain the point very simply. When program executes, it basically goes: DisplayGrid() IsLeftMouse() DisplayGrid() IsLeftMouse() DisplayGrid() IsLeftMouse() ... Now this leftmouse is checked only when it is executing Is...
by Bugala
Sat Mar 02, 2024 8:02 pm
Forum: General programming
Topic: A way to send a table to a button when taking functions from a table list
Replies: 0
Views: 174

A way to send a table to a button when taking functions from a table list

To demonstrate my problem that I am trying to figure out a solution, here is some code: TempVar = "something" Connectors = {} For n=0 To 5 Connectors[n] = {var} Next AllButtons = { [0] = {text="button 1", Func = {OnMouseUp = Function() DebugPrint("Button 1 Clicked") End...
by Bugala
Thu Feb 22, 2024 8:39 pm
Forum: RapaGUI
Topic: Change colors in a button
Replies: 7
Views: 333

Re: Change colors in a button

@JPV

ah, you are right, I missed this was in the RapaGUI subsection.

@papiosaur

My answer was about Hollywood general button commands, not about RapaGUI ones. I haven't used RapaGUI at all, so don't know answer to your question.
by Bugala
Thu Feb 22, 2024 11:35 am
Forum: RapaGUI
Topic: Change colors in a button
Replies: 7
Views: 333

Re: Change colors in a button

Yes and No. Buttons themselves dont have any colors, or text. But in practice you make graphics that represent a button. you have two ways to do it: 1. You can attach your button into some graphics. as example: [id] = MakeButton(id, #LAYERBUTTON, layerid, exactcoll, noautohide, t Whic in practice co...