Xml menu DONE :)

yeah i managed to sort out the php script with a lil help from another forum. Its just that i tried the tut on here out put xml via mysql & php and it lays it out differently.

your gona hate me thou, one other thing, for the gallery version of your menu. I want the xml file to hold an info tag to with a description about the pic. But i just want a dynamic text field on the page but not in the actual button that your menu makes, and when you click on a button the info text will appear in the dy text field is this possible to do???

yeah its possible…I’ll attach it later

I wonder how many times in this thread I said “Yeah, its possible” :trout:

lol, cheers hga77, your menu is wicked.

Hi, Just a quick question about this menu, which I must admit rox my sox! I think i understand what the lines of code do and stuff, kind of at least. But ive exported it as an swf in mx2004 and it will only work as long as I dont export with Flash Player 7… any clue why?

Just curious

I really could’nt tell you. I havent used mx2004 yet…sorry

Ok, I think it has something to do with the new security features. I’ll try to figure it out, cause FP7 has some good ways of dealing with flv’s. If i figure it out, I’ll let you know… and if anyone else figures it out:P… let me know? :stuck_out_tongue:

Thanks y’all

My final version for this menu - v3

This version follows the same pattern as v2. So please read the thread before you ask any questions. You never know, you might find your answer :wink:

Added v3 features:

  • upto 3 level menu (top level, sub level, subsub level)
  • extra configuration xml file. You can now setup the look n feel of the menu from outside flash. From the ‘menuConfig’ xml file, you can:

– set menu speed
– set menu spacer
– set color speed (speed of color transitions when rollOver/rollOut)
– set item colors
– set item delay (the time/speed at which the items pop-up on screen)

:hugegrin:

cheers hga77, once again a superp menu.

On the gallery menu, how would i add a text field for a description of an image??? I have got a text filed, but it will only display the image path and nothing else.

ok Ibeetles, which gallery you talking about, from which post? I think I know what you need. If you tell me which fla, i’ll do it now!

its post #182 gallery_v1. I keep getting undefined int he text box.

also im gona try and have a go at next & prev buts, i shall let you know how i get on.

Ibeetles, I hope this is what you want :slight_smile:

thats nearly there, is there anyway that i could have the picDesc information in the xml document rather then in a seperate txt file???

I’m creating the xml file via php, whcih grabs all the information from a mySql db.

yes it is possible. Have you already coded the php? i.e. do you have an xml layout structure that I can look at?

here is the php code i have, thou this is not for the gallery as i dont have the code here with me but this is an identical file.

<? 
include("connect.php");

header("Content-type: text/xml"); 

$linkID = mysql_connect($host, $user, $pass) or die("Could not connect to host."); 
mysql_select_db($database, $linkID) or die("Could not find database."); 

$query = "SELECT * FROM players ORDER BY number, last_name, first_name"; 
$result = mysql_query($query, $linkID) or die("Data not found."); 

$xml_output = "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>
"; 
$xml_output .= "<menu>
"; 

	for ($x = 0; $x < mysql_num_rows($result) ; $x++){ 
		$row = mysql_fetch_assoc($result); 
		
$xml_output .= "	<item name =\"" . $row['first_name'] . "&#160;" . "&lt;b&gt;" . $row['last_name'] . "&lt;/b&gt;" . "\" number =\"" . $row['number'] . "\" pos =\"" . $row['pos'] . "\" apps_l =\"" . $row['apps_l'] . "\" goals_l =\"" . $row['goals_l'] . "\" apps_c =\"" . $row['apps_c'] . "\" goals_c =\"" . $row['goals_c'] . "\" yellow =\"" . $row['yellow'] . "\" red =\"" . $row['red'] . "\" apps_total =\"" . $row['apps_l'] . "\" >
"; 

		$xml_output .= "	</item>
"; 
	} 

	$xml_output .= "</menu>"; 

	print $xml_output; 

?>

You can see this working here http://members.lycos.co.uk/lbeetles/bhfc0405/players.html

your php is currently outputing this xml layout:

<menu> 

       	<item name ="" pos ="" apps_l = "" goals_l ="" apps_c ="" goals_c ="">
	</item> 
   
</menu>

alot more attributes too…but i left them out.

so at the moment your php dosnt output allocated space for you description text. You would need to change you php code. I assume the description text is stored within the db? You would need to hard code this php so that you have another node (not attribute), within this node you would have your text.

i will post later the code i am using for the gallery page itself rather then another file. Thanks for all your help on this hga77.

no problem :slight_smile:

Hi hga77, find atatched the gallery files i was talking about. I can’t get it to read the desc=“blah blah” bit of the xml file, any ideas how i would be able to manage this???

“unexpected file format”

I’m on mx

Here you go in mx format, cheers.