whatever I have done lately.

This commit is contained in:
Jonathan Payne
2011-04-25 11:45:06 -07:00
parent a04f956646
commit 927a172fea
47 changed files with 308 additions and 91 deletions
@@ -0,0 +1,12 @@
local gc = Var("GameCommand");
local t = Def.ActorFrame {
LoadActor("Style " .. gc:GetText() );
};
-- This works.
t[1].OnCommand=Screen.Metric("ScrollerItemOnCommand");
t[1].GainFocusCommand=Screen.Metric("ScrollerItemGainFocusCommand");
t[1].LoseFocusCommand=Screen.Metric("ScrollerItemLoseFocusCommand");
t[1].OffFocusedCommand=Screen.Metric("ScrollerItemOffFocusedCommand");
t[1].OffUnfocusedCommand=Screen.Metric("ScrollerItemOffUnfocusedCommand");
return t;