ActiveDen

Fresh Idea XML Template

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

hi, How do i insert my own swf into the external page?

activetofocus

You just add menu in main_config.xml like our example external menu.Thanks.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Hi activetofocus… Great template and nice features. I like everything here but am having a bit of trouble with the Gallery. It does not load at all now. I have the originals and the edited versions and cannot see where the error could be. I checked the proper folders but still no clues there. When I debug the gallery.fla file i can see the changes that i make but when I go back to the main file… it does not load, it simply hangs.

activetofocus

Please send us a screenshots for your question.

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
  • Turkey
donanma44 Purchased

Hi,

contact.php not working in contact.swf.

My e-mail address in contact.php // add your receiver mail $receiver = “info@cetingida.com.tr”;

My web-site: http://www.cetingida.com.tr/contact.swf

Please help me.

activetofocus

Please make sure your host support php!

  • Bought between 10 and 49 items
  • Europe
  • Exclusive Author
  • Has been a member for 4-5 years
  • Sold between 100 and 1 000 dollars
siracel Purchased

Hi, it’s great template! I have a question: If I clicked to social buttons, it is opening “_blank”, but i wanna to open “_self”. How can i do that? Thanks now.

activetofocus

Please open SocialItem.as then change _blank to _self.

  • Bought between 10 and 49 items
  • Europe
  • Exclusive Author
  • Has been a member for 4-5 years
  • Sold between 100 and 1 000 dollars
siracel Purchased

Hi Activetofocus, There is not socialItem.as file but there is socialIcons.as. The codes bellow:

private function onMouseClick(evt:MouseEvent):void { switch(evt.currentTarget.name) { case "btn_0" : GetURL.open(_params.feed.toString()); break; case "btn_1" : GetURL.open(_params.twitter.toString()); break; case "btn_2" : GetURL.open(_params.flickr.toString()); break; case "btn_3" : GetURL.open(_params.digg.toString()); break; case "btn_4" : GetURL.open(_params.linkedin.toString()); break; case "btn_5" : GetURL.open(_params.youtube.toString()); break; } } } }
activetofocus

GetURL.open(_params.feed.toString(),”_self”); do like it. add ,”_self”

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years
danpi66 Purchased

Hi, I have the template, but I have put several links on the submenu, as I do to enter the submenu ? Example: people, animal, Collection fashion, Collection birds, Mall Center, Mall Sales, .

activetofocus

Please send us email with more details.Thanks

Default-user
danpi66 Purchased

I just send the mail regards

activetofocus

I didn’t got email!

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hi, is there a tutorial on how to change the mp3 player to another? I need one that can support multiple songs.

activetofocus

You need modify some code for it,can u do it? if you can’t do please send us email with a request with your idea.Thanks.

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
CORIE Purchased

Hi, I’d like to have a page with text or image… taller than i can have now… with an “elevator” (or scroll – i don’t know exactly the name) like there is in “About us” page (on the right of the page). I duplicated the “about us” and register it under a new name … but i can’t do / i’m unable to do more. I’m stuck. Could you tell me how i can have a page like i would like ? In short, a taller page than “Ethernal” with scroll. Thanks

activetofocus

Can u send us screenshot with your question!

  • Bought between 10 and 49 items
  • Europe
  • Exclusive Author
  • Has been a member for 4-5 years
  • Sold between 100 and 1 000 dollars

Is it possible to edit as vertical submenus instead horizontal sbumenus?

activetofocus

no support. You can buy our ifocus xml template.

  • Has been a member for 0-1 years

Hello! I’d like to know if you can make a little costumization for this template… Add more pages and add fields for subscription? Thanks!

activetofocus

Yes,we can do help u when u send us modify request after bought it! Thanks.

  • Has been a member for 0-1 years

Welcome. My Website does not work contact. How do we make?

<?php $contact_name = $_POST[‘name’]; $contact_email = $_POST[‘email’]; $contact_message = $_POST[‘message’];

if( $contact_name == true ) { // get sender mail $sender = $contact_email; // add your receiver mail $receiver = “admin@korona.az”; // get sender ip $client_ip = $_SERVER[‘REMOTE_ADDR’]; // mail content $email_body = “Name: $contact_name \nEmail: $sender \n\nMessage: \n\n$contact_message \n\nIP: $client_ip”; $extra = “Content-type: text/plain; charset=UTF-8\r\n” . “From: $sender\r\n” . “Reply-To: $sender \r\n” . “X-Mailer: PHP /” . phpversion(); // mail send state if( mail( $receiver, “Obright XML Templage Form”, $email_body, $extra ) ) { echo “success=yes”; } else { echo “success=no”; } } ?>

but I do not e-mail

activetofocus

Hi: Your host support PHP ? and tell me your host domain. Many client tell me godaddy host not support it.

  • Has been a member for 0-1 years

host www.sol.az . yes support PHP

Website worked before. Now that the site is not working codu the old site contactphp

<?php

$sendto = ‘admin@korona.az’; $subject = ‘e-mail from korona.az contact form’; $name = $_POST[‘fromname’]; $from = $_POST[‘fromemail’]; $message = $_POST[‘frommessage’]; $message = stripslashes($message);

$content = “Name: ” . $name . ”\n”; $content .= “E-mail: ” . $from . ”\n\n”; $content .= “Message: ” . $message;

if(mail($sendto, $subject, $content)) { echo ‘response = passed’; } else { echo ‘response = fail’; }

?>

action script old site: stop ();

send_mc.addEventListener (MouseEvent.CLICK, submit); clear_mc.addEventListener (MouseEvent.CLICK, clean);

function submit (event:MouseEvent):void { if ((name_txt.text != ””) && (email_txt.text != ””) && (message_txt.text != ””)) { var variables:URLVariables = new URLVariables(); variables.fromname = name_txt.text; variables.fromemail = email_txt.text; variables.frommessage = message_txt.text; }

var req:URLRequest = new URLRequest("contact.php");
    req.data = variables;
    req.method = URLRequestMethod.POST;
}
else
{
    status_txt.text = "Z?hm?t olmasa bütün sah?l?ri doldurun.";
}
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
loader.addEventListener (Event.COMPLETE, sent);
loader.addEventListener (IOErrorEvent.IO_ERROR, error);
loader.load (req);
status_txt.text = "Mesaj?n?z gönd?rilir, z?hm?t olmasa gözl?yin...";

function sent (event:Event):void { status_txt.text = “Sizin mesaj gönd?rildi. T???kkür edirik!”; name_txt.text = ””; email_txt.text = ””; message_txt.text = ””; }

function error (event:IOError):void { status_txt.text = “T??süf ki, sizin mesaj gönd?ril? bilm?di, z?hm?t olmasa bir az sonra bir daha yoxlay?n.”; }

function clean (event:MouseEvent):void { name_txt.text = ””; email_txt.text = ””; message_txt.text = ””; }

  • Has been a member for 0-1 years

pliz help meeeeeee

activetofocus

I find u didn’t buy our product.

  • Has been a member for 0-1 years

Please Please Please Please Please Please Please Please Please Please Please Please Please Please help

activetofocus

You didn’t bought any product,why need get help?

  • Has been a member for 0-1 years

This site supports multiple languages??? How to rus, eng, fr, it, languages ??are

activetofocus

This is flash template, you need enabled your language text. Many people already had do use the method. Thanks.

Default-user

How can i enabled

  • Has been a member for 0-1 years
activetofocus

Hi, you can do multi-language for it. Thanks.

Default-user

How do you do? How do I? She does not have tamplate Language Options. can you elaborate? I buy

tamplate be like this. http://activeden.net/item/multilanguage-xml-deeplinking-website-template/159151?sso?WT.ac=search_item&WT.seg_1=search_item&WT.z_author=LambertGroup

activetofocus

I think you need translate them for them like root/en/ root/cn/ for multilanguage tempalte for it.. Thanks.

  • Has been a member for 0-1 years

How do you do? How do I? She does not have tamplate Language Options. can you elaborate? I buy

tamplate be like this. http://activeden.net/item/multilanguage-xml-deeplinking-website-template/159151?sso?WT.ac=search_item&WT.seg_1=search_item&WT.z_author=LambertGroup

by
by
by
by
by