free flash templates forum

free flash templates forum (http://forum.freenicetemplates.com/index.php)
-   Free flash templates (http://forum.freenicetemplates.com/forumdisplay.php?f=2)
-   -   [SOLVED] Customize Template9 (http://forum.freenicetemplates.com/showthread.php?t=192)

przemo665 12-10-2009 12:31 PM

Customize Template9
 
Hello.
I have 2 more questions to template9:

1) How can i put link to my other web site in menu?
I have something like that. But it's dosn't work:
myButton('PAGE2','http://www.fnglob.pl/');

2) I made button too (one of free buttons from this site). But when i put it to index.htm - button shows on the bottom. I want to see it to the top of site. Where I should paste that <script>?

Thanks for help.

freenicetemplates 12-10-2009 04:04 PM

Customize free Template 9
 
Hi,
1/ It's a known problem with absolute URL. We will fix that issue before next week. We will post the new button .swf in this thread.
2/ I don't see what you mean, do you have an online example ?

przemo665 12-11-2009 10:35 AM

Quote:

Originally Posted by freenicetemplates (Post 722)
Hi,
1/ It's a known problem with absolute URL. We will fix that issue before next week. We will post the new button .swf in this thread.
2/ I don't see what you mean, do you have an online example ?

1. Ok i will be waiting for this. Thanks You so much.
2. It looks like this:
http://img689.imageshack.us/img689/5756/screen1hr.jpg
http://img23.imageshack.us/img23/959/screen2jl.jpg
I just want to put this button on the top. I don't have any idea - where i should paste that script of the site code.

przemo665 01-05-2010 06:56 AM

Absolute URL's don't works in this template. How can I fix it?
Please help me with this banner:
http://img689.imageshack.us/img689/5756/screen1hr.jpg
http://img23.imageshack.us/img23/959/screen2jl.jpg
How can I put it on the top of site? Next to company logo?
I dont hawe any idea, where in site code - it should be pasted.

JungleDongle 01-05-2010 01:41 PM

Is that problem with absolute URL's already been solved? I have that same problem and my site isn't finished without that fix.

freenicetemplates 01-06-2010 09:55 AM

flash animation buttons
 
Yes...sorry...we have currently a lot work. Try to enhance flash buttons features before the end of the week...

freenicetemplates 01-07-2010 02:34 PM

Absolute URL in flash buttons links
 
Hi,
Here is the hack to allow absolute URL in flash buttons. Open the file js/main.js and replace at the end of the file function :

Code:

function showPage(pageURL,button_id) {
    hideContent(pageURL);
    if (selected_button!="" && button_id!=selected_button) {
            sendToASUnselectButton('anim_'+selected_button);       
    }
    selected_button = button_id;
}

by




Code:

function showPage(pageURL,button_id) {
    if (pageURL.substring(0,4).toLowerCase()=='http') {
        window.open(pageURL, '_blank');
        return;
    };
    hideContent(pageURL);
    if (selected_button!="" && button_id!=selected_button) {
            sendToASUnselectButton('anim_'+selected_button);       
    }
    selected_button = button_id;
}



All times are GMT. The time now is 07:33 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.