Jump to content

Song display for Church or Digital signage


cramaboule
 Share

Recommended Posts

Hello,

Here is my best script ever!!!

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.6.2 (see link below) 09.2016

Perfect for your presentation!!!

Posted Image

control panel

 

Posted Image

Settings

 

-------------

program can be found HERE

Enjoy!

C.

Edited by cramaboule
new version
Link to comment
Share on other sites

Well done !

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. :x

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

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 !

Link to comment
Share on other sites

Thanks for sharing!

Make sure brain is in gear before opening mouth!
Remember, what is not said, can be just as important as what is said.

Spoiler

What is the Secret Key? Life is like a Donut

If I put effort into communication, I expect you to read properly & fully, or just not comment.
Ignoring those who try to divert conversation with irrelevancies.
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 (be advised many downloads are not working due to ISP screwup with my storage)

userbar.png

Link to comment
Share on other sites

  • 1 month later...
Link to comment
Share on other sites

NEW !!! BeamerV1.2.0 BETA in developpement: with intergation of playing movie

New version release:

BeamerV1.1.2 (07.03.2010)

Fixed: - Fixing bugs about the 'Refrain' that appear in a specific condition

See first post for link

Link to comment
Share on other sites

  • 2 months later...

NEW VERSION V1.2.2 - 01.06.2011

Fixed: Some bugs

Fixed: Better memory handling (thanks to jftuga and w0uter for the _ReduceMemory UDF)

See first post for link to Download

C.

Link to comment
Share on other sites

  • 5 months later...

NEW VERSION V1.2.3 - 22.11.2011

- 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

See first post for link to Download

C.

Link to comment
Share on other sites

  • 3 months later...

Thanks oranais,

Just emailed to you!

NEW VERSION V1.2.4 13.03.2012

- 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

Report bugs : info [at] cramaboule.host22.com

Edit: misstypo

Edited by cramaboule
Link to comment
Share on other sites

  • 2 months later...

NEW VERSION V1.3.0 (see link below) 21.05.2012

ADDED: Can handle MOVIE AND POWERPOINT

(and soon Web page/HTML file!!!)

Perfect for your presentation!!!

Link to comment
Share on other sites

brilliant.

just one thing i can't work out,

how do you make an autoit gui go full screen on the second display?

ongoing projects:-firestorm: Largescale P2P Social NetworkCompleted Autoit Programs/Scripts: Variable Pickler | Networked Streaming Audio (in pure autoIT) | firenet p2p web messenger | Proxy Checker | Dynamic Execute() Code Generator | P2P UDF | Graph Theory Proof of Concept - Breadth First search

Link to comment
Share on other sites

brilliant.

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] = 2 Then
If ($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 = 1
Else
  $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 = 2
EndIf
Else
$Mon = 1 ; Only 1 Monitor
EndIf
#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!)

#region GDI create
If $Monitor[0][0] = 2 Then
$hGDI[2] = GUICreate($head1, 1024, 768, $MonL[2], $MonT[2], $WS_POPUP)
$hGDI[0] = GUICreate($head1, 1024, 768, 3, 3, $WS_POPUP, $WS_EX_MDICHILD, $hGDI[2])
$hGDI[1] = GUICreate($head1, 1024, 768, 3, 3, $WS_POPUP, $WS_EX_MDICHILD, $hGDI[2])
Else
$hGDI[2] = GUICreate($head1, 1024, 768, 0, 0)
$hGDI[0] = GUICreate($head1, 1024, 768, 0, 0, $WS_POPUP, $WS_EX_MDICHILD, $hGDI[2])
$hGDI[1] = GUICreate($head1, 1024, 768, 0, 0, $WS_POPUP, $WS_EX_MDICHILD, $hGDI[2])
EndIf
GUISetBkColor("0x000000", $hGDI[2])
GUISetState(@SW_SHOW, $hGDI[2])
GUISetState(@SW_SHOW, $hGDI[0])
GUISetState(@SW_SHOW, $hGDI[1])
WinSetTrans($hGDI[0], "", 0)
WinSetTrans($hGDI[1], "", 0)
; Set Up GDI+
While Not (_GDIPlus_Startup())
Sleep(10)
WEnd
$hGraphic[0] = _GDIPlus_GraphicsCreateFromHWND($hGDI[0])
$hGraphic[1] = _GDIPlus_GraphicsCreateFromHWND($hGDI[1])
_GDIPlus_GraphicsClear($hGraphic[0])
_GDIPlus_GraphicsClear($hGraphic[1])
$WinStateGDI = WinGetState($head1)
$OldWinStateGDI = $WinStateGDI
#endregion GDI create

line 216 in my prg! Please note that I use

$WS_POPUP
to make the windows without border.

That's it !!!

This is excellent work, I will wait for the Web Pages addition.

thanks a lot.

You're welcome... I am quite busy those days, so... I do not know when I'll do it !

Cram.

Link to comment
Share on other sites

  • 5 months later...
Link to comment
Share on other sites

Loooooooong time ago I created this prg....

Today: NEW: Version 1.6.2 (09.2016)

See first post :-)

Cramaboule

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

×
×
  • Create New...