Launch Bloxx

Hi Sam,
Your page is still running the older version of the code I wrote. I updated the showThumbs function to that you can pass the reference to the item you want to show to it. The correct code was used in the example I posted to this thread on the 24th June.

Search for this block of code in your page;

/* Show the Bloxx thumbs code start */
	var d=document;
	function ge(e,f){var b=e.getElementsByClassName(f);return b[0]}
	function eventFire(b,c){if(b.fireEvent){(b.fireEvent("on"+c))}else{var a=d.createEvent("Events");a.initEvent(c,true,false);b.dispatchEvent(a)}};
	function showThumbs(){
		var t = ge(d,"thumb-container");
		if (t){ eventFire(t,"click"); }
	}
	
	/* Show the Bloxx thumbs code end */

and replace it with this;

/* Show the Bloxx thumbs code start */
	var d=document;
	function ge(e,f){var b=e.getElementsByClassName(f);return b[0]}
	function eventFire(b,c){if(b.fireEvent){(b.fireEvent("on"+c))}else{var a=d.createEvent("Events");a.initEvent(c,true,false);b.dispatchEvent(a)}};
	function showThumbs(what){
		var l = document.getElementById(what);
		if(!l){ return; }
		var t = ge(l,"thumb-container");
		if (t){ eventFire(t,"click"); }
	}

	/* Show the Bloxx thumbs code end */

Regards,
Tim.

On 12 Aug 2014, at 13:53, Sam Smith wrote:

Thanks for the quick response. I’ve changed the item names to correspond with the link but the galley link will only fire the one gallery not the second.


Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thank you Tim


Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hye guys,

This thread has been great. Tim, thanks for your input and for the Exhibeo Extras Action, which has been very helpful.

Wondering if there’s any way to disable the “close window” function on the upper left hand corner of the window. That way, I can add a header image (maybe in a separate frame) above the gallery.

Like this:

http://www.adchung.com/Exhibeo_Sample.jpg

Thanks in advance!

Chung :slight_smile:


Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

This thread has been great. Tim, thanks for your input and for the Exhibeo Extras Action, which has been very helpful.

Wondering if there’s any way to disable the “close window” function on the upper left hand corner of the window. That way, I can add a header image (maybe in a separate frame) above the gallery.

Like this:

http://www.adchung.com/Exhibeo_Sample.jpg

Thanks in advance!

Chung :slight_smile:


Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

This thread has been great. Tim, thanks for your input and for the Exhibeo Extras Action, which has been very helpful.

Wondering if there’s any way to disable the “close window” function on the upper left hand corner of the window. That way, I can add a header image (maybe in a separate frame) above the gallery.

Like this:

http://www.adchung.com/Exhibeo_Sample.jpg

Thanks in advance!

Chung :slight_smile:


Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hi Chung,
You can remove the close box or the whole of the top bar simply by adding a bit of CSS to the page head like this;

close box:
.bloxx-close-grid { display: none }

header:
.bloxx-header { display: none }

However, as you can see from these examples I’m not sure how your users will interact with the gallery (move between larger images for example) without these controls;

close box:
file:///Users/tim/Dropbox/Tim%20Dropbox/Dropbox/Public/test/Bloxx-show2/index2.html

header:
https://dl.dropboxusercontent.com/u/795566/test/Bloxx-show2/index.html
Regards,
Tim.

On 14 Aug 2014, at 08:48, Chung-Mau Cheng wrote:

Wondering if there’s any way to disable the “close window” function on the upper left hand corner of the window.


Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thanks, Tim!

I see what you mean about removing the close box hindering interaction once a person clicks on an image. I guess the ideal situation is to remove the close box from the thumbnail view (when you can see all the images), while retaining it when you look at individual, larger images.

Something tells me that’s much more difficult. :slight_smile:

I’ll play around. Thanks again!

Chung :slight_smile:


Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options