afordturtle
Member-
Posts
16 -
Joined
-
Last visited
Recent Profile Visitors
635 profile views
afordturtle's Achievements
Helping Hand (3/5)
1
Reputation
-
How do I open finder windows with finder tabs in Alfred?
afordturtle replied to Kelson01's topic in Discussion & Help
Good stuff! How can this script be modified to open only Finder tabs (not tabs and windows)? -
I am trying to create an Alfred workflow that will open a set of folders as finder tabs. I understand that I need to use a script to achieve this. I located this previous forum thread, but I'm unable to figure out how to modify the script so it only opens the folders as tabs (not tabs and windows): Thank you in advance for any help that anyone can provide!
-
afordturtle reacted to a post in a topic: Copying and Renaming a File with Clipboard Contents
-
afordturtle reacted to a post in a topic: Copying and Renaming a File with Clipboard Contents
-
Copying and Renaming a File with Clipboard Contents
afordturtle replied to afordturtle's topic in Workflow Help & Questions
Awesome. That works perfectly! Thank you for your help. Sorry...I'm a scripting newbie -
Copying and Renaming a File with Clipboard Contents
afordturtle replied to afordturtle's topic in Workflow Help & Questions
Here is the whole workflow I am trying to create. It works as follows: Takes an already created template folder, copies it to the Desktop, and renames it to the query with "Catalog - " in front of it. Then creates a new folder on the desktop with the query as the folder name, and four sub folders within. All of this works great, aside from when the template folder is created and renamed, it inserts "\" in front of where spaces appear in the query. Here is the workflow script...and also a screenshot showing it and the folder output below. In this example, the query "123 Test" was used. cp -a "$HOME/Dropbox (Personal)/Aaron Riddle Photography/Lightroom Settings/Catalog Templates/Catalog - Aaron Riddle Photography Template" "$HOME/Desktop/" mv "$HOME/Desktop/Catalog - Aaron Riddle Photography Template" "$HOME/Desktop/Catalog - {query}" cd $HOME/Desktop; mkdir {query}; cd {query}; mkdir Originals; mkdir Finals; mkdir Blog; mkdir Release; -
Copying and Renaming a File with Clipboard Contents
afordturtle replied to afordturtle's topic in Workflow Help & Questions
Wow thanks for the help! I appreciate it! One last question...how would I adjust the second argument to append a constant prefix (for instance "Job Log" to the front of the folder name prior to {query}? So if my query was "Test Folder"...it would create the folder as "Job Log - Test Folder". Something like this (which doesn't seem to work): mv "$HOME/Desktop/[folder name]" "$HOME/Desktop/Job Log - {query}" -
Hi. I'm trying to create a workflow that renames a folder on my desktop called "Catalog - Aaron Riddle Photography Template" to the current contents of my clipboard. I begin the workflow with a query to input. The input is copied to my clipboard contents. However, when I try to execute the following script to rename the folder, it doesn't work: mv '/Users/aaronriddle/Desktop/Catalog - Aaron Riddle Photography Template' '/Users/aaronriddle/Desktop/{query}' Note if I use that script and change the name of the file to a generic name, like "Test Folder", it works: mv '/Users/aaronriddle/Desktop/Catalog - Aaron Riddle Photography Template' '/Users/aaronriddle/Desktop/Test Folder' So is {query} the right thing to use here? Screenshot also attached. Thank you for any help you can provide!!!
-
dfay reacted to a post in a topic: [SOLVED] Applescript to Paste Text from Alfred Clipboard
-
I was actually able to accomplish this using a combination of applescript (to tab to the next fields), and the Alfred "copy to clipboard" workflow module. https://www.alfredapp.com/help/features/clipboard/accessing-clipboard-history/ Thanks for the reply!
- 2 replies
-
- clipboard history
- clipboard viewer
-
(and 2 more)
Tagged with:
-
I have a workflow where I copy 6 different lines of text and then paste them into 6 different browser fields. I am trying to write an Alfred workflow using Applescript to do this for me automatically. Therefore I need to copy the six different lines of text, invoke the workflow, so that it: Invokes the Alfred clipboard history viewer. Paste the sixth entry. Tabs to the next field. Repeats.... I have this script so far which invokes the Alfred clipboard history viewer, but the next "System Events" line in which command-6 keyboard shortcut is executed still targets the browser....and not the Alfred clipboard history viewer prompt window: tell application "System Events" keystroke "v" using {command down, option down} end tell tell application "System Events" keystroke "6" using {command down} end tell I tried targeting the app itself "Alfred 4" like below, but it does nothing: tell application "System Events" keystroke "v" using {command down, option down} end tell tell application "System Events" tell application "Alfred 4" to activate keystroke "6" using {command down} end tell Can someone help? Thank you!
- 2 replies
-
- clipboard history
- clipboard viewer
-
(and 2 more)
Tagged with:
-
afordturtle reacted to a post in a topic: [SOLVED] Alfred Workflow to Copy a Folder from Dropbox Location to Desktop
-
Hi. I'm looking to create an Alfred workflow that copies a template folder from its location in Dropbox to my Desktop. The folder path to be copied is follows: /Users/aaronriddle/Dropbox (Personal)/Aaron Riddle Photography/Video/Virginia Elope Video Template I want to copy it to my Desktop path as follows: /Users/aaronriddle/Desktop I tried doing this via terminal using the below script: cp -a /Users/aaronriddle/Dropbox (Personal)/Aaron Riddle Photography/Video/Virginia Elope Video Template. /Users/aaronriddle/Desktop/ However, it gives me the following error: zsh: no matches found: (Personal)/Aaron Can someone point out what is wrong with the terminal script, OR suggest if there is a better way to do this? Thank you for your help!
-
WebScreenshots — Take screenshots directly to the web
afordturtle replied to vitor's topic in Share your Workflows
Great workflow! Works flawlessly on Alfred 3. Been looking for something like this for a while since the other Imgur workflow out there stopped working. -
Convert word document to PDF [Version 1.6]
afordturtle replied to vdesabou's topic in Share your Workflows
Not sure if this workflow is being maintained anymore, but it was working great for me until I started using Word 2015 on the Mac. Since then it has stopped working. Any ideas on how to modify either script file to get it working again? Thanks!