Jump to content

scottfwalter

Member
  • Posts

    39
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by scottfwalter

  1. Dumb question how do you enable pre-releases to update? I'm not finding the option.
  2. I have it: scott@Tantive-IV { ~ } [!556] -> ls -l ~/Library/Preferences/com.apple.SystemProfiler.plist -rw------- 1 scott staff 183 Apr 3 17:06 /Users/scott/Library/Preferences/com.apple.SystemProfiler.plist
  3. I am experiencing the same issue. I looked in the workflow folder and I see these text files: graphics.txt hardware.txt memory.txt software.txt I looked at my console and I see these errors: 4/17/13 3:36:23.028 PM Alfred 2[199]: [ERROR] Script XML Parsing, item missing UID attribute 4/17/13 3:36:23.028 PM Alfred 2[199]: [ERROR] Script XML Parsing, item missing UID attribute 4/17/13 3:36:23.028 PM Alfred 2[199]: [ERROR] Script XML Parsing, item missing UID attribute 4/17/13 3:36:23.029 PM Alfred 2[199]: [ERROR] Script XML Parsing, item missing UID attribute 4/17/13 3:36:23.029 PM Alfred 2[199]: [ERROR] Script XML Parsing, item missing UID attribute 4/17/13 3:36:23.029 PM Alfred 2[199]: [ERROR] Script XML Parsing, item missing UID attribute 4/17/13 3:36:23.029 PM Alfred 2[199]: [ERROR] Script XML Parsing, item missing UID attribute 4/17/13 3:36:23.029 PM Alfred 2[199]: [ERROR] Script XML Parsing, item missing UID attribute
  4. Just a reminder in interactive mode instead of drawing a rectangle you can press the space bar and select a window to capture.
  5. Awesome love this! Don't have to switch to iTunes and can keep my hands on the keyboard. Thanks
  6. thanks for the update. I'll just hold off until Alfred is ready for synching.
  7. I created a bunch of custom url searches in Alfred 2 on my iMac. I then moved the Alfred 2 to Dropbox and setup a symbolic link. I also setup a symbolic link on my Macbook pro. When I started Alfred 2 on my Macbook pro I didn't see any of the custom searches or any preferences that I setup on my iMac. I do see custom workflows that I have setup. Is there some file I need to touch to get Alfred 2 to pick up the preferences? On the Macbook Pro if I tried to re-add one of the custom web searches and it replaced the prefs.plist with just the single new preference. All the other web searches I setup while on my iMac were wiped out. Its almost like Alfred 2 doesn't know it need to look in the prefs.plist. Any ideas or help would be great.
  8. I have this script on alfred_script(argv) set myList to splitString(argv, " ") set numItems to count myList if numItems is less than 3 then display dialog "You need to pass at least 3 arguments" return end if set theServer to item 1 of myList set theUsername to item 2 of myList set thePassword to item 3 of myList set theVolume to item 4 of myList set theUrl to "afp://" & theUsername & ":" & thePassword & "@" & theServer if numItems is 4 then set theUrl to theUrl & "/" & theVolume end if --display dialog theUrl tell application "Finder" mount volume theUrl end tell end alfred_script to splitString(aString, delimiter) set retVal to {} set prevDelimiter to AppleScript's text item delimiters log delimiter set AppleScript's text item delimiters to {delimiter} set retVal to every text item of aString set AppleScript's text item delimiters to prevDelimiter return retVal end splitString The only problem is that it won't work if the volume has a space in it. I can't figure out how to escape a space when entering the query in Alfred
  9. I have this script on alfred_script(argv) set myList to splitString(argv, " ") set numItems to count myList if numItems is less than 3 then display dialog "You need to pass at least 3 arguments" return end if set theServer to item 1 of myList set theUsername to item 2 of myList set thePassword to item 3 of myList set theVolume to item 4 of myList set theUrl to "afp://" & theUsername & ":" & thePassword & "@" & theServer if numItems is 4 then set theUrl to theUrl & "/" & theVolume end if --display dialog theUrl tell application "Finder" mount volume theUrl end tell end alfred_script to splitString(aString, delimiter) set retVal to {} set prevDelimiter to AppleScript's text item delimiters log delimiter set AppleScript's text item delimiters to {delimiter} set retVal to every text item of aString set AppleScript's text item delimiters to prevDelimiter return retVal end splitString The only problem is that it won't work if the volume has a space in it. I can't figure out how to escape a space when entering the query in Alfred
  10. My workflow is keyword --> run applescript set sfiles to "afp://username:password@coruscant.home/Cargo Transport" tell application "Finder" mount volume sfiles end tell set sfiles to "afp://username:password@coruscant.home/romen" tell application "Finder" mount volume sfiles end tell This script runs standalone in the AppleScript editor as well as Alfred 1. I did notice the following error in the console log: 2/2/13 10:29:37.093 AM Alfred 2[443]: [ERROR] AppleScript Error: { NSAppleScriptErrorNumber = "-1708"; }
  11. I have two ideas for organizing extensions: 1. Ability to right click on a workflow and duplicate 2. Organize workflows into groups or ability to manually sort the workflows
×
×
  • Create New...