You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Console,function,INKEY,539,"INKEY","Returns the last key-code in keyboard buffer, or an empty string if there are no keys. Special key-codes like the function-keys (PC) or the hardware-buttons (PalmOS) are returned as 2-byte string."
35
+
Console,function,INKEY,539,"INKEY","Returns the last key-code in keyboard buffer, or an empty string if there are no keys. Special key-codes like the function-keys are returned as 2-byte string."
36
36
Console,function,TAB,540,"TAB (n)","Moves cursor position to the nth column."
37
-
Console,function,DEFINEKEY,1015,"DEFINEKEY k,sub","Binds a keystoke to a user defined function"
37
+
Console,function,DEFINEKEY,1015,"DEFINEKEY k,sub","Binds a keystroke to a user defined function"
38
38
Data,command,DELETE,542,"DELETE a, idx [, count]","Deletes 'count' elements at position 'idx' of array 'a'."
39
39
Data,command,EMPTY,543,"EMPTY (x)","Returns true if x is: a zero length array, an empty string, an integer or real with the value 0."
40
40
Data,command,INSERT,544,"INSERT a, idx, val [, val [, ...]]]","Inserts the values to the specified array at the position idx."
@@ -66,7 +66,7 @@ Data,statement,RESTORE,572,"RESTORE label","Specifies the position of the next d
66
66
Date,command,DATEDMY,573,"DATEDMY dmy| julian_date, BYREF d, BYREF m, BYREF y","Returns the day, month and the year as integers."
67
67
Date,command,TIMEHMS,574,"TIMEHMS hms| timer, BYREF h, BYREF m, BYREF s","Converts a time-value to hours, minutes and seconds integer values."
68
68
Date,function,DATE,575,"DATE","Returns the current date as string ""DD/MM/YYYY""."
69
-
Date,function,DATEFMT,576,"DATEFMT (format, dmy| (d,m,y)| julian_date)","Returns formated date string."
69
+
Date,function,DATEFMT,576,"DATEFMT (format, dmy| (d,m,y)| julian_date)","Returns formatted date string."
70
70
Date,function,JULIAN,577,"JULIAN (dmy| (d,m,y))","Returns the Julian date. (dates must be greater than 1/1/100 AD)."
71
71
Date,function,TIME,578,"TIME","Returns the current time as string ""HH:MM:SS""."
72
72
Date,function,WEEKDAY,579,"WEEKDAY (dmy| (d,m,y)| julian_date)","Returns the day of the week (0 = Sunday)."
@@ -75,18 +75,18 @@ Data,command,APPEND,581,"APPEND a, val [, val [, ...]]","Inserts the values at t
75
75
File,command,BLOAD,582,"BLOAD filename[, address]","Loads a specified memory image file into memory."
76
76
File,command,BPUTC,583,"BPUTC #fileN; byte","Writes a byte on file or device. (Binary mode)."
77
77
File,command,BSAVE,584,"BSAVE filename, address, length","Copies a specified portion of memory to a specified file."
78
-
File,command,CHDIR,585,"CHDIR dir","Changes the current working directory. Not supported on PalmOS version."
78
+
File,command,CHDIR,585,"CHDIR dir","Changes the current working directory."
79
79
File,command,CHMOD,586,"CHMOD file, mode","Change permissions of a file. See also ACCESS."
80
80
File,command,CLOSE,587,"CLOSE #fileN","Close a file or device."
81
81
File,command,COPY,588,"COPY ""file"", ""newfile""","Makes a copy of specified file to the 'newfile'."
82
82
File,command,DIRWALK,589,"DIRWALK directory [, wildcards] [USE ...]","Walk through the specified directories. The user-defined function must returns zero to stop the process."
83
83
File,command,INPUT,590,"INPUT #fileN; var1 [,delim] [, var2 [,delim]] ...","Reads data from file."
84
84
File,command,KILL,591,"KILL ""file""","Deletes the specified file."
85
85
File,command,LOCK,592,"LOCK","Lock a record or an area (not yet implemented)."
86
-
File,command,MKDIR,593,"MKDIR dir","Create a directory. Not supported on PalmOS version."
86
+
File,command,MKDIR,593,"MKDIR dir","Create a directory."
87
87
File,command,OPEN,594,"OPEN file [FOR {INPUT|OUTPUT|APPEND}] AS #fileN","Makes a file or device available for sequential input, sequential output."
88
88
File,command,RENAME,595,"RENAME ""file"", ""newname""","Renames the specified file."
89
-
File,command,RMDIR,596,"RMDIR dir","Removes a directory. Not supported on PalmOS version."
89
+
File,command,RMDIR,596,"RMDIR dir","Removes a directory."
90
90
File,command,SEEK,597,"SEEK #fileN; pos","Sets file position for the next read/write."
91
91
File,command,TLOAD,598,"TLOAD file, BYREF var [, type]","Loads a text file into array variable. Each text-line is an array element. type 0 = load into array (default), 1 = load into string."
92
92
File,command,TSAVE,599,"TSAVE file, var","Writes an array to a text file. Each array element is a text-line."
Graphics,command,IMAGE,617,"IMAGE #handle, index, x, y [,sx,sy [,w,h]]","Display a graphical image."
110
+
Graphics,command,IMAGE,617,"IMAGE [#handle | fileName | http://path-to-file.png | image-var | array of pixmap data]","Creates a graphical image object providing access to the following sub-commands: show([x,y [,zindex [,opacity]]]), hide, save([x,y [,w,h]])"
111
111
Graphics,command,LINE,618,"LINE [STEP] x,y [,|STEP x2,y2] [, color| COLOR color]","Draws a line."
112
112
Graphics,command,PAINT,619,"PAINT [STEP] x, y [,fill-color [,border-color]]","Fills an enclosed area on the graphics screen with a specific color. x,y = Screen coordinate (column, row) within the area that is to be filled."
113
113
Graphics,command,PLOT,620,"PLOT xmin, xmax USE f(x)","Graph of f(x)."
114
114
Graphics,command,PSET,621,"PSET [STEP] x,y [, color| COLOR color]","Draw a pixel."
115
115
Graphics,command,RECT,622,"RECT [STEP] x,y [,|STEP x2,y2] [, color| COLOR color] [FILLED]","Draws a rectangular parallelogram."
116
116
Graphics,command,VIEW,623,"VIEW [x1,y1,x2,y2 [,color [,border-color]]]","Defines a viewport. The viewport defined by VIEW is disabled by a VIEW command with no parameters."
117
-
Graphics,command,WINDOW,624,"WINDOW [x1,y1,x2,y2]","The WINDOW command allows you to redefine the corners of the display screen as a pair of ""world"" coordinates."
117
+
Graphics,command,WINDOW,624,"WINDOW [left,bottom,right,top]","The WINDOW command allows you to redefine the corners of the display screen as a pair of ""world"" coordinates. WINDOW is also overloaded as a function, returning a system object providing access to the following sub-commands: graphicsScreen1, graphicsScreen2, textScreen, alert, ask, menu, message, showKeypad, insetTextScreen"
118
118
Graphics,function,PEN,627,"PEN (0..14)","Returns the PEN/MOUSE data."
119
119
Graphics,function,POINT,628,"POINT (x [, y])","Returns the color of the pixel at x,y."
120
120
Graphics,function,RGB,629,"RGB (r, g, b)","Returns the RGB color codes for the specified values. Takes values 0..255 for each of the color."
0 commit comments