View Single Post
  #178  
Old 14-03-2023, 02:34
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
A lightweight version of the "METRO" script. Without Autorun and tiles in the form of tiles.
FMXInno + IsArcEx
This is a demo version (demonstration of the capabilities of the dynamic library FMXInno) do not use it for its intended purpose. Only for Windows 10-11
-----------------------
Minor update. Changed the animation effect (I spied UWPTiles here).

added some functions to ExitForm, now it's 100% customizable.

Code:
procedure YesBtnVisible(FVisible: Boolean); 
procedure NoBtnVisible(FVisible: Boolean);
procedure Msg1Visible(FVisible: Boolean);
procedure Msg2Visible(FVisible: Boolean);

Code:
Example:  New Buttons

  ExitForm.YesBtnVisible(False);
  ExitForm.NoBtnVisible(False);

  NewExitBtn[1].FCreate(ExitForm.Handle, ExitForm.GetWidth - NSX(310), ExitForm.GetHeight - NSY(70), 'Yes', False);
  NewExitBtn[1].BackColor(ALPaleturquoise);
  NewExitBtn[1].OnClick(@CommonOnClick);

  NewExitBtn[2].FCreate(ExitForm.Handle, ExitForm.GetWidth - NSX(200), ExitForm.GetHeight - NSY(70), 'No', False);
  NewExitBtn[2].BackColor(ALPaleturquoise);
  NewExitBtn[2].OnClick(@CommonOnClick);
.

Last edited by BLACKFIRE69; 14-07-2024 at 01:51.
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (14-03-2023), ffmla (15-03-2023), ScOOt3r (14-03-2023)