Expand my Community achievements bar.

rotate symbols by user

Avatar

Level 1

I need to create editable PDF that have a symbol (most likely arrows) that can be rotated North, East, South, West by the end user but not moved.  How would I or Can I do this?  Would i be able to create a drop down box with all of the options?  I hope this can be done. 

1 Reply

Avatar

Level 7

you can put the symbol into a text box and then in your dropdown list with the directions put into the exit event (in formcalc):

if ($ == 1) then

Text1.rotate = "90"

elseif ($ == 2) then

Text1.rotate = "180"

elseif ($ == 3) then

Text1.rotate = "270"

endif

(Your form must be saved as a dynamic form)