And I want to load them using a VB plugin, but it doesn't seem to work.
Using this code:
- Code: Select all
keystring = UC.Readkey("2022_Jog_Speeds", "913", "False") '// Jog Speed %
If keystring = "" Then
UC.Setfieldtext(True, "10", 913) : UC.Validatefield(True, 913)
Else
UC.Setfieldtext(True, keystring, 913) : UC.Validatefield(True, 913)
End If
keystring = UC.Readkey("2022_Jog_Speeds", "2027", "False") '// Jog Distance
If keystring = "" Then
UC.Setfieldtext(True, "0.001", 2027) : UC.Validatefield(True, 2027)
Else
UC.Setfieldtext(True, keystring, 2027) : UC.Validatefield(True, 2027)
End If
Is there way to specify AS3Jog in a plugin, or is it something else? Thanks.