Page 1 of 2

4.1 version

Posted: Wed Jul 09, 2014 7:01 am
by Mr. Kibernetik
Error with files inclusion {} using relative paths will be corrected.

Re: 4.1 version

Posted: Fri Jul 11, 2014 5:38 am
by Mr. Kibernetik
DRAW IMAGE command will respect current drawing alpha and graphics mode.

SPRITE STAMP command will respect current graphics mode.

to Dutchman: docs for SPRITE STAMP will be updated too.

Re: 4.1 version

Posted: Sat Jul 12, 2014 10:15 am
by Mr. Kibernetik
Background music will not be muted when program runs.

Re: 4.1 version

Posted: Sat Jul 12, 2014 12:14 pm
by Mr. Kibernetik
New function will be added:

CURRENT_DIR$ ()
returns current directory.

Re: 4.1 version

Posted: Sat Jul 12, 2014 1:03 pm
by Mr. Kibernetik
New function will be added:

DEVICE_NAME$ ()
returns device name.

Re: 4.1 version

Posted: Sun Jul 13, 2014 9:38 am
by Mr. Kibernetik
New sprite function will be added:

SPRITE_VISIBLE (n$)
returns 1 if sprite with name [n$] is shown, otherwise returns 0.

Re: 4.1 version

Posted: Sun Jul 13, 2014 11:33 am
by Mr. Kibernetik
New commands and function will be added:

BUTTON n$ HIDE
hides button which name is [n$].

BUTTON n$ SHOW
shows previously hidden button which name is [n$].

BUTTON_VISIBLE (n$)
returns 1 if button with name [n$] is shown, otherwise it returns 0.

Re: 4.1 version

Posted: Sun Jul 13, 2014 3:32 pm
by Mr. Kibernetik
New commands and function will be added:

FIELD n$ HIDE
hides text input field which name is [n$].

FIELD n$ SHOW
shows previously hidden text input field which name is [n$].

FIELD_VISIBLE (n$)
returns 1 if text input field with name [n$] is shown, otherwise it returns 0.

Re: 4.1 version

Posted: Sun Jul 13, 2014 5:34 pm
by Mr. Kibernetik
New commands and functions will be added:

LIST n$ HIDE
hides list which name is [n$].

LIST n$ SHOW
shows previously hidden list which name is [n$].

LIST_VISIBLE (n$)
returns 1 if list with name [n$] is shown, otherwise it returns 0.

SLIDER n$ HIDE
hides slider which name is [n$].

SLIDER n$ SHOW
shows previously hidden slider which name is [n$].

SLIDER_VISIBLE (n$)
returns 1 if slider with name [n$] is shown, otherwise it returns 0.

SWITCH n$ HIDE
hides switch which name is [n$].

SWITCH n$ SHOW
shows previously hidden switch which name is [n$].

SWITCH_VISIBLE (n$)
returns 1 if switch with name [n$] is shown, otherwise it returns 0.

Re: 4.1 version

Posted: Mon Jul 14, 2014 5:09 am
by Mr. Kibernetik
New commands will be added:

LIST BUTTONS TO a$,n
saves list of existing buttons' names to string array [a$] and size of returned array to numeric variable [n].

LIST FIELDS TO a$,n
saves list of existing text input fields' names to string array [a$] and size of returned array to numeric variable [n].

LIST LISTS TO a$,n
saves list of existing lists' names to string array [a$] and size of returned array to numeric variable [n].

LIST SLIDERS TO a$,n
saves list of existing sliders' names to string array [a$] and size of returned array to numeric variable [n].

LIST SWITCHES TO a$,n
saves list of existing switches' names to string array [a$] and size of returned array to numeric variable [n].