I'm sorry but I'm poor programist. I tried as You suggested:
local wi;
local he;
if ( fe.game_info(Info.Rotation) == 0 )
{
wi=256;
he=192;
}
else
{
wi=192;
he=256;
}
local t = fe.add_artwork( "snap", 16, 16, wi, he );
t.trigger = Transition.EndNavigation;
Now attract mode always setting 192x256 even if currently visible game is with orientation 270, not to mention that switching on the fly does not work.EDIT. Ok, fe.game_info(Info.Rotation) was not integer, new version:
local wi;
local he;
local or = fe.game_info(Info.Rotation);
local orint = or.tointeger();
if (orint > 0 )
{
wi=240;
he=320;
}
else
{
wi=320;
he=240;
}
local t = fe.add_artwork( "snap", 300, 16, wi, he );
t.trigger = Transition.EndNavigation;
works but still not on the fly, parameters are taken only from first game and that's it

I suppose I have to loop t.trigger = Transition.EndNavigation; Is it possible to changing snap area on the fly (variable wight and height attributes) ?