Window’s windows always on top

Sometimes you just need a window to always be on top in windows.

Try DeskPins, a lightweight utility that achieves this purpose.

Posted in XP | Leave a comment

Multiple Variables for Automator’s “Run AppleScript” action

  1. Save your variables via separate “Set Value of Variable” actions
  2. Stack multiple “Get Value of Variable” actions, making sure they link to each other.
  3. Connect the last “Get Value of Variable” action to the “Run AppleScript” action
  4. the input variable will now be an array – access each element normally eg
    1. set firstVar to first item of input
    2. set secondVar to second item of input
Posted in Automator | Leave a comment

IOS Dismiss Keyboard

  1. Open the xib file
  2. Select the xib’s view object
  3. Under Identity Inspector, set the class to UIControl
  4. Under Connections Inspector, the touch events should now be accessible
  5. Link the touchupinside event to an IBAction
  6. Use resignFirstResponder method to dismiss all textfields that calls the keyboard
Posted in IOS | Leave a comment