Some pictures of Advanced Setup Creator
At least you
MAY be able to add as many labels, images and other graphic objects as you want and remove the ones which you do not want.
Working with this difficult Delphi code but I am learning, and I now know what is happening.
type
TCustomEffect = (efNormal, efShadow, efBlur, efGlow, efInnerGlow, efReflection);
TCustomFontStyles = record
Bold, Italic, Underline, StrikeOut, Uppercase, Lowercase: Boolean;
end;
TCustomPosition = record
Left, Top, Width, Height, Rotation, OffsetX, OffSetY: Single;
end;
TCustomLabel = class
strict private
Shd: TShadowEffect;
Blr: TBlurEffect;
Glw: TGlowEffect;
IGl: TInnerGlowEffect;
Ref: TReflectionEffect;
Sel: TSelection;
Lbl: TLabel;
Text: String;
public
protected
published
constructor Create(AOwner: TComponent);
function ReadPosition: TCustomPosition;
function ReadFont: TFont;
function ReadFontColor: TAlphaColor;
function ReadText: String;
procedure WritePosition(Left, Top, Width, Height, Rotation, OffsetX, OffSetY: Single);
function WriteFont: TFont;
function WriteFontColor: TAlphaColor;
function WrtieText: String;
end;