Hi,
I would like to create my own recipe management but I am having problems with functions.
For example, why I can use this function?
Globals.Recipe1.LoadRecipe(Globals.Tags.RecipeNameToLoad.Value);
but not this?
Globals.Recipe1.SaveRecipe(Globals.Tags.RecipeNamecreate.Value);
The second one is wrong.
Regards
Antonio
Recipe management customize
Re: Recipe management customize
Hello,
We understand that this is a very old post. If there is anyone who is still experiencing this or similar issues and require assistance, please visit us at https://www.beijerelectronics.us/en-US/ ... ___support or give us call at 801.708.6690.
Thank you.
We understand that this is a very old post. If there is anyone who is still experiencing this or similar issues and require assistance, please visit us at https://www.beijerelectronics.us/en-US/ ... ___support or give us call at 801.708.6690.
Thank you.
Best regards,
Russ
(801) 708-6690
Technical Support
Contact Us
Beijer Electronics AB
http://www.beijerelectronics.us
Russ
(801) 708-6690
Technical Support
Contact Us
Beijer Electronics AB
http://www.beijerelectronics.us
Re: Recipe management customize
Hello Aperez,
The syntax for the script commands is different depending on the command. For example, Recipe.SaveRecipe includes options for operator interaction.
Load a recipe entry named MySecondRecipeItem from Recipe1:
Save the current recipe that is loaded:
Hope this helps!
The syntax for the script commands is different depending on the command. For example, Recipe.SaveRecipe includes options for operator interaction.
Load a recipe entry named MySecondRecipeItem from Recipe1:
Code: Select all
Globals.Recipe1.LoadRecipe("MySecondRecipeItem");
Code: Select all
Globals.Recipe1.SaveRecipe(Globals.Tags.SystemTagLatestLoadedRecipeName.Value,false,false);]