free flash templates
free flash templates menu free css & photoshop templates menu free flash animation

PDA

View Full Version : [SOLVED] Customize Template9


przemo665
12-10-2009, 12:31 PM
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
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
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
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
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 :

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


by




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;
}