Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7909519
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:27:13+00:00 2026-06-03T12:27:13+00:00

I wanna to replicate the HUD functionality of https://github.com/jdg/MBProgressHUD in Delphi with firemonkey. This

  • 0

I wanna to replicate the HUD functionality of https://github.com/jdg/MBProgressHUD in Delphi with firemonkey.

This is what look like in iPhone:

HUD

The main issue is how make the form semi-transparent & completely remove the borders.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T12:27:15+00:00Added an answer on June 3, 2026 at 12:27 pm

    Create your Firemonkey HD form, set it’s Fill.Kind to bkNone, and it’s Fill.Color to Null. Additionally, set it’s Transparency property to True, and it’s BorderStyle to bsNone.

    Create a TRectangle (or any shape), and set the Stroke.Kind property to bkNone. Set it’s Fill.Color to Gray, it’s Opacity to 0.5.

    Create a TAniIndicator and TLabel with parent of both as the form. It’s Opacity remains at 1.0. Optionally, also create a TImage and make it the exact same size and position as the TAniIndicator.

    From there, it’s simply a case of working with TFloatAnimation on the TAniIndicator when you want to change the image (to a tick or such) and the label text to simply change to whatever message you want to display. Ideally, you simply create a procedure that accepts either a string or integer as a variable, and then modify the text and indicator/image to match that. For example;

    Procedure TForm1.Process(Mode : Integer);
    Begin
     if Mode = 1 then
     begin
      AniIndicator1.Enabled := True;
      AniIndicator1.Visible := True;
      Image1.Visible := False;
      Label1.TextAlign := TTextAlign.taCenter; // Must be called to reset alignment
      Label1.Text := 'Loading';
     End
     else if Mode = 2 then
     Begin
      AniIndicator1.Enabled := False;
      AniIndicator1.Visible := False;
      Label1.TextAlign := TTextAlign.taCenter; // Must be called to reset alignment
      Image1.Bitmap.LoadFromFile('Tick.png');
      Image1.Visible := True;
      Label1.Text := 'Complete!';
     end;
    end;
    

    You can then create a tpanel in your main form, and then add the above form (that contains the TAniIndicator, label, and rectangle) as a child component. You then call the procedure you created with a valid mode variable and it’ll run as you indicated in the code. It’s easy enough to add more modes and i’ve done something similar with one of my own applications (although it was related to TRectangle rather than creating an indicator).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wanna implement a javascript like method in java , is this possible ?
I wanna do something like this: <?php $editor = new editor('reply.php?topic=100', 'simple'); echo $editor;
I wanna do something like this. I know it’s wrong: var a = from
I wanna create android animation like shown on this example. Only one change I
I wanna verify a digitally signed xml against its schema definition while this schema
I wanna develop an addon (basically a hack) for IPhone native phone app. My
I wanna constrain to input special signs like £ ¬ ¦ in javascript,but they
I wanna to achieve an effect like a fired blue ball (ball with energy)
I wanna show some text (and images) in browser but this text shouldn't be
I wanna stretch this box incase If it doesn`t fit on background area how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.