Good morning, Scott,
First, let me thank you very much for even taking the time to look at this for me
I tried it as soon as I got out of bed but unfortunately the "Cycle Jog Axis" option did nothing at all. I set it for a specific button on the Shuttle and press it and no axis cycled at all.
You had asked for the code that Terry had made up for me to cycle through the axis messages in the status bar:
If GetUserDro(1999) < 5 Then
SetUserDro(1999,GetUserDro(1999)+1)
End If
If GetUserDro(1999) >= 5 Then
SetUserDro(1999,1)
End If
If GetUserDro(1999) = 1 Then
Message("Selecting X axis for Jogging")
'(add function code here)
End If
If GetUserDro(1999) = 2 Then
Message("Selecting Y axis for Jogging")
'(add function code here)
End If
If GetUserDro(1999) = 3 Then
Message("Selecting Z axis for Jogging")
'(add function code here)
End If
If GetUserDro(1999) = 4 Then
Message("Selecting A axis for Jogging")
'(add function code here)
End If
End
This works nicely as far as cycling through the messages and you can test it by just making a button on a screen and setting it up for the VB script function.
Again, Thank you Scott, I truly appreciate this-
Dave