Page 1 of 1

[SOLVED] SetVariable Command and Merge 2 Variables

Posted: Mon Apr 02, 2018 9:36 pm
by noyzen
Hi,

in neobook when you want merge 2 variables you can simply user "setvariable" action like this:

SetVar "[part1]" "Hello"
SetVar "[part2]" " Everyone!"
SetVar "[part1][part2]" "[text]"

and text will be "Hello Everyone!"

but i can't do that on neo appbuilder...
how to merge multiple variables into one in neo appbuilder?

Re: SetVariable Command and Merge 2 Variables

Posted: Mon Apr 02, 2018 11:03 pm
by farhad2008
hi,

SetVar [part1] "Hello"
SetVar [part2] " Everyone!"
SetVar [text] [part1]+[part2]

Re: SetVariable Command and Merge 2 Variables

Posted: Tue Apr 03, 2018 4:05 am
by noyzen
thanks Farhad jan :)

No thats not right
i was using action like neobook:

SetVar "[part1][part2]" "[text]"

in neo appbuilder they changed places so right code is:

SetVar [text] "[part1][part2]"
(you have to add " manualy)

:lol:

Re: [Solved] SetVariable Command and Merge 2 Variables

Posted: Tue Apr 03, 2018 12:16 pm
by farhad2008
Hi noyzen jan
you are right

fadat