Jump to content

How to make transparent? "SplashImageOn"


Sandro Alvares
 Share

Recommended Posts

I am probably barking up the wrong tree but here goes

$destination = @Systemdir & "\oobe\images\mslogo.jpg"
SplashImageOn("Splash Screen", $destination,250,50,100,100,1)
WinSetTrans("Splash Screen", "", 100)
Sleep(3000)
SplashOff()


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

BigDod, man i know u said... i wan't a file JPG... i need transparent with file GIF without BORDER

Look my attachment.... problem in border black

Sandro, King Rider H4cK4R, please write your thoughts down. Double check them. Make sure they are not run on's or fragments and then submit.

[quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()

Link to comment
Share on other sites

  • Moderators

my nick is kingrider and name real sandro ... is what a problem?

Flaxcrack is please not noob! i can report you is stop stupid

Then why are you posting a SUPPORT question in the Scripts and Scraps forum?

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

$destination = @ScriptDir & "\image.jpg"
SplashImageOn("Splash Screen", $destination,250,83,400,300,1)
WinSetTrans("Splash Screen", "", 500)
Sleep(3000)
SplashOff()

thats mine, but is it posible to center the image on the screen, not depending which resolution you have? (A)

Link to comment
Share on other sites

$destination = @ScriptDir & "\image.jpg"
SplashImageOn("Splash Screen", $destination,250,83,400,300,1)
WinSetTrans("Splash Screen", "", 500)
Sleep(3000)
SplashOff()

thats mine, but is it posible to center the image on the screen, not depending which resolution you have? (A)

_Middle('Splash Screen','')
; Center Window on Screen
; Author cdkid and Valuater

Func _Middle($win, $txt)
    $size = WinGetClientSize($win, $txt)
    Local $y = (@DesktopHeight / 2) - ($size[1] / 2)
    Local $x = (@DesktopWidth / 2) - ($size[0] / 2)
    Return WinMove($win, $txt, $x, $y)
EndFunc

--somethin like this?

~cdkid

AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!
Link to comment
Share on other sites

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...