Jump to content

Tyler Eich

Member
  • Posts

    628
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by Tyler Eich

  1. Add 2 or more items to buffer; action buffer 'Drag' an icon from the right side of the window to any other point. The window will move, but the popover for that icon does not disappear. When 'dragging' the buffer icons from Alfred's main search area, the window does not move and the popover disappears. Here's what it looks like: Alfred 2.0.5 (202) on OS X 10.8.4 (12E55). Replicated: yes
  2. You could use a 'Large Type' output at the end of the workflow Cheers
  3. This would be really cool. I often find myself wishing the Buffer were more flexible and easy to use. Right now, it only holds files; however, many workflows return non-file results that could be processed in batch. Example use: Alleyoop by Daniel Shannon. Say I want to update all the workflows except for one that I know introduced a nasty bug in the latest update; instead of activating each update individually (calling Alfred and waiting for Alleyoop every time), I simply add the desired updates to my Buffer, action the Buffer, and choose the 'Update workflows' option. A feature like this has a lot of potential, both for developers and end users. Cheers
  4. How about changing the hotkey settings? Maybe set the Cursor option to 'Left', which will allow you to type at the beginning of the line. Then you can just type the keyword you want and maybe press space to activate. Cheers
  5. You should probably look into Script Filters; check out David Ferguson's post on script filter feedback for more detail. Cheers
  6. Looks good in the picture, but I'm not getting the format shown. For my subtexts, I get Votes:{votes} Answers:{answers} View:{views} Created At:{year-month-day hour-minute-second} Cheers
  7. Have you tried following the steps in 'Why isn't Alfred finding the files I'm looking for?' from Alfred Support? Have you tried to force a Spotlight reindex? You may also check out the 'Not Finding Applications' thread on the Discussions and Help forum Cheers, and I hope your issue is resolved quickly
  8. To put the current answer into Alfred's search, try typing an '=' at the end of your calculation (e.g. '42/7=' or '=sin(60)=' for the advanced calculator) I do like the parentheses idea, though. I hate moving my cursor just to wrap in parentheses. +1 for a smarter parser Cheers
  9. I think your Download link is incorrect It should probably be https://github.com/skyzyx/redbox.alfredworkflow/raw/master/redbox.alfredworkflow Cheers
  10. I helped another user to post screenshots; maybe that will help? I know I'm having trouble following what's going on Here's the link: http://www.alfredforum.com/topic/2529-need-to-be-able-to-put-screenshots-in-questionsanswers/?p=14644 Cheers
  11. If you want to email the Alfred Developers, send an email to info @ alfredapp com In the meantime, maybe you should just use the browser extensions for 1Password. If worse comes to worse, you could also just open the 1Password app and copy & paste from 1Password into your browser. Cheers
  12. You might be interested in this feature request. It describes 'scoped' workflows, that are only activated when certain apps are frontmost. Cheers
  13. +1 Alfred could really outshine the competition with context-aware workflows
  14. I can confirm this. In my testing, the shortcuts seem to respect the initial array of shortcuts; for example, given the /Library folder: ⌘1—9 will navigate to Application Support—Compositions. On ⌫, ⌘1—9 will maintain their original assignments (Application—Compositions), even though the window now shows different hotkeys for folders in /Library. They will not update to the current view, even when arrowing/scrolling/mousing through results. Alfred 2.0.5 (202) on OS X 10.8.4 (12E55). Replicated: yes
  15. +1, I'd love to see this functionality Two usage examples: Top Processes by zhaowu. Activity Monitor has live information; I rarely use the workflow because I want to know when the process in question starts to settle down as it happens Wolfram|Alpha by Tyler Eich. Many users have complained about how long it takes Wolfram|Alpha to respond as they type; if the workflow could let the user know that the script is still working as it provides the last set of results, it could save a few confused users. There are many factors to consider with this behavior, though. What can be 'updated'? Everything (arg, title, subtitle, icon, autocomplete, valid)? Can order of results be changed? Maybe a manual 'disable' button for Alfred's intelligent sorting? Is selection maintained after the update?
  16. I like this idea a lot Say I have a workflow that only interfaces with certain applications (e.g. browsers); instead of getting frustrated with code that checks which app is in the foreground, Alfred automatically blocks or allows my workflow's hotkeys based on which app he detects is frontmost. This concept could be extended to any input (hotkeys, keywords, script filters, file filters, etc.). Say you have several script filters, each with the keyword 'tabs'; one filter's scope is 'Safari' & 'Webkit', another's is 'Chrome' & 'Chrome Canary' & 'Chromium', and another's is 'Camino'. When Chrome is active, typing 'tabs' into Alfred launches only the code necessary to get Chrome's tabs; when in Safari, a different code base is used. Scoping could be applied to an entire workflow or individual objects Context-aware workflows would be incredibly powerful and extend Alfred's intelligence +1 for this idea (if you couldn't tell from my comments )
  17. Several workflows check which apps are running before continuing execution. It would be incredibly handy if this information was readily available via a {running} token (or something similar). This would be faster, more reliable, and more convenient than digging through a list of running processes. Cheers
  18. You might like Servers by David Ferguson; make sure you check out the usage notes first Cheers
  19. {query} should be "{query}" or '{query}'; otherwise Python won't interpret it as a string Cheers
  20. Andrew's already got you covered In Alfred Preferences, go to Appearance > Options > How he looks > Hide menu bar icon. See here: Cheers
  21. Tyler Eich

    Cocoa Lion

    You might also like my Native theme; looks pretty similar to this one Cheers
  22. I think Alfred initializes the alfred_script(q) handler using whatever is passed to the NSAppleScript object. Kind of like this: # What Alfred's Doing alfred_script("Selection in OS X") # Alfred's handler, found in the NSAppleScript object on alfred_script(q) display dialog q end alfred_script So q is assigned to "Selection in OS X" If you wanted to activate the code outside of Alfred, you would have to call the handler manually and provide some value: (* Given this Handler... *) on alfred_script(q) display dialog q end alfred_script (* ...this would work... *) alfred_script("RED ALERT!") (* ...or this would work... *) set some_text to "Lorem ipsum dolor sit amet" alfred_script(some_text) (* ...or even this *) alfred_script("Hello" & space & "World") As for iterating over a list of files, I can't think of a better method (with AppleScript). AppleScript is great for a lot of things, but it's features/syntax are kind of odd .
  23. Of course; variable names are irrelevant Just make sure your alfred_script(variable) matches the variable you use in your script. For example, if you used alfred_script(query), make sure you put query everywhere you want the passed text (like 'Selection in OS X') Examples: on alfred_script(q) display dialog q end alfred_script on alfred_script(query) display dialog query end alfred_script on alfred_script(your_variable_name) display dialog your_variable_name end alfred_script Cheers
  24. "{query}" doesnt work in an NSApplescript; the q variable (alfred_script(q)) is what you use. Try replacing "{query}" with q (no quotes). Cheers
  25. On opening the Alfred Preferences and editing a 'File Filter' object's 'Advanced' fields: Press [+] button Select 'Other...' Hit the [–] button before exiting text field Add more fields (any of them) Next item will be blank Next item will have display problems when field view is scrollable This only seems to happen on the first edit after launching Alfred Preferences. Subsequent edits within the open Preferences do not glitch. Logs from Console.app: 6/6/13 9:19:17.817 PM Alfred Preferences[28898]: *** -[__NSArrayM objectAtIndex:]: index 2 beyond bounds [0 .. 1] 6/6/13 9:19:17.970 PM Alfred Preferences[28898]: ( 0 CoreFoundation 0x00007fff8a0f2b06 __exceptionPreprocess + 198 1 libobjc.A.dylib 0x00007fff8809f3f0 objc_exception_throw + 43 2 CoreFoundation 0x00007fff8a08f8ec -[__NSArrayM objectAtIndex:] + 252 3 Alfred Framework 0x000000010007c456 -[AlfredWorkflowInputFileFilterFields tableView:objectValueForTableColumn:row:] + 89 4 AppKit 0x00007fff8af50f3a -[NSTableView textDidEndEditing:] + 481 5 CoreFoundation 0x00007fff8a0a4eda _CFXNotificationPost + 2554 6 Foundation 0x00007fff8f6517b6 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64 7 AppKit 0x00007fff8ac28a4a -[NSTextView(NSSharing) resignFirstResponder] + 736 8 AppKit 0x00007fff8aaf2708 -[NSWindow makeFirstResponder:] + 430 9 AppKit 0x00007fff8aaf2e53 -[NSWindow endEditingFor:] + 391 10 AppKit 0x00007fff8aba2abe -[NSTableView _endMyEditing] + 116 11 AppKit 0x00007fff8aba2f35 -[NSTableView reloadData] + 201 12 Alfred Framework 0x000000010007c345 -[AlfredWorkflowInputFileFilterFields deleteSelectedRows:] + 85 13 AppKit 0x00007fff8ab46959 -[NSApplication sendAction:to:from:] + 342 14 AppKit 0x00007fff8ab467b7 -[NSControl sendAction:to:] + 85 15 AppKit 0x00007fff8ab466eb -[NSCell _sendActionFrom:] + 138 16 AppKit 0x00007fff8ab44bd3 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1855 17 AppKit 0x00007fff8ab44421 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 504 18 AppKit 0x00007fff8ab43b9c -[NSControl mouseDown:] + 820 19 AppKit 0x00007fff8ab3b50e -[NSWindow sendEvent:] + 6853 20 AppKit 0x00007fff8ab37644 -[NSApplication sendEvent:] + 5761 21 Alfred Preferences 0x000000010000291b Alfred Preferences + 10523 22 AppKit 0x00007fff8aa4d21a -[NSApplication run] + 636 23 AppKit 0x00007fff8a9f1bd6 NSApplicationMain + 869 24 Alfred Preferences 0x00000001000011c4 Alfred Preferences + 4548 ) Alfred 2.0.4 (199) on OS X 10.8.4 (12E55). Replicated: Yes
×
×
  • Create New...