Link to home
Start Free TrialLog in
Avatar of cebasso
cebassoFlag for United States of America

asked on

Blur/Shadow Text

Hello,

In Windows Desktop for example, the Icons has a small Blur/Shadow effect in his text...
Windows Live Messenger has the same effect in every text... except for chat text of course

Somebody knows how to do that? Some component?

I believe it already exists, or at least, near that!

Regards,
Carlos
SOLUTION
Avatar of MerijnB
MerijnB
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
and here's the dfm file...
object frmMain: TfrmMain
  Left = 374
  Top = 122
  Width = 449
  Height = 222
  Caption = 'Shadow Effect demo'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 16
    Top = 16
    Width = 73
    Height = 13
    Caption = 'Enter some text'
  end
  object txtText: TEdit
    Left = 16
    Top = 32
    Width = 233
    Height = 21
    TabOrder = 0
  end
  object btnShadow: TButton
    Left = 256
    Top = 32
    Width = 75
    Height = 25
    Caption = 'Shadow'
    Default = True
    TabOrder = 1
    OnClick = btnShadowClick
  end
  object btnExit: TButton
    Left = 342
    Top = 32
    Width = 75
    Height = 25
    Cancel = True
    Caption = 'Exit'
    TabOrder = 2
    OnClick = btnExitClick
  end
end

Open in new window

Avatar of cebasso

ASKER

Thank you!
Not necessarily solved my problem, but almost there!
Regards