Jump to content

RelaaX

Members
  • Posts

    4
  • Joined

  • Last visited

About RelaaX

  • Birthday 08/24/1995

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

RelaaX's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. pretty cool. What if i have 3 different MAC adresses and want to get first or second? Script gives me 3rd (last)
  2. #include <FileConstants.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local Const $sMessage = "Select a single file of any type." Local $sFileOpenDialog = FileOpenDialog($sMessage, "Images\" & "\", "All (*.png)", $FD_FILEMUSTEXIST) If @error Then MsgBox($MB_SYSTEMMODAL, "", "No file was selected.") FileChangeDir(@ScriptDir) Else FileChangeDir(@ScriptDir) ; Replace instances of "|" with @CRLF in the string returned by FileOpenDialog. $sFileOpenDialog = StringReplace($sFileOpenDialog, "|", @CRLF) MsgBox($MB_SYSTEMMODAL, "", "You chose the following file:" & @CRLF & $sFileOpenDialog) EndIf EndFunc $picture = $sFileOpenDialog Okey after many blinds shots already got it. For those who don't know
  3. Yes, thats helpfull. Thanks for navigate
  4. Hello, Hope my question is not that complicated as i see it. In Images folder i keep 10 different files. For the use of the Script i pull out the picture I'm looking for and tag it with 1.png my question: how to build a simple GUI that can be put at the beginning of the script and would looks like 1. Start Script. 2.(GUI) What are we looking for? -> (Pictures from Images folder list.) 3. After selecting 1 from 10 files, script copying the picture to the main direction and tag it as 1.png' 🙉
×
×
  • Create New...