]> git.r.bdr.sh - rbdr/captura/blobdiff - Captura/Scripting/RecordCommand.swift
Attempt more AppleScript support
[rbdr/captura] / Captura / Scripting / RecordCommand.swift
index 8db2656150082db7e71f0d3f0cf685d7979efe30..9d25b59f28480b6ec5d9c99cff40dc089f8b0bef 100644 (file)
@@ -3,13 +3,8 @@ import Foundation
 @objc(RecordCommand)
 class RecordCommand: NSScriptCommand {
     override func performDefaultImplementation() -> Any? {
-      print("AAAH \(self.directParameter)")
       
-      guard let args = self.directParameter as? [String: Any] else {
-          return nil
-      }
-      
-      print("AAH COMMANDS \(args)")
+      let args = self.directParameter as? [String: Any] ?? [:]
       
       // Here you can extract the parameters from the args dictionary and configure your settings
       let x = args["x"] as? Int
@@ -26,8 +21,6 @@ class RecordCommand: NSScriptCommand {
       let autoStart = args["auto_start"] as? Bool
       let maxLength = args["max_length"] as? Int
       
-      print("AAH WIDTH \(width)")
-      
       var skipBackend = false
       if let backendString = args["backend"] as? String {
         if backendString == "" {