Sometimes you want a quick summary of some things to be displayed.
Save as Summary.txt and you should get a button(hopefully you know where to put it)
It doesn't determine the suffix needed to be displayed behind the point count (K or Mil) :(
[CODE]
//Recall Canvas Size and Other Information. First, declare the variables being used
[VarSet,#gwidth,[IGet,Document:Width]]
[VarSet,#gheight,[IGet,Document:Height]]
[VarSet,#gname,[IGetTitle,29916]]//get Item info
[VarSet,#gtoolname,[IGet,29916]]//get Item info
[varSet,#gmaxtools,[ToolGetCount]]//STD ITEMS - 49
[VarSet,#gtools,49]//STD ITEMS - 49
[VarSet,#gdif,((#gmaxtools)-(#gtools))]//Subtract values//Calculated number of Tools
[VarSet,#gsubtools,[SubToolGetCount]]
[VarDef,#gtotalpts,0]
[IButton,???,"Recalls Canvas Size, Tool Count and Points",
[Mesh3DGet,0,,,gpoints]
[VarSet,#gbgcolor,[IGet,4117]]
[VarSet,#gtotalpts,[StrExtract,[IGetTitle,Preferences:Misc:Total Points Count],12,256]]
[VarSet,#note1,[StrMerge,"\nThere are ",#gdif," Tools in this project"]]
[VarSet,#note2,[StrMerge,"\nThe number of Total Points is ",#gtotalpts]]
[VarSet,#note3,[StrMerge,"\nCurrent tool named ",#gname," has ",#gpoints," Points."]]
[VarSet,#note4,[StrMerge,"\nThere are ",#gsubtools," subtools."]]
[VarSet,#note5,[StrMerge,"\nThe Document is ",#gwidth," Wide by ",#gheight," Tall"]]
[VarSet,#note6,[StrMerge,"\nThe number for this color code is ",#gbgcolor]]
[Note,#note1,0,-1,0x080808,1,1,0,1]
[Note,#note2,0,-1,0x080808,1,1,0,1]
[Note,#note3,0,-1,0x080808,1,1,0,1]
[Note,#note4,0,-1,0x080808,1,1,0,1]
[Note,#note5,0,-1,0x080808,1,1,0,1]
[Note,#note6,0,0,0x080808,1,1,0,1]
]//EOF
[/CODE]