Cell Placement angle scroll

I used to have a cell placement tool that when i picked a cell, i could right click and it would rotate 90, then 90 again. I can't figure out how to do this in the button assignments. Does anybody know an easy way to do this? or an easy key in that will allow something like active angle=90+90+90, etc

Parents Reply Children
  • I would prefer to really cycle values in 0 - 360 range. But it requires more complex VBA code and probably cannot be achieved using simple key-in.

    VBA

    CONNECT key-in...

    macro vba execute ActiveSettings.Angle = IIf(ActiveSettings.Angle > (2 * Pi), 0, ActiveSettings.Angle + Pi / 4);aa=

    V8 key-in...

    vba execute ActiveSettings.Angle = IIf(ActiveSettings.Angle > (2 * Pi), 0, ActiveSettings.Angle + Pi / 4);aa=

    Calculator

    calculator tcb->actangle = (tcb->actangle >= 360)? 0:  (tcb->actangle + 90);aa=

    The key-in has ;aa= appended, which echoes the new active angle (AA) in MicroStation's status bar.

     
    Regards, Jon Summers
    LA Solutions