eBaytoiCal - 1.9.5auto-create iCal events from eBay pages |
|
||||||||||||||
|
|||||||||||||||
Feedback Summary:
| Version 1.9.5: | |||||
| Overall Rating: | Features: | Not rated (0.0) | Support: | Not rated (0.0) | |
| Ease of Use: | Not rated (0.0) | Quality / Stability: | Not rated (0.0) | Price: | Not rated (0.0) |
Key to Types of Feedback:
Reviews
Troubleshooting
Usage Tips
Developer Notes
Commentary
Featured Reviews
Help the script make iCal 3.0.1 (Leopard) create the new calendar - Version: 2.0.2, 1/3/2008 12:52PM PST
throost
Works flawlessly under 10.5.1 . . . - Version: 2.0.1, 12/21/2007 12:11PM PST
ashkenaz
iff there is already an iCal calendar called "eBaytoiCal" or if one creates it manually. (As documented at http://www.kortenkamps.net/tiki-index.php?page=Mac+OS+X+Software
eBaytoiCal lost the ability to create the calendar automatically with the advent of Leopard.)
eBaytoiCal lost the ability to create the calendar automatically with the advent of Leopard.)
Most Recent Replies: View All 1 Replies
- Works flawlessly under 10.5.1 . . .
Not working for ebay UK - Version: 2.0.1, 11/27/2007 08:05AM PST
Kevin Browne
Still not working for UK. Popup warning has gone from Version 2 displaying:
'Cannot parse page'
to Version 2.01 displaying:
'Can't get <<class wres>> 1 of application "iCal" whose title = eBay to iCal. Invalid index.'
'Cannot parse page'
to Version 2.01 displaying:
'Can't get <<class wres>> 1 of application "iCal" whose title = eBay to iCal. Invalid index.'
Change:
set eBayCal to (the first calendar whose title is "eBaytoiCal")
set createEbayCal to true
try
set xx to eBayCal
set createEbayCal to false
end try
-- by the way: is there a way to check whether a variable is defined in Applescript???
if (createEbayCal) then
make calendar at end of calendars with properties {writable:true, description:"eBaytoiCal", title:"eBaytoiCal"}
set eBayCal to last item of calendars
end if
to:
-- by the way: here is a way to check whether a variable is defined in Applescript!!!
try
set eBayCal to (the first calendar whose title is "eBaytoiCal")
set createEbayCal to false
on error
set createEbayCal to true
end try
if (createEbayCal) then
set theCalendar to make new calendar with properties {title:"eBaytoiCal", description:"eBaytoiCal"}
set eBayCal to last item of calendars
else
set eBayCal to last item of calendars
end if