PDA

View Full Version : DLLFadeInOutWin.dll - AMS7 - FREE - Intrigued



Intrigued
04-27-2008, 09:55 PM
I thought someone might find this amusing. I was messing around with a lib. for PureBasic and threw this together a couple minutes ago:

http://www.amsuser.com/ams/examples/WindowImplode-AMS7-Intrigued.apz

Click the button on the page and the AMS window "implodes" to nothingness and then comes back to life (visible).

One could even create a .dll with Window FX (slide out from any side of the computer screen) as well. I posted about it in another thread here a few minutes ago.

(Credit for the source in part goes to: Droopy Library v1.30.10 (24/1/2008))

RizlaUK
04-27-2008, 10:10 PM
when i made the splash image transition engine dll i also made a window transition engine dll but never released it because of that nasty (window turning black) thing, is thre any way to stop that, i searched the pb forum at the time but to no aval, on a PB app it worked a dream but in AMS it dose that window turning black thing.


cheers for the heads up on the Droopy lib, i dident know there was a update, must check out the new functions (half that lib is posted here in the forum in dll form, it was a great starting point to learn to make dll's.)

Intrigued
04-27-2008, 10:25 PM
I was goofing around to find a way... off to bed, but here is where I left off with PB code:


ProcedureDLL FADEOUT(handle.l)
For c = 0 To 255 Step 10
SetWinBackgroundColor(handle.l, $FFFFFF)
SetWindowsTransparency(handle.l, c)
Next
EndProcedure

I'm sure you'll hammer something out.

keeps it white, but has a lovely crash at the end. D'oh!

:yes