I am ran into a little hiccup on a composition/app I am creating. Currently when no window is provided to the Receive Mouse Moves
node the position is tracked using global screen coordinates, and I think this is likely what you want for many, if not most, multi-display compositions, however in my particular case I am trying to make a composition that is able to track the cursor position only on a specific screen that the end-user has specified no matter the arrangement of the displays and doesn't change the last cursor position once the cursor has left the screen until it enters the screen again. What I am actually getting is the cursor co-ordinates for all screen as if it were one large canvas, meaning I am seeing negative position numbers when the secondary display is arranged to the top or left of the primary display or numbers larger than the resolution of the primary display when arranged below or to the right of the display.
I've tried to think this through using Compare Texts
or Are Equal (Generic)
node to compare screen names to stop receiving data when the cursor has left the selected screen and thought about using a Scale
node to convert the numbers to the available pixels of a given display but without knowing the exact arrangements of the displays I don't see how I can input the proper Start and End values for the scale. Any ideas on how to solve this using existing nodes would be appreciated.
If I could imagine a built-in solution for this issue I think it would be one of the following (unless a simple option is suggested above):
- A change to the
Receive Mouse Moves
node gave you the ability choose between receiving mouse position data for Window screen coordinates, Current screen coo-ordinates or Global screen-coordinates. Current and Global would act the same when only using 1 display. - If it were possible to treat a screen datatype output as an Updated Window output to connect directly to a Window input port.
- A new node that allowed you to convert a Screen datatype to a Window datatype.
Comments
I also have similar issues
I also have similar issues—would love option to get these as coords local to each screen.
Chris,
Chris,
Have you investigated Vuo's
Screen
nodes and associated example compositions? You can find the arrangements of the displays withList Screens
->Get Screen Values
.Change Window Screen
controls what screen a Vuo window appears on.https://vuo.org/user/14,
Jean Marie,
Thank-you! How did I miss the "Top Left" port of the Get Screen Values Node??? I was even using that node already in my composition. OK, I think I can make this work now, I just have to rethink and simplify how I'm calculating location of a few things.