I found this HUD mel here at Highend3D. How can I make todays date and my name their own independent HUDs and appear in big white letters not (GREEN)? I have tried to remove the (global pro string tdate) from this script, but my result was the phrase (No Data) next to my name. Since I am not very familiar with mel can anyone please help?
//GETTING TODAY'S DATE
global proc string tdate()
{
string $qwert = eval("system(\"date /t\")");
return $qwert;
}
//ADDING YOUR NAME
headsUpDisplay
-section 5
-block 2
-blockSize "large"
-dfs "large" // change to "large" for a bigger size
-ao 1
-l "Joe" // <--CHANGE YOUR NAME HERE
-command tdate
-atr
HUDArtistName;
//ADDING YOUR NAME MENU ITEM
global string $gHeadsUpDisplayMenu;
menuItem
-parent $gHeadsUpDisplayMenu
-checkBox true
-label "YOUR Name"
-command "headsUpDisplay -e -vis #1 HUDArtistName"
-annotation "Your Name: Toggle the display of YOUR name here";