Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/19/2024 in all areas

  1. A few key points that I would like you to consider -- I can't speak for others, but I'm not able or willing to provide assistance if you can't stay up-to-date with the latest version of the Webdriver UDF. Similarly, it isn't possible to provide support for older versions of browsers. If it is working with the latest version of Chrome, then it's likely that the problem existed in the older version of Chrome but has been fixed since then by the Chrome developers. I suggest that you read this website. This isn't just directed at you; it's a common issue where people don't take the time to ask the correct question, explain the solution they are actually trying to solve, provide the necessary details, etc. I'm happy to try to assist you further If you do the following -- post a simple script that we can actually run to observe the problem it must utilize the latest version of the Webdriver UDF it must utilize a more recent browser version
    2 points
  2. ioa747

    Read and rename files!

    the .cmd script could be replaced with autoit code. explain to us what nircmd does? show us Type_1.edl, a .wav file, and the .edl file that nircmd produces for the .wav file and maybe even nircmd could be bypassed here is a start #include <FileConstants.au3> #include <Array.au3> #include <MsgBoxConstants.au3> #include <File.au3> ; ------------------------------------------------------ ; Main script to create .edl files from selected .wav files _CreateT1Data() Func _CreateT1Data() ; Ask the user if they want to create T1 data from .wav data Local $confirmCreate = MsgBox(4, "NOTICE!", "Create T1 Data from .wav data?") If $confirmCreate = 6 Then ; If "Yes" is selected ; Prompt the user to select the source folder containing .wav files Local $sourceMessage = "Select Source folder..." Local $sourceFolder = FileSelectFolder($sourceMessage, "F:\Audio\Type_1\wav") If @error Then MsgBox($MB_ICONERROR, "Error", "No folder selected. Exiting.") Return EndIf ; Prompt the user to select the destination folder for the .edl files Local $destMessage = "Select Destination folder for .edl files..." Local $destFolder = FileSelectFolder($destMessage, "G:\Session_Master\Show") If @error Then MsgBox($MB_ICONERROR, "Error", "No destination folder selected. Exiting.") Return EndIf ; Store the list of .wav files from the selected source folder Local $wavFiles = _FileListToArray($sourceFolder, "*.wav", $FLTA_FILES) If @error Then MsgBox($MB_ICONERROR, "Error", "No .wav files found in the selected folder.") Return EndIf ; Specify the path to the master .edl file Local $masterEdlFile = @ScriptDir & "\Type_1.edl" ;"G:\Session_Master\Show\Session_Data\Type_1.edl" If Not FileExists($masterEdlFile) Then MsgBox($MB_ICONERROR, "Error", "Master .edl file not found.") Return EndIf ; Process each .wav file and create corresponding .edl file For $i = 1 To $wavFiles[0] Local $wavFileName = $wavFiles[$i] Local $wavBaseName = StringTrimRight($wavFileName, 4) ; Remove the ".wav" extension ; Destination .edl file path for each .wav file Local $newEdlFile = $destFolder & "\" & $wavBaseName & ".edl" ; Copy the master .edl file and rename it for each .wav file FileCopy($masterEdlFile, $newEdlFile, $FC_OVERWRITE) Next MsgBox($MB_ICONINFORMATION, "Success", "All .edl files have been created successfully.") ElseIf $confirmCreate = 7 Then MsgBox($MB_ICONINFORMATION, "Cancelled", "Operation cancelled by the user.") EndIf EndFunc
    1 point
  3. argumentum

    Font Viewer

    Lets see, ...fund my socks, half a bottle of vodka from a 2010 party, .. oh, here it is. Found it ! FontViewer_source.zip Is old code so it is unlikely that it'll run as is. Have fun
    1 point
  4. Hello Community, let me introduce you to one of my latest projects (with several more in the pipeline), the DCS - Dynamic Cursor Selector My secondary display is the TV in my living room. From the couch the mouse cursor always seemed too small, and also the Explorer Window was hard to read. As I use my computer for home-cinema, I started to code DCS to increase the size of the cursor and the Windows Explorer window for easier browsing and movie selection. DCS dynamically selects the cursor set and size, depending on the display the mouse cursor is on. The amount of displays to customize is automatically adjusted (minimum 2). Possible cursor sizes to select are 32px, 48px, 64px, 96px and 128px. In DCS you can select from two default Windows cursor sets, and it comes with three more custom sets to choose from. The DCS settings can be accessed through the DCS tray icon. Additionally, you have the option to magnify the Windows Explorer window, depending on the display the cursor is on. You can add your own cursor set, take a look at the instructions in the "Cursors" sub-directory. If you have nice sets, please feel free to share them with me and I'll add them to the next release. The executable and the source can be downloaded from my site: https://funk.eu Enjoy, and let me know what you think of DCS, with Best Regards
    1 point
  5. Only example that I can think of is a touchscreen with pinch / zoom features.
    1 point
×
×
  • Create New...