This commit is contained in:
Glenn Maynard
2007-04-18 00:53:11 +00:00
parent 3ad20efc27
commit 17c5f11d6c
@@ -0,0 +1,22 @@
local t = Def.ActorFrame { };
t[#t+1] = LoadActor( THEME:GetPathB("ScreenWithMenuElements","underlay") );
t[#t+1] = LoadActor( THEME:GetPathB("", "_moveon") ) .. {
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y);
};
t[#t+1] = Def.Actor {
BeginCommand=function(self)
if SCREENMAN:GetTopScreen():HaveProfileToLoad() then
self:sleep(0.3);
end;
self:queuecommand("Load");
end;
LoadCommand=function()
SCREENMAN:GetTopScreen():Continue();
end;
};
return t;