ActiveDen

Black V2 XML Flash Template

  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
cparis says

Hi,

I purchased this template and was wondering how I can remove the music player at the bottom right?

Thanks!

10 months ago
Author
ignitethemes ignitethemes replied

Need to see buyers badge, if purchased the bundle leave your question there

10 months ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
cparis says

Is there a way to have at the bottom navigation buttons that load content (text page like the about page)? Or is it web link only?

10 months ago
Author
ignitethemes ignitethemes replied

Need to see buyers badge, if purchased the bundle leave your question there

10 months ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
cparis says

Hi, I just added my questions in the Bundle Comments page. Thanks for your response! C

10 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says

Hi, template looks great couple of questions.

1. Can I easily remove some menus, rename etc by editing the XML files? 2. Can the txt on the images in your demos (splash intro) etc be changed through xml?

Thanks.

7 months ago
Author
ignitethemes ignitethemes replied

Hi, Yes to both questions

7 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
  • Canada
TokyInc says
Purchased

Hi, I bought your template about a year or two ago, I am currently using it and seem to be having a difficult time with the contact form. My first issue is that although I changed the address, the 40 carl address still shows up once I load it onto the web. In my un-uploaded index file, it works perfectly but as soon as I upload it onto my web hosting site, the address changes.

Secondly, the email function seems to not be working. I have changed the PHP file, the xml, and I contacted the hosting site about php5, these all seem to be working correctly.

Thank you!

6 months ago
Author
ignitethemes ignitethemes replied

Hi,
The first part of your question I don’t understand what your talking about, regarding the form double check you’ve followed the instructions correctly, otherwise you will have to contact your service provider to troubleshoot your web server.

6 months ago
  • Has been a member for 0-1 years
tokyincx says

Excuse me, I bought this template a long time ago, and would really appreciate some help asap. I also need to change the font size of the copyright at the bottom of the page. Thank you!

6 months ago
Author
ignitethemes ignitethemes replied

I need to see your buyers badge in order to provide support.

6 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says
Purchased

Hi, I was updating the intro.xml file and now the intro flash wont run. Its just a black screen. I can run the vid ok in flash cs3 and it picks up on the xml file ok but just not on the server? All I did was update the intro xml file and the navigation.xml file. Any ideas?

6 months ago
Author
ignitethemes ignitethemes replied

install the classes, see the help doc

6 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
  • Canada
TokyInc says
Purchased

Okay, this is the third time i’m asking.

The email function is NOT working. I have PHP 5 , the network supports PHP5 . I have linked the email addresses, nothing is working. I need help asap.

Also, I really need to change the font size of the copyright at the bottom of the page. Thank you!

And there is my proof of ownership.

6 months ago
Author
ignitethemes ignitethemes replied

I already answered you previously. I don’t troubleshoot servers, you’ll have to contact your service provider.

6 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
  • Canada
TokyInc says
Purchased

I already contacted the service provider. They said everything was working accordingly, and that I should contact you. Hence why I have.

On another note, you have not answered how to change the font size of the copyright text at the bottom of the page.

6 months ago
Author
ignitethemes ignitethemes replied

inside template.fla, go to the copyright layer

6 months ago
Author
ignitethemes ignitethemes replied
regarding the form try this, open sendmail.php and change all references of:
$HTTP_POST_VARS
to
$_POST
6 months ago
Author
ignitethemes ignitethemes replied

Also at the top of the page change <? to <?php

6 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
  • Canada
TokyInc says
Purchased

Ok, I sent you an email with the coding but I changed everything you said. It still is not working.

Also, I opened up the template.fla with flash CS5 and went to the copyright layer, how do I change it? It doesn’t give me an option. I need to change the font as well as the size.

Thank you! I really need to get this done!

6 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
LaMerlot says

How can I resize the video in the “Black V2 XML Template” Demo Reel page. Please be detailed on where to go.

I don’t like how it make the video so large which degrades the picture. I’m trying to keep the file size as small as possible for streaming.

Thanks

5 months ago
Author
ignitethemes ignitethemes replied

In “demo_reel.xml” you can set the ratio to “wide” for 16:9 or “standard” for 4:3
Any other adjustment would have to be done on a freelance basis because it’s somewhat complicated.

5 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
LaMerlot says

I checked and I do have PHP 5 running. I uploaded everything exactly in the same folder order to the server but it will not send email. Is the below info correct or do I need to change something?

<? //Send Mail PHP // //Upload this file to the root of your web directory

if(!empty($HTTP_POST_VARS[‘sender_mail’]) || !empty($HTTP_POST_VARS[‘sender_message’]) || !empty($HTTP_POST_VARS[‘sender_name’]))

{ //Insert Address(s) to send the mail to $to = “metrovp@live.com”;

//Subject
$subject = "Message from yourdomain.com";
//Body
$body = stripslashes($HTTP_POST_VARS['sender_message']);
$body .= "\n-----------------\n";
$body .= "Mail sent by: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail']  . ">\n";
$body .= "\n\n";
$body .= "\nservice powered by yourdomain.com\n";
$header = "From: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">\n";
$header .= "Reply-To: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">\n";
$header .= "X-Mailer: PHP/" . phpversion() . "\n";
$header .= "X-Priority: 1";
//Mail Sentinel
if(@mail($to, $subject, $body, $header))
{
//Return Mail Status to Flash Form
    echo "output=sent";
} else {
echo "output=error";
}

} else {

echo "output=error";

}

?>

5 months ago
Author
ignitethemes ignitethemes replied

Go to the FAQS , see the last Question, see if that fixes it.

5 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
klynn123 says
Purchased

I purchased this template for a former clients website. I am no longer able to support her questions. Is there a way she can get in contact with you (if she needs a quote, question, etc.)

Her question:

1. How to increase the amount of photos… Is there a way of having an unlimited amount of photo space in regards to my thumbnails and what not? If not what can I do to get more? I’m only showing half of my work.

Thanks.

4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says
Purchased

Sendtofriend.php not working

sendmail.php is working except it displays both successful and unsuccessful main sent messages so I have just made both messages read the successful statement as just removing the error one it says undefined.

Have checked this also: regarding the form try this, open sendmail.php and change all references of:

$HTTP_POST_VARS

to

$_POST

Posted 2 months ago Report Author ignitethemes ignitethemes replied

Also at the top of the page change <? to <?php

Please advise.

4 months ago
Author
ignitethemes ignitethemes replied

You should consult your service provider, make sure php is configured correctly on your server.

4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says
Purchased

Also I have set all deeplinking code in Mainsite actions line 275 onwards to new site name but it is still picking up the v2 portfolio black from somewhere.

When I turn deeplinking off in navigation.xml it keeps my site name on main browser page.

4 months ago
Author
ignitethemes ignitethemes replied

Make sure you change the page title in “index.html” and also set the page title and slogan in “navigation.xml”

4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says
Purchased

index.html is fine and also navigation.html there is no reference to page title just the buttons links.

What else can it be?

4 months ago
Author
ignitethemes ignitethemes replied

you need to set the deeplinking titles, see the help documentation

4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says
Purchased

If I want the site to default to opening the About tab not the home intro page etc how do I do that? I have changed the name in the template.fla myxml2 to open about.fla file but it isnt working. I want to be able to click the current “home” to launch the slideshow not have the site open it by default.

4 months ago
Author
ignitethemes ignitethemes replied

open “template.fla” click inside “mainSite” movieclip, go to the actions layer and change line 175.

4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says
Purchased

php 5.2.6 is installed and configured for hundreds of other clients. There must be something in the code that isnt right.

My send to friend works My contact form does not.

They are both in the httpdocs folder of the server along with the rest of the template files.

4 months ago
Author
ignitethemes ignitethemes replied

You previously said the contact form works, are you receiving messages or not?

4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says
Purchased

Sorry for confusing things. The contact us works (except it displays both success and error messages so I made both messages success to get around that.

The sent to friend does not. It thinks it has worked but nothing comes through.

Edited line 175 from intro.swf to aboutus.swf no difference.

4 months ago
Author
ignitethemes ignitethemes replied

You might wanna double check your edits in the php

4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
NZSlashman says
Purchased

How else can I get line 175 wrong? Changed intro.swf to aboutus.swf and it doesnt work.

Send to friend does not work. What specifically should I check with ISP .

4 months ago
Author
ignitethemes ignitethemes replied

I don’t know what your doing wrong, very busy I can help you further on a freelance basis. If you want a quote send me an email via my profile.

4 months ago
by
by
by
by
by