web link on object
29 August 2015 10:28
30 August 2015 10:49
31 August 2015 01:08
31 August 2015 18:56
Is there a way in the NLA script to have the page redirect open in a new page? I tried adding _blank to the address but unsurprisingly it did not work
Hello.
Unfortunately, NLA script open new page instead of opened page. If you want to open a new page, you should write js-script.
For example:
function mouse_down(e) {
var x = m_mouse.get_coords_x(e);
var y = m_mouse.get_coords_y(e);
var obj = m_scenes.pick_object(x, y);
if (m_scenes.get_object_name(obj) == "Cube")
window.open(URL);
}
Just a quick note to say that I have tested on safari and after activating the webgl button, the scene opens but freezes and there is no interaction. On the safari iphone, surprisingly it works. Any ideas why?
We'll check it. Thank you for feedback
31 August 2015 19:04
01 September 2015 16:26
01 September 2015 18:09
Hi.
And don't forget to set up your browser for loading local resources.
Concerning opening a new page, as I do not know javascript, I use the simple export and when I opend the exported file, I could not find anything that looks like what you wrote above.Try to use this example. Take a look at example.js script (and read this article if you want to write your own script).
And don't forget to set up your browser for loading local resources.
14 September 2015 21:53
I finished a tutorial video on this topic:
https://www.youtube.com/watch?v=QFxyAgl98FU
https://www.youtube.com/watch?v=QFxyAgl98FU
15 September 2015 10:33
I finished a tutorial video on this topic:Awesome! We'll post it in our social media.
https://www.youtube.com/watch?v=QFxyAgl98FU