Irregular shaped clickable object

Hi Zoltan,
If you know how to create SVG images, you can import into HTML, then use jQuery to interact with Intuiface assets using Remote Actions.

I wanted to test this myself so I made a quick example (attached), that May help someone else.

I used a HTML asset for the Map, with a simple jQuery function which targets the Carousel

jQuery(document).ready(function($){
  $('svg path').on("click", function(e){
    $('.active').removeClass('active');
    $(this).addClass('active');
  //  alert(this.id);
$.get("http://127.0.0.1:8000/intuifacepresentationplayer/presentation/currentspace/Carousel/ScrollToAsset?strAssetName="+this.id);
  });
});

I learnt from Sebs info: Remote Actions Builder!
And I used the Query Builder to create the link: https://myintuiface.intuilab.com/remote-actions-builder/

Hopefully this helps.

html-link-interaction.zip (8.5 MB)

3 Likes