I have a small issue with the OnMove.
I created a chart with the historical temperature (aka line chart in excel ;o). And when I put the cursor on the line, I would like to display some info about the weather for a certain date and when I continue on this line, the panel info follows the cursor.
So, on the different parts of my line, I put some hot spots (because my line is not right). I created a dynamic panel with different states giving info per day.
On the hot spot, 2 behaviours:
onmouseover: show panel_weather_info and set panel “date e.g. 23Feb”
onmove: move panel_weather_info to (([Cursor:x - This.x]],[[Cursor:y - This.y]]).
I think you have mistaken Move (action) with OnMove (trigger)
The OnMove activates when the widget is moved
Here you show the panel OnMousHover because your mouse is over the widget but you don’t move it
copy/paste “move panel_weather_info to (([Cursor:x - This.x]],[[Cursor:y - This.y]])” on OnMouseHover and it should work
PS1:
By the way why do you use “-This.x” in the formula when you move the panel and not only “Cursor.x”.
It will most likely move your DP on the top left of your canvas on not above your hotspot
PS2:
In Axure it’s “Cursor.x” (with a dot “.”) and not “Cursor:x” (with colons “:”)
It might cause issues too
PS3: and yes, [quote=“nkrisc, post:2, topic:54142”]
Can you share your file?
[/quote]