01-25-2023, 04:31 AM
Oh check this out, a tiny editor started!
Yeah should use ElseIf's...
Code: (Select All)
_Title "MyCurs Test use left and right arrow keys to move cursor" 'b+ 2023-01-24
Screen _NewImage(800, 600, 32)
cursCol = 1: cursRow = 1
text$ = "Hello World"
Do
Cls
Print text$
myCurs cursRow, cursCol
kh& = _KeyHit
If kh& = 19200 And cursCol > 1 Then cursCol = cursCol - 1
If kh& = 19712 And cursCol < 100 Then cursCol = cursCol + 1
If (kh& >= 65 And kh& <= 90) Or (kh& >= 97 And kh& <= 122) Then
text$ = Mid$(text$, 1, cursCol - 1) + Chr$(kh&) + Mid$(text$, cursCol)
End If
If kh& = 8 Then
If cursCol > 1 Then
text$ = Mid$(text$, 1, cursCol - 2) + Mid$(text$, cursCol)
cursCol = cursCol - 1
End If
End If
_Display
_Limit 60
Loop
Sub myCurs (row, col) ' use row col like for Locate
'Locate row, col
Static As Long lc, toggle
lc = lc + 1
If lc > 1000000 Then lc = 0
If lc Mod 20 = 0 Then toggle = 1 - toggle
If toggle Then c~& = _RGB32(255, 255, 255) Else c~& = _RGB32(0, 0, 0)
Line ((col - 1) * 8, (row - 1) * 16)-Step(0, 15), c~&
End Sub
Yeah should use ElseIf's...
b = b + ...