This is my 3d web gallery with Blender web plugin:
http://endi.euromarknet.hu/gallery/
I want to make that, when I click on a picture, a new window opens with hight resolution of the picture. How can I make this? Can Blender web-plugin do this?
my 3d web gallery
Moderators: jesterKing, stiv
hi !
you can use a message actuator to open another url.
here is the documentation :
http://download.blender.org/documentati ... ml#AEN1814
this opens the page in the same window.
you can use instead of the url a javascript-function, which opens the url
in another frame or window.
i hope this works for you.
you can use a message actuator to open another url.
here is the documentation :
http://download.blender.org/documentati ... ml#AEN1814
this opens the page in the same window.
you can use instead of the url a javascript-function, which opens the url
in another frame or window.
i hope this works for you.
Hey endi,
Try this:
make a new string property with this value:
and set the Message to
To: host_application
Subject: load_url
change the message type to 'Propname' and put the property name you just created in that.
here's an example:
shipthing
hit the letter 'M' to load the popup window
As far as clicking in the blender window to get the right image to load, I haven't figured that out yet
Jim
Try this:
make a new string property with this value:
Code: Select all
javascript: var w=window.open('yourfile.html','','width=320 height=200'); w.focus();
To: host_application
Subject: load_url
change the message type to 'Propname' and put the property name you just created in that.
here's an example:
shipthing
hit the letter 'M' to load the popup window
As far as clicking in the blender window to get the right image to load, I haven't figured that out yet

Jim
sorry to open up a very dead post but, i tried you code and i get an error from ie6 saying invalid argument, and you example is down. if you could put it back up i would be very happy
thanks
also i have gotten blender to load new scenes when you click on an image, which could be easily changed to pop open a new window, if i could get it working.

also i have gotten blender to load new scenes when you click on an image, which could be easily changed to pop open a new window, if i could get it working.