1. In the past versions you couldn't make variables be equal to Feather functions like char() ascii() rnd()*new. Now you can :). Here's a little example
Code:
declare {
name char( 34 )
}
also you have these new variable add ons like this
Code:
declare {
add ("1")
number =+ add
}
2. In the past versions the Message box buttons didn't do anything. Now if you press "abort" for example it gives out a variable with the contents "abort" so you can finnaly make message boxes do something. Here is an example
Code:
message.box {
_MB_NORMAL
_MB_YESNO
("Test")
("Test")
answer
}
The pushed button information will be stored in the variable answer. Also see the examples in the Example folder to understand this more.