Page 1 of 1

title problem (groupfolder/imagefolder) on html page

Posted: 26 Nov 2007, 05:29
by Elisa
Hello,
in a html page, I put "imagevue.swf" with this code :
Code
<script>
var so = new SWFObject("/imagevue.swf?folder=content/Dubai/Golf-beach/", "imagevue", "700", "550", "6", "#FFFFFF");
so.addVariable("backimage", "false")
so.write("imagevue");
</script>
I want that the animation opens on a page with vignettes of one of my image files. It works but I have a problem with the title.
When I put the mouse on title I have to read 'group folder/image folder'. But I have ' - / image folder'.

I don't understand why I can't see the name of my "group folder".

Someone cant help me please ?

(sorry for my english)

Posted: 26 Nov 2007, 22:36
by mjau-mjau
Thanks for the observation -

In fact, we made it like this on purpose because we once had a few users who said they did not want the groupfolder name displayed when accessing a specific folder directly. We thought it would not help the user in any way to see a parent folder name that he/she doesn't relate to ...

Sorry for any inconvenience -

Posted: 30 Nov 2007, 05:07
by Elisa
Yes, but is it possible to completely disable the function ? so, nothing happens when we put the mouse over the title ?

Perhaps it is possible to write a fonction in my swf integration to disable that just on 1 or 2 pages, like :

<script>
var so = new SWFObject("imagevue.swf?folder=content/France/In-france/&xxx=xxx", "imagevue", "100%", "100%", "6", "#FFFFFF");
so.addVariable("backimage", "false");
so.write("imagevue");
</script>

Posted: 01 Dec 2007, 00:22
by mjau-mjau
You can turn off the heading completely by setting:
Code
startheading = false;
Example: https://www.photo.gallery/imagevue/?fold ... ding=false

Your case:
Code
<script>
var so = new SWFObject("imagevue.swf", "imagevue", "100%", "100%", "6", "#FFFFFF");
so.addVariable("backimage", "false");
so.addVariable("folder", "content/France/In-france/");
so.addVariable("startheading", "false");
so.write("imagevue");
</script>

Posted: 05 Dec 2007, 13:40
by Elisa
In fact, when I have an html page, I want to stop displaying the "groupFolder", but not "groupFolder" AND "image folder".

But I want the function to be active again if I navigated in the animation, with the help of menu.

Look my page : http://www.mir-photo.fr/_dubai-golf-beach.htm

Thanks!

Posted: 06 Dec 2007, 02:02
by mjau-mjau
You can enable/disable the startheading explicitly for each url, just using url parameter, or you can set it on a page-by-page basis.
Code
so.addVariable("startheading", "false"); 
Code
so.addVariable("startheading", "true"); 
If you want the startheading to be enabled for a specific page, let it be true. If you want it disabled for a specific page, set it to false.
Elisa wrote:But I want the function to be active again if I navigated in the animation, with the help of menu.
Don't you always have to navigate to the gallery from the navigation? It sounds to me you are asking to have 2 different settings for the same page ...

Great photos!

Posted: 13 Dec 2007, 11:45
by Elisa
I just want to have the same title when i arrive on, my page and when i use the menu to navigate...

Look www.mir-photo.fr/_france-infrance.htm

thanks !