








(1)
Your rating: Now say why...


| Downloads:13,224 |
| Version Downloads:1,860 |
| Type:Education : Miscellaneous |
| License:Free |
| Date:06 Jul 2010 |
| Platform:PPC / Intel |
| Price:Free |
Overall (Version 2.x):![]() ![]() ![]() ![]() ![]() |
Features:![]() ![]() ![]() ![]() ![]() |
Ease of Use:![]() ![]() ![]() ![]() ![]() |
Value:![]() ![]() ![]() ![]() ![]() |
Stability:![]() ![]() ![]() ![]() ![]() |
+1
Thephoenix reviewed on 16 Feb 2011
+21
Wjb3wvu reviewed on 20 Dec 2009
+20
+1
I've almost done with the font choosing feature, I can tell you and the other users that iReadFast 1.8 will be online very soon with that feature.
Thank you for your interest and your patience.
Gianluca Del Maschio
+20
+20
About your request, I will try to add the font selection in one of the next releases.
Goodbye!
+1
-3
ticonuck reviewed on 20 Mar 2009
Highly recommended. It's going to help me out tremendously!
+3
+3
bingcady reviewed on 29 Sep 2008
Now, as to the product - it's awesome! I've used a similar tachistoscope program called Ace Reader for years. However, that program is both fairly expensive and much more involved than I've wanted. iReadFast is much more Maclike; simple, easy to use, very attractive, and works just as advertised. And since it's free, everyone can try out this great tool and improve their reading speed!
The only think I can think to add to this program in the future might be the ability to display multiple words at a time, since some speed reading techniques involve taking in whole phrases at a time instead of single words. But I am not certain whether this chunking technique can be used with tachistoscope presentation or whether the reader must choose his/her own chunk of words on which to focus.
Mille grazie per questo buonisimo regalo, signore Del Maschio!
thank you very much for your comment and even more for your donation that made me very happy because it was the first I ever received!
I'm happy to hear you consider iReadFast better than other products. This was my goal when I started creating it, after I discovered that none of available programs was complete with all the features I was looking for, while many of them are pricy.
About the multiple words display, as I said in the private email I sent you, I can tell you and all the Macupdate visitors that this option will soon be available in iReadFast. I already have a good working version of iReadFast with this feature, so I reasonably believe it will become the next release of the program.
Thank you very much for your support John,
Gianluca Del Maschio
-6
-5
barqsX reviewed on 23 Sep 2008
When iReadFast first came out, I participated in the beta comments program, where I sent in my suggestions in return for a promised free license. I sent in my suggestions, the developer sent an acknowledgment of receipt, but I never received the promised free license. Follow-up emails went unanswered. If you're looking for a trustworthy and reliable developer, stay away!
+4
+1
+35
PizzaCake reviewed on 23 Sep 2008
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!
--Start of applescript
(* 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"
end tell
if isiReadFastOpen then
runiReadFast() of me
else
activate
set Btn to button returned of (display dialog "iReadFast is not currently running. Run iReadFast?" buttons {"No", "Yes"} default button "Yes" with icon 1)
if Btn is "Yes" then
runiReadFast() of me
end if
end if
on runiReadFast()
tell application "iReadFast"
activate
tell application "System Events"
keystroke "v" using command down
tell process "iReadFast"
click checkbox 1 of group 1 of window 1
end tell
end tell
end tell
end runiReadFast
--End of applescript
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.
Thank you for you interest.
+35
- Using the services menu item already makes iReadFast the active application so you just have to press the spacebar to start playing, I think this is already very straight and comfortable.
- The automatic play could make you save the press of a button, but could very likely make you miss the first words of the text in case the program window takes longer to become active, or simply because you need some time to focalize on it when it pops up.
Really I believe that as the program is now requires you to do an extra action, but doing so leaves you all the control and you will never have the playing started when you not expected it. I would like to know the opinion of other users about this.
+35
+20
do shell script "xattr -d com.apple.quarantine /Applications/iReadFast.app"