WOW!
That is a really impressive-looking package GUIlect!
It didnt run out of the opened zip file because it couldnt find a dll but
I just extracted everything in the zip file to C:Program Files/BrowserBasic and all seemed OK.
All the example HTMLs seemed to work fine on my Windows7-32bit/Firefox20.
Compilation works OK. The editor seems to work OK too.
= = = = = = = = = = = = =
Minor Questions (Trying to port my demo to BB)
Q1
Is there a Draw_Filled_Triangle/Polygon function?
Q2
Line 1: var MyVar as number
Line 2: MyVar = 1 + MyVar/12
Line 3: MyVar = 1 + (MyVar/12) ==> Compilation error: Expected: Value - value but got: ( (ascii 40) on Line: 3
Q3
var MyStr1 as string
MyStr1 = Str$(11) ==> Compilation error: String expression error Str$
Q4
var jjj as number
var R_Width as number
var moiRects_PosXmax[1000] as array
var moiRects_PosXmin[1000] as array
jjj=1
moiRects_PosXmax[1]=1
moiRects_PosXmin[1]=1
R_Width = moiRects_PosXmax[jjj]
R_Width = R_Width - moiRects_PosXmin[jjj]
R_Width = moiRects_PosXmax[jjj] - moiRects_PosXmin[jjj] ==> Compilation error: Expected: Match - = but got: