It's a program that display lyrics for church songs. (Sorry in French only, but can be used for any languages...) and images like (jpg, png, bmp,..) and resize them. - Fade in effect (thanks to UEZ) - Slide show (display pictures every x sec) - Open, save list for more flexibility... - Can handle videos (with VLC)
Thanks to many of the forum members where I took some part of the code...
NEW VERSION V1.4.0 (see link below) 11.2012
NEW: Change Font Fixed: Small bugs, improve few things (Ctrl disable when cannot be used,...) Fixed: Cycle not working properly with ppt and movie
But a little book is more practical than a laptop in church ! Bonne Année !
In my church they display the words to the songs on 2 projection screens as we sing them, that way no books are required. This script seems to do the same functions but in a much more elaborate way than how they do it in my church. If we didn't have the functionality already, I probably would have suggested this to them.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
This is very well done! My church uses a program called songshow plus, the version we have does not do video, I would love to see this program handle videeo and have a fade in/out. Very well done cramaboule!
This is very well done! My church uses a program called songshow plus, the version we have does not do video, I would love to see this program handle videeo and have a fade in/out. Very well done cramaboule!
There is the fade in/out option For the video I will publish a nice script that is working with VLC It does the dual monitor of course !
Make sure brain is in gear before opening mouth!Ignoring those who try to divert conversation with irrelevancies.If I put effort into communication, I expect you to read properly & fully, or just not comment.If I'm intent on insulting you or being rude, I will be obvious, not ambiguous about it.I'm only big and bad, to those who have an over-active imagination.I may have the Artistic Liesense to disagree with you.TheSaint's Toolbox
- Added: Black or Background Mode (added Button) - Fixed: Translation is now working in Win7 - Fixed: Movies play now correctly - Fixed: Works for XP and WIN 7 - Fixed: Small bugs in cycle - Fixed: _ReduceMemory() put in _Fade() Function for better performance. - Fixed: small bugs in the display of the author, copyright,... - Changed: Time of Transition is now in ms for Win7
This is an excellent program, I love it.
Would it be easy to adapte it so that it displays web pages?
This will be an excellent application for digital signage.
Please email me at oranais@hotmail.com if you think it is possible.
Thank you.
- Added: Ability to change the layout opacity - Added: Layout opacity in black or white - Added: Check the version of the .lst file - Addes: Module Update if connected to IE
just one thing i can't work out, how do you make an autoit gui go full screen on the second display?
Hi twitchyliquid64, Thanks! He he he he he!!!! Easy!!! First of all you have to know which sreen is your 'second display':
#region Detect Monitor$Monitor=_GetMonitors()If$Monitor[0][0]=2ThenIf($Monitor[1][1]=0)And($Monitor[1][2]=0)Then; According to Microsoft, the Main Monitor has the coordinates 0,0, ..., ...$MonL[2]=$Monitor[2][1]; Monitor 1 Main - Monitor 2 Display$MonT[2]=$Monitor[2][2]$MonL[1]=$Monitor[1][1]$MonT[1]=$Monitor[1][2]$Mon=1Else$MonL[2]=$Monitor[1][1]; Monitor 2 Main - Monitor 1 Display$MonT[2]=$Monitor[1][2]$MonL[1]=$Monitor[2][1]$MonT[1]=$Monitor[2][2]$Mon=2EndIfElse$Mon=1; Only 1 MonitorEndIf#endregion Detect Monitor
(Line 195 and following in my prg) Then create a GUI WITHOUT border on that 'display' In my prg I create 3 GUI's for the fade effect (but 1 is possible of course!)