Create a new character?
#9
Perhaps something simple like this?

Code: (Select All)
SCREEN _NEWIMAGE(640, 480, 32)
_SCREENMOVE _MIDDLE
$COLOR:32

PRINT "Foo"; Line4Phil(Red); "foo?"; Line4Phil(Green)
FOR i = 0 TO 9
    PRINT STR$(i); " "; Line4Phil(Red); STR$(i + 100); Line4Phil(Green)
NEXT

FUNCTION Line4Phil$ (kolor AS _UNSIGNED LONG)
    PRINT " ";
    y = CSRLIN - 1
    x = POS(0) - 1
    fw = _FONTWIDTH
    fh = _FONTHEIGHT
    LINE (x * fw - 2, y * fh)-STEP(1, fh), kolor, BF
END FUNCTION
Reply


Messages In This Thread
Create a new character? - by PhilOfPerth - 01-25-2023, 01:24 AM
RE: Create a new character? - by bplus - 01-25-2023, 02:46 AM
RE: Create a new character? - by PhilOfPerth - 01-25-2023, 03:38 AM
RE: Create a new character? - by mnrvovrfc - 01-25-2023, 03:58 AM
RE: Create a new character? - by bplus - 01-25-2023, 04:05 AM
RE: Create a new character? - by bplus - 01-25-2023, 04:14 AM
RE: Create a new character? - by bplus - 01-25-2023, 04:31 AM
RE: Create a new character? - by bplus - 01-25-2023, 04:41 AM
RE: Create a new character? - by mnrvovrfc - 01-25-2023, 02:24 PM
RE: Create a new character? - by SMcNeill - 01-25-2023, 08:51 AM
RE: Create a new character? - by PhilOfPerth - 01-25-2023, 09:21 AM
RE: Create a new character? - by bplus - 01-25-2023, 06:50 PM
RE: Create a new character? - by bplus - 01-25-2023, 08:07 PM



Users browsing this thread: 6 Guest(s)