OK Guys, here is the much awaited dll version of my spalsh transition engine, i was going to charge a small fee for the dll but as iv been "out of touch" for a while i had a change of heart and i want to give you guys something.....so here it is
--------------------------------------------------------------------------------------
Splash Image Transition Engine DLL v1.0.0.4
--------------------------------------------------------------------------------------
Programing: Dean Hall
Email: support@dnet-software.com
Website: www.dnet-software.com
--------------------------------------------------------------------------------------
The Splash Image Transition Engine has undergone a complete overhaul, I scraped the old "AutoIt3" exe scripts that powered
the last version and completely remade the whole thing in DLL form with "Pure Basic", this makes the engine a lot more robust
and as its programmed straight off the winAPI it can now be used with any (Windows) OS, although iv only tested it on xp and vista.
And now it even supports ".tif" and ".tga" image formats.
This version also has a tray spalsh image, this enables you to show a animated image from the users system tray (like msn).
--------------------------------------------------------------------------------------
Supported Systems: All Windows OS
Supported Image Formats: (jpg,bmp,png,tif,tga)
To include the transition engine into your project, add the below block of code to your
global functions and edit the path to where you have the files.
--------------------------------------------------------------------------------------Code:-------------------------------------------------------------------------------------- -- Transition Engine Globals --------------------------------------------------------- -------------------------------------------------------------------------------------- -- Path to the dll file -------------------------------------------------------------- STE_DLLPath = _SourceFolder.."\\AutoPlay\\Plugins\\TransitionEngine\\T-Engine.dll"; -- require(_SourceFolder.."\\AutoPlay\\Plugins\\TransitionEngine\\T-Engine.dll"); ------- -------------------------------------------------------------------------------------- -- End Transition Engine Globals -----------------------------------------------------
The functions
Code:-------------------------------------------------------------------------------------- Function: STE_ShowSplashImage() -------------------------------------------------------------------------------------- STE_ShowSplashImage(string ImagePath, : The path of the image file number X, : X Position on screen (0 = Center of screen, -1 = Center of application) number Y, : Y Position on screen (0 = Center of screen, -1 = Center of application) number Enter, : 1 to 10 (see below) number EnterTime, : Time of enter transition (ms) number Delay, : Time to show transition (ms) number Exit, : 1 to 10 (see below) number ExitTime, : Time of exit transition (ms) number Wait,) : Wait for user click (0 = no wait, 1 = wait) number Hide) : Hide the app window (0 = no hide, 1 = hide) -------------------------------------------------------------------------------------- Enter Transitions 1 = Slides the image in from left To right 2 = Slides the image in from right To left 3 = Slides the image in from bottom to top 4 = Slides the image in from top to bottom 5 = Slides the image in from top left 6 = Slides the image in from top right 7 = Slides the image in from bottom left 8 = Slides the image in from bottom right 9 = Makes the image appear from its center 10 = Fades the image in -------------------------------------------------------------------------------------- Exit Transitions 1 = Slides the image out from left To right 2 = Slides the image out from right To left 3 = Slides the image out from bottom to top 4 = Slides the image out from top to bottom 5 = Slides the image out from top left 6 = Slides the image out from top right 7 = Slides the image out from bottom left 8 = Slides the image out from bottom right 9 = Makes the image disappear to its center 10 = Fades the window out -------------------------------------------------------------------------------------- Returns: 0 = success, 1 = fail -------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------- -- Function: STE_ShowTrayImage -------------------------------------------------------------------------------------- STE_ShowTrayImage(_SourceFolder.."\\AutoPlay\\Docs\\TrayImage.bmp",--ImagePath, number Enter, : 1 to 10 (see below) number EnterTime, : Time of enter transition (ms) number Delay, : Time to show transition (ms) number Exit, : 1 to 10 (see below) number ExitTime, : Time of exit transition (ms) number Wait) : Wait for user click (0 = no wait, 1 = wait) -------------------------------------------------------------------------------------- Enter Transitions 1 = Slides the image in from left To right 2 = Slides the image in from right To left 3 = Slides the image in from bottom to top 4 = Slides the image in from top to bottom 5 = Slides the image in from top right 6 = Slides the image in from top left 7 = Slides the image in from bottom right 8 = Slides the image in from bottom left 9 = Makes the image appear from its center 10 = Fades the image in -------------------------------------------------------------------------------------- Exit Transitions 1 = Slides the image out from left To right 2 = Slides the image out from right To left 3 = Slides the image out from bottom to top 4 = Slides the image out from top to bottom 5 = Slides the image out from top right 6 = Slides the image out from top left 7 = Slides the image out from bottom right 8 = Slides the image out from bottom left 9 = Makes the image disappear to its center 10 = Fades the window out -------------------------------------------------------------------------------------- Returns: 0 = success, 1 = fail --------------------------------------------------------------------------------------
And heres the apz......Enjoy![]()

.... and Dermot too for the notes, that would have driven me round the bend, although i would have thought it would make more sense to have the image expected in the images folder rather than the Docs
and bearing in mind that the user can select any image, making it fully compatible will be pretty hard
