Changing the text font & color in add-on video script

This is the php file code to a video jukebox add-on script, for a popular web video script. I’d like to modify it so the “Click Here” text font and color can be changed. Can you help or suggest what I can do to accomplish this?

<?php include("../classes/config.php");?>
<artworkinfo>
<?
$query = "select * from videos where viewtime<>'0000-00-00 00:00:00' and public_private='public' AND approved ='yes' AND promoted ='yes'  limit 10"; // Max 10!";
$db=mysql_connect ($dbhost,$dbusername,$dbpassword) or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ($dbname);

$num_rows = mysql_num_rows(mysql_query("select * from videos WHERE public_private = 'public' AND promoted = 'yes' AND approved ='yes'"));

$result = mysql_query($query) or die ('Query Error: ' . mysql_error());
while ($results = mysql_fetch_array($result)) {
?>

	<albuminfo>
		<artLocation>../up/thumbs/<?=$results['video_id']; ?>.jpg</artLocation>
                <artist><font color="#FF0000">Click Here!!</font></artist>
		<albumName><?=$results['title']; ?></albumName>
		<artistLink>../play.php?vid=<?=$results['indexer']; ?>&src=jukebox</artistLink>
		<albumLink>../play.php?vid=<?=$results['indexer']; ?>&src=jukebox</albumLink>
	</albuminfo>
	<?
}
mysql_close();

?>

</artworkinfo>

your php script doesn’t handle that functionality. Check out the javascripts or AS scripts

Thanks for that feedback. That helped me out.
The script has .js files and .fla files.
I don’t know what to do from here.
I guess I need to find someone who can open these and decipher them for me.

You’re looking for an XLS file, or a different PHP file, or an FLA because this data is represented as XML.
Right click on the text. If it shows the Flash context menu, you’re looking for a FLA file. If not, you’re looking for an XLS or PHP file.