metis Posted March 17, 2011 Posted March 17, 2011 I would like to make a slide show just do not know how to do that opened up the next slide after X sec or when you click. and that all my pictures were hidden in a dll or something to normal user could not see these photos.
PsaltyDS Posted March 18, 2011 Posted March 18, 2011 LibreOffice Impress Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
wakillon Posted March 18, 2011 Posted March 18, 2011 You can start with an nice ! AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts
metis Posted March 18, 2011 Author Posted March 18, 2011 (edited) and whether this could be done to hide the pictures in the dll file or something similar? Or to put photos in the script to exe converter Edited March 18, 2011 by metis
PsaltyDS Posted March 18, 2011 Posted March 18, 2011 FileInstall(), see help file. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
UEZ Posted March 18, 2011 Posted March 18, 2011 (edited) and whether this could be done to hide the pictures in the dll file or something similar? Or to put photos in the script to exe converter You can add pictures using binary strings to your script and display all pictures from memory. Have a look here or search the forum for examples how to load an image from a binary string. Here the code to create binary strings ; ============================================================================================================================ ; Purpose : Converts any file to HEX binary string ; Author : Ward / UEZ ; ============================================================================================================================ Local $VarName = StringStripWS(InputBox("Convert to Binary String", "Select a name for the variable." & @CRLF & @CRLF & "$ will automatically added to the beginning of the variable!:", "BinaryString"), 3) If $VarName = "" Then Exit Local $FileName = FileOpenDialog("Open a file", @ScriptDir, "DLL file (*.*)") If $FileName = "" Then Exit Local $Handle = FileOpen($FileName, 16) Local $BinaryString = FileRead($Handle) FileClose($Handle) Local $LineLen = 1024 Local $DllString = String($BinaryString) Local $Script = "Func " & $VarName & "()" & @CRLF & @TAB & "Local _" & @CRLF & @TAB & "$" & $VarName & " = '" & StringLeft($DllString, $LineLen) & "'" & @CRLF $DllString = StringTrimLeft($DllString, $LineLen) While StringLen($DllString) > $LineLen $Script &= " $" & $VarName & " &= '" & StringLeft($DllString, $LineLen) & "'" & @CRLF $DllString = StringTrimLeft($DllString, $LineLen) WEnd If StringLen($DllString) <> 0 Then $Script &= " $" & $VarName & " &= '" & $DllString & "'" & @CRLF $Script &= @TAB & "Return Binary($" & $VarName & ")" & @CRLF & "EndFunc" ;~ ConsoleWrite('@@ Debug(' & @ScriptLineNumber & ') : $Script = ' & $Script & @crlf & '>Error code: ' & @error & @crlf) ;### Debug Console ClipPut($Script) MsgBox(64, "Convert to Binary String", "The result is in the clipboard, you can paste it to your script.") Br, UEZ Edited March 18, 2011 by UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now