Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Transparent Hotbar


gdog12356
 Share

Recommended Posts

Hello, i was wondering if it was possible to have a transparent hotbar. I found this```
Private Declare Function AlphaBlend Lib "msimg32.dll" (ByVal hdc As Long, ByVal lInt As Long, ByVal lInt As _ Long, ByVal lInt As Long, ByVal lInt As Long, ByVal hdc As Long, ByVal lInt As Long, ByVal lInt As Long, ByVal lInt _ As Long, ByVal lInt As Long, ByVal BLENDFUNCT As Long) As Long
```. And robins```
Sub SetTranslucent(ThehWnd As Long, nTrans As Integer)
Dim attrib As Long

  attrib = GetWindowLong(ThehWnd, GWL_EXSTYLE)
  SetWindowLong ThehWnd, GWL_EXSTYLE, attrib Or WS_EX_LAYERED
  SetLayeredWindowAttributes ThehWnd, RGB(0, 0, 0), nTrans, LWA_ALPHA
End Sub
```. And soul told me i need to put it into a sperate form. If someone knows how to do this, could they please explain what i need to do? Basically i want to have the skill bar, transparent enough, so that if the player walks under it, than they can still see the player. :) thanks.
Link to comment
Share on other sites

  • 2 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...