AutoPlay Media Studio Flash Videonuzu Tam Ekran Yapmak (Full screen flash movies) işlemi nasıl olacak kısaca bahsedeceğim.
Buton Kodları
Çıkış Butonu Kodu
On Key Menüsü Kodları
APZ dosyası ektedir
Buton Kodları
PHP:
--Getting the Display ionfo wich will return Width and Height
DisplayInfo = System.GetDisplayInfo();
--Getting windows size wich will return Width and Height
WinSize = Window.GetSize(Application.GetWndHandle());
if (DisplayInfo.Width > WinSize.Width) and (DisplayInfo.Height > WinSize.Height) then
Window.Maximize(Application.GetWndHandle());
Dialog.Message("Notice", "Application is now in full-screen.\nPress ENTER to exit full screen.", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
end
PHP:
Application.Exit();
PHP:
if (e_Key == 13) then
Window.Restore(Application.GetWndHandle());
Dialog.Message("Notice", "You exit full-screen.", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
end
APZ dosyası ektedir