I'm sorry to hear this. My wife deceased nine years ago. Videogames, series, programming and talking to friends helped me a lot. Try to look ahead and take care.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: spacefractal on 2023-Mar-02Now im have 4 projects online, still missing 2:I tested some games (Greedy Mouse, Spot Race, PowerUp Elevation) in Firefox version 102.13.0.esr and all works Ok. The sound is a bit loud in some, like you said. I'm impressed with your fixes to GLBasic HTML5. Greedy Mouse is art.
https://spacefractal.itch.io/
Quote from: MrPlow on 2023-May-15Hi Dreamerman!This may be a problem with your AV because new exe files are generated. Try to add an exception in the folder where you have the GLB projects or the output folder.
My AV BitDefender doesnt like the steam gbas files when trying to compile...
strip.exe fails on output.obj
Any ideas?
Quote from: loftcat on 2022-Sep-26Good guide for GLB HTML5, is good to know all this things.
...
TYPE MyType
a%=5
b%=8
name$="Hans"
// assign properties
function Init: _a%, _b%, _name$
self.a = _a
self.b = _b
self.name$ = _name$
endfunction
// write element to file
// file must be opened for write
function SaveToFile: file%
writeword file, self.a
writeword file, self.b
writeline file, self.name$
endfunction
// load the element from file
// file must be opened for read
function LoadFromFile: file%
readword file, self.a
readword file, self.b
readline file, self.name$
endfunction
ENDTTYPE
// declare list of TYPEs
local mylist[] as MyType
dim mylist[3]
// fill mylist with elements
mylist(0).Init(1, 22, "Fist")
mylist(1).Init(2, 33, "Second")
mylist(2).Init(3, 44, "Third")
// save the list to a file
Openfile(1, "mylist.dat", FALSE)
For elem in list[]
elem.SaveToFile(1)
Next
Closefile 1
Quote from: Bluepixel on 2019-Dec-11
@Ian Price
Thanks a lot!
I will soon be getting a WIZ and seeing if I can get this all to work, I am wondering however, is there anything I need to keep in mind
when compiling to the WIZ? Or is it just like creating a desktop application?