Wednesday, May 31, 2023
Saturday, May 6, 2023
✏ _MOUSEBUTTON and GETMOUSE
For both functions, "1" would be returned to indicate that a mouse button is pressed.
Now, both functions return "-1" (i.e. the system constant TRUE) to indicate that a mouse button is pressed.
Unchanged: a "0" (i.e. the system constant FALSE) is returned to indicate that a mouse button is NOT pressed.
In any previously created BAM programs, you will need to change things like "IF _MOUSEBUTTON = 1" to one of:
- "IF _MOUSEBUTTON = TRUE"
- "IF _MOUSEBUTTON = -1"
- "IF _MOUSEBUTTON"
Subscribe to:
Posts (Atom)
🖥 Circular Meander
About Meanders: read this Wikipedia article . This program is based on the image shared by bplus in this post (QB64 Phoenix Edition forum)...
-
This program is a port and mod of Antoni Gual Via's program shared with the "BASIC, QBasic, GWBasic computer programming"'...
-
This program is a port and mod of Steve Justice's program presented in the "Fractals in Focus" article found in the May 1985 i...
-
EDIT 2026-05-11: Something was causing this program to not work on mobile devices. I'm guessing I had exported and uploaded the wrong v...