Hello community,
I recently upgraded to the last version of SC 9.7.015 and I found out that those buttons with language variables in their labels are not working as before.
Ex: {lang_window}: {lang_edition}
I see that the generated code looks like this:
//ERROR
$btn_value = “$this->Ini->Nm_lang[‘lang_window’]: $this->Ini->Nm_lang[‘lang_edition’]”;
And it should be like:
//SOLUTION
$btn_value = $this->Ini->Nm_lang[‘lang_window’] . ": " . $this->Ini->Nm_lang[‘lang_edition’];
I hope Scriptcase Team can solve this issue soon.