Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
miro
Topic Author
Posts: 9
Joined: 16 Nov 2010, 04:24

stonedglass

16 Nov 2010, 13:55

http://www.stonedglass.net (Then click 'Gallery')
I'm still struggling with the deep-linking but other than that: happy me+happy customer 8)
Image
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13999
Joined: 30 Sep 2006, 03:37

Re: stonedglass

18 Nov 2010, 07:46

Very nicely integrated into your SWF website!

I have 3 things not so important, but which struck me:

1. I think you should have some frame around the thumbnails, at least 1 px or more. Because your background is fairly strong, the thumbnails will be more clear with a frame.

2. Perhaps tone down the background image?

3. The text in the main controls is gray and almost invisible. Perhaps change to black (through the theme CSS) to match your other controls?
 
User avatar
miro
Topic Author
Posts: 9
Joined: 16 Nov 2010, 04:24

Re: stonedglass

21 Nov 2010, 20:32

thanks. fixed.

How do i check if there is Swf Address? So that I can tell my swf to load the gallery section if there is deep linking
I tried :
Code
SWFAddress.onChange = function() {
	gotoAndStop("gallery");
....
}
But it doesn't seem to initiate it at all
thanks in advance
-miro
Image
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13999
Joined: 30 Sep 2006, 03:37

Re: stonedglass

22 Nov 2010, 03:02

This is a bit complex to explain, because you would need to integrate SWFaddress into your own flash to handle this ... http://www.asual.com/swfaddress/

Your own flash would have to integrate the SWFAddress, and then control the GotoAndStop based on the SWFAddress URL/parameters ...

Top be honest, I don't feel entirely comofortable with swfaddress myself, so I might not be able to help. This was basically integrating a 3rd party resource into Imagevue.
 
User avatar
miro
Topic Author
Posts: 9
Joined: 16 Nov 2010, 04:24

Re: stonedglass

22 Nov 2010, 03:49

mjau-mjau wrote: Your own flash would have to integrate the SWFAddress, and then control the GotoAndStop based on the SWFAddress URL/parameters ...
This is exactly what I did :)

Demo:
http://www.stonedglass.net/#/content/start/
http://www.stonedglass.net/

Here's the code
Code
import SWFAddress
import SWFAddressEvent

SWFAddress.onChange = SWFAddress.onInit = function() {
	var value = SWFAddress.getValue();
        	if (_currentframe == 4 && value.indexOf( '/content',0)!=-1) {
	        	gotoAndStop("blank"); //or your own code
        	}
}
Thanks a lot!
-miro
Image
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13999
Joined: 30 Sep 2006, 03:37

Re: stonedglass

22 Nov 2010, 10:21

Good job!