How to create a circular slider that can cycle through a list of hot spots?

newbie-question

#1

Hi! I’m looking to create a circular slider which can be used to select different buttons by dragging it around. I would like to create a slider like those demonstrated in (How to make a circular slider in Axure? ), but instead of changing text, I would like it to cycle through a list of hot spots. Is there any way to do this?


#2

Check out this thread. I think the methods should work the same for RP9.

A followup to that thread, adding “clockwise/counter-clockwise” directionality:


#3

Hi!

I’m not sure what you mean by a list of hotspots, but you could to use the Rotated event for ‘rotatingPanel’ which is called constantly as that panel rotates. In it, set up some conditions based on the rotation, and do whatever you want when rotation is in a given range. Rotation goes clockwise from 0 to 360. Exampe;

On Rotated (of rotatePanel)
  If value [[This.rotation]] is greater than 0 
    AND value [[This.rotation]] is less than or equals 30
      -- do whatever you want here
  Else If value [[This.rotation]] is greater than 30
    AND value [[This.rotation]] is less than or equals 60
      -- do whatever you want here