PIZZACAKE I love this app. Looks terrific and really helps me with reading speed and comprehension by avoiding re-reading. Here's an applescript which works as follows: You copy the text (Command C) you want to be read Run the applescript which does: Asks if you want to open iReadFast if it's not open Pastes the text into iReadFast Presses the play button for you! (* Please note only run this script after you have run iReadFast at least once. This is because in Leopard the first time you run a new application you have to give permission for the application to run.*) tell application "System Events" set isiReadFastOpen to (name of processes) contains "iReadFast" set Btn to button returned of (display dialog "iReadFast is not currently running. Run iReadFast?" buttons {"No", "Yes"} default button "Yes" with icon 1) tell application "iReadFast" tell application "System Events" keystroke "v" using command down click checkbox 1 of group 1 of window 1 Paste this into Script Editor and either save as script in folder iReadfast (create if necessary) in scripts folder or save as application bundle and run from dock. Developer: Consider a service menu item that can do this. In Leopard keyboard shortcuts can be assigned to service menu items. I have a keyboard shortcut for speaking text, works very well. Nice work btw. (Version 1.2) |