Kjodiz 1 Posted September 20, 2011 I want to make a script that hides a file in a picture, but I can't figure out how! -.- I've done what i can, but i'm stuck. What i have: expandcollapse popup#include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Hide Me", 615, 438, 612, 218) $Button1 = GUICtrlCreateButton("...", 288, 56, 35, 25) $Input1 = GUICtrlCreateInput("", 160, 56, 121, 21) $Label1 = GUICtrlCreateLabel("Input:", 160, 32, 41, 20) GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") $Button2 = GUICtrlCreateButton("...", 288, 144, 35, 25) GUICtrlCreateInput("", 160, 144, 121, 21) $Label2 = GUICtrlCreateLabel("Output:", 160, 120, 52, 20) GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") $Button3 = GUICtrlCreateButton("OK", 160, 208, 75, 25) $Button4 = GUICtrlCreateButton("Cancel", 248, 208, 75, 25) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Form1 Case $Button1 FileOpendialog("Choose your input file","","all files (*.*)") ;Copy the users choice, and paste it into $input1 Case $Button2 FileOpendialog("Choose your input file","","all files (*.*)") ;Copy the users choice, and paste it into $input2 Case $Button3 ;Copy the users files, and make the file the user wants to hide a .rar ;Maybe a "if not .jpg or .jpeg or .png"? ;Combine the picture and the .rar into a .jpg Case $Button4 Exit Case $Input1 Case $Input2 EndSwitch WEnd I've written what I want to get done, so if you know how to, please help! Share this post Link to post Share on other sites
Melba23 3,455 Posted September 20, 2011 Kjodiz, You might find this thread useful. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
Kjodiz 1 Posted September 20, 2011 M23, Thanks It's kind of the same thing, but instead of text, i want a program I know how to do it in cmd, but i want to make it easier, faster, and share it. Share this post Link to post Share on other sites
SmOke_N 211 Posted September 20, 2011 M23, Thanks It's kind of the same thing, but instead of text, i want a program I know how to do it in cmd, but i want to make it easier, faster, and share it. I can't think of any legitimate reason to do this, care to enlighten? Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Share this post Link to post Share on other sites
Kjodiz 1 Posted September 20, 2011 There is not really a reason for this other than to hide files in a fun way. And what i can assure you of, is that the file within the picture will not open unless you open the picture with winrar, and open it yourself. So there is no way this can be used for viruses.. (that i know of) It's basically just for fun. Share this post Link to post Share on other sites
Jos 2,209 Posted September 20, 2011 Lets close this trail as it leads down the wrong path. 2 BigDod and Rogue5099 reacted to this SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites