Haga clic derecho para crear un nuevo documento: ¿cómo?


7

Me siento cómodo con la creación de nuevos documentos desde la línea de comandos en OS X (en mi caso, El Capitan), pero quería explorar la posibilidad de tener una opción similar a Windows para crear un nuevo documento con el botón derecho. He encontrado el siguiente script y sé que debe ejecutarse desde Automator> Workflow> Run AppleScript:

set doc_list to {"Add new..."}
tell application "Finder"
    if not (exists folder "NewHere" of folder (path to application support from user domain)) then
        display dialog "This is the first time you've run NewHere." & return & return & "Files added to the list are located at" & return & "~/Library/Application Support/NewHere" & return & "Removing a file from this folder removes it from the list."
        make new folder at folder (path to application support from user domain) with properties {name:"NewHere"}
    else
        try
            set doc_list to doc_list & name of every file of folder "NewHere" of folder (path to application support from user domain) as list
        end try
    end if
    set my_file to choose from list doc_list with prompt "Choose a document to place here"
    if result is not false then
        set my_file to item 1 of my_file as string
        if my_file is "Add new..." then
            set new_file to choose file
            duplicate file new_file to folder "NewHere" of folder (path to application support from user domain) with replacing
            set my_name to text returned of (display dialog "Enter a name for the new file." default answer (name of new_file as text))
            my do_it((name of new_file as text), my_name)
        else
            set my_name to text returned of (display dialog "Enter a name for the new file." default answer my_file)
            my do_it(my_file, my_name)
        end if
    end if
end tell

on do_it(my_file, my_name)
    tell application "Finder" to set my_dest to (folder of the front window) as text
    set my_dest to my_dest & my_name as text
    set my_origin to (path to application support from user domain) & "NewHere:" & my_file as text
    do shell script "cp " & quoted form of (POSIX path of my_origin) & " " & quoted form of (POSIX path of my_dest)
    tell application "Finder" to open my_dest as alias
end do_it

Me muestra una ventana que dice: "Elija un documento para colocar aquí". ¿Qué se supone que debo hacer para que el script funcione?


Ese script , el código AppleScript en su pregunta, de ninguna manera proporciona una "opción similar a Windows para crear un nuevo documento con el botón derecho", incluso si está envuelto en un flujo de trabajo de Automator Service.
user3439894

Respuestas:


6

Aquí hay un AppleScript que uso como una aplicación AppleScript para poder asignarle el ícono TextEdit y colocarlo en la barra de herramientas del Finder . Luego está disponible para crear un nuevo documento de texto en cualquier lugar en el que esté configurado Finder , para el que tenga permisos de escritura. En otras palabras, si uno intenta crear un nuevo documento de texto en una ubicación a la que solo sea accesible la escritura, por ejemplo, o en cualquier ubicación para la que no tenga permisos de escritura específicos, se le notificará al intentar crear el nuevo documento de texto. root

El código comprueba si un archivo del mismo nombre ya existe y si así lo notifica y trae de vuelta el Guardar como: cuadro de diálogo .

Abra (Apple) Script Editor y copie y pegue el siguiente código en la ventana vacía y guárdelo como Crear nuevo archivo de texto aquí.app . Asegúrese de seleccionar Aplicación de Formato de archivo: en el Guardar como: cuadro de diálogo .

Antes de agregarlo a la barra de herramientas del Finder , querrás cambiar su ícono al que usa TextEdit . Puede abrir la hoja Obtener información para cada aplicación y luego copiar y pegar la de TextEdit.app en la de Crear nuevo archivo de texto aquí.app . Tenga en cuenta que este es el icono que se muestra en la esquina superior izquierda de la hoja Obtener información .

Ahora que tiene un icono más agradable, arrastre y suelte la nueva aplicación en la ubicación de la Barra de herramientas del Finder que le gustaría que fuera. Tenga en cuenta que, según la versión de OS X / macOS, es posible que deba presionar la tecla Comando ⌘ mientras arrastra la aplicación a la Barra de herramientas del Finder .

Para usar, simplemente haga clic en el icono Crear nuevo archivo de texto aquí.app en la Barra de herramientas del Finder y se le solicitará un nombre y se creará y abrirá un nuevo archivo de documento de texto desde la ubicación actual de la ventana del Finder .


on run
    my createNewTextFile()
end run


on createNewTextFile()

    tell application "Finder"
        activate
        set the currentFolder to (folder of the front window as alias)
    end tell

    tell me
        activate
        set fileName to ""
        repeat while fileName = ""
            display dialog "Save As:" with title "Create New Text File Here" default answer fileName buttons {"Cancel", "OK"} default button 2
            set fileName to text returned of the result
        end repeat
        if fileName ends with ".txt" then
            set newTextFile to POSIX path of currentFolder & fileName
        else
            set newTextFile to POSIX path of currentFolder & fileName & ".txt"
        end if

    end tell

    tell application "Finder"
        set itExists to (exists newTextFile as POSIX file)
    end tell

    tell me
        activate
        if itExists is false then
            try
                do shell script "touch \"" & newTextFile & "\"; open \"" & newTextFile & "\""
            on error
                display dialog "Cannot create the \"" & newTextFile & "\" file at this location!..." with title "Cannot Create File" buttons {"OK"} default button 1 with icon stop
            end try
        else
            display dialog "The \"" & newTextFile & "\" file already exists!..." with title "File Already Exists" buttons {"OK"} default button 1 giving up after 5
            my createNewTextFile()
        end if
    end tell

end createNewTextFile

Tenga en cuenta que este código también podría usarse en Automator para un flujo de trabajo de Servicio , sin embargo, descubrí que ya estoy en Finder cuando quiero crear un nuevo documento de texto y es más fácil hacer clic en Crear nuevo archivo de texto aquí. ícono en la barra de herramientas del Finder y luego haga clic con el botón derecho y elija del menú contextual de Servicios que ya tengo.

Además, si modifica el código una vez que la secuencia de comandos se guarda como una aplicación y se coloca en la Barra de herramientas del Finder , deberá eliminar el icono de la Barra de herramientas y luego arrastrar y soltar el Nuevo archivo de texto creado aquí. para que funcione correctamente.


Nota: arrastrar y soltar en el buscador funciona manteniendo presionada la tecla Comando mientras arrastra el archivo .app. Al menos en MacOS 10.12
Jorj


Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.