Hotspots and Icon Filtering

  • Hello all,

    This is my first post here. I am a total newbie to creating panos and need someone who can possibly help with the following:

    1. We need icons in our Panos that will represent different types of categories. We want to be able to filter those via a PHP call to the DB.
    2. So in PHP it would say show x, y, z ... Someone unchecks y then only x and z icons show that are active with tooltips and action URL's....

    We would like to have someone to work with in creating this for us and we are willing to pay for your services.

  • PHP
    <?php
      //...load booleans from database into $icons
    
    
      header("Content-type: text/xml");
      echo file_get_contents("main_xml_stuff.xml");
      for($i = 0; $i < count($icons); $i++)
    	if($icons[$i])
      	echo "<plugin name=\"icon" . $i . "\" visible=\"false\" enabled=\"false\" />";
    ?>
    Code
    swf.addVariable("xml", "myphp.php");

    Like this?

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!