How to do Remote Control with Visual Touchpad like this link?

Hi ,
How to do Remote Control with Visual Touchpad like this link " Triggers and Actions - Remote Control with Visual Touchpad - YouTube "
I need to use ipad to control 360 tour on PC but i cant send drag event or zoom event to 360 experience on PC machine. Any idea how to made touchpad like in link (my screen is very long 3480*800 it is too small on intuipad)

Thank you very much
Peerapon

Have you tried remote actions/local network triggers? I am assuming the 360 tour is built outside from Intuiface?

Yes., Louie 360 tour built from pano2vr.
I tried remote actions and it work fine but i can’t drag to rotate 360 tour. For local network trigger i ll try tomorrow and will let you know.
Thank you very much
Peerapon

Hi Louie,
I try local network trigger already. But i can’t find any action to send out touchpad to pc machine.
Thank you very much
Peerapon

Hi,

The video you mention was shot, if I remember correctly what we did 7 years ago :slight_smile: , using a beta version of IntuiPad.

Today, you can either:

  • use IntuiPad as it is built, and send continuous touch inputs to the Windows Player (multiple fingers, continuous scroll, etc…)
  • use remote actions / local network triggers and send commands (messages) to the Windows Player that will arrive as triggers.

Unfortunately, you can’t mix these 2 options.

The only option would be to build a custom Interface Asset that would send some touch from the tablet player to the Windows Player through TUIO, but that’s not an easy job (if doable).

Hi, Sep
It’s possible to send command to simulate left or right key press to simulate keyboard shot key to move lest or right? or another way to simulate key press?
Kind Regards,
Peerapon

I would have said no until I read Paolo’s post Tosoville: Intuiface meets Unity 3D where he uses https://www.autohotkey.com/

There’s something to investigate here :wink:

AutoHotKey seems a nice solution to simulate keystrokes to other apps. Because the syntax can be complex and prone to errors, I found a workaround. I downloaded Pulover’s Macro Creator and recorded some of the sequences that I was interested to capture. Then I exported the macro in AHK format. The macro recorder saved me a lot of time trying to figure out the correct syntax.

2 Likes

@owlstudios081 To control the pano remotely from the iPad, have you considered using AirPlay and mirror an Intuiface + pano2VR XP running on the iPad? Whatever you’ll see on the iPad, it’ll be shown on the PC display. You can accomplish this (without buying any hardware) using a mirroring utility called Reflector.

Hi Tosolini,
Screen mirror is not a good choice for me because my project didn’t use monitor but i use 3 projector project on 3 side of wall (3840*800 px) it hard to use mirror screen. So the best choice for me is Autohotkey to send (left,right,up,down) key to pano2vr but i need you some advice about how to send command from intuiface button?
Kind Regards
Peerapon

Controlling an external app outside from within intuiface becomes problematic, esp if you’re controlling from an ipad.

An easy workable solution would be to include the 360 tour within the intuiface XP, then you can control it from the ipad easily.

Sometime, back I tried including a 360 made in KRPano using different methods, till i could find the right one. Dont export the 360 into flash, as even though it may seem the best solution, it does not go completely into intuiface and I was stuck at the loading screen only. Try different exports to see which one works.

3 Likes

Hi Melvyn,
Could you please explain how to include 360 tour within Intuiface XP?
Kind Regards
Peerapon

you could try exporting it to html

Here is a start for your project @owlstudios081:

  • I created four AutoHotKey files, one for each direction. They look like these

WinActivate, Demo.p2vr - Pano2VR ahk_class Qt5QWindowIcon
Send, {Up}
Send, {Up}
Send, {Up}
Send, {Up}
Send, {Up}
Send, {Up}
Send, {Up}
Send, {Up}
Send, {Up}
Send, {Up}

  • The AHK files need to target your specific Pano2VR window, so your syntax will look different than mine. For this reason, the best way to go about figuring out the right syntax is to download Pulover’s Macro Creator and record you moving up / down / left / right with your 360. Then exporting the file into AHK and extract just the right info you need
  • I saved the AHK files on my desktop and created a simple Intuiface XP that executes each file when you click on each button.
  • The movement is not as smooth as if you acted directly on the 360
  • I’m no AHK expert, I just hacked together a few tools and they seem to work
2 Likes
Thank you very much Tosolini, Help me a lot. 

I’ve one more question. To use button run the script i ve to use “Launch application” trigger?


Kind regards.
Peerapon

Correct. You execute the AHK file by hardcoding its name and path. No parameters are necessary

2 Likes