 |
 |
problem with Real Player
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Mar 2004
Location: Northeast USA and sometimes Europe
Status:
Offline
|
|
it worked great untill recently. All of a sudden when I click on a real audio file, instead of the file opening up the real player app and playing the media, it downloads it to the desktop and i then have to go to the desktop to click on the file....thats annoying...any ideas on how to make it act normal again?? Thanks.
|
|
Mac Mini G4 1.33 Ghz:40GBhf, 512MBRAM, 32MBVRAM
MBP 15.4' 2.33Ghz:160GBhd, 2GBRAM, 256MBVRAM
iMac 24' 2.4 Ghz, 300GBhd, 2GBRAM, 256MBVRAM
80GB iPod Classic (black)
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Dec 2000
Location: Northern California
Status:
Offline
|
|
Did you install the latest OS X security update? RealPlayer files are no longer deemed "safe" by Safari and do no auto-open (it is annoying).
|
Mac OS X 10.5.0, Mac Pro 2.66GHz/2 GB RAM/X1900 XT, 23" ACD
esdesign
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Mar 2004
Location: Northeast USA and sometimes Europe
Status:
Offline
|
|
SOrry forgot about this post...lol. Yes i had dl'd the update.......grrrr....that is annoying. oh well. maybe they'll fix it later.
|
|
Mac Mini G4 1.33 Ghz:40GBhf, 512MBRAM, 32MBVRAM
MBP 15.4' 2.33Ghz:160GBhd, 2GBRAM, 256MBVRAM
iMac 24' 2.4 Ghz, 300GBhd, 2GBRAM, 256MBVRAM
80GB iPod Classic (black)
|
| |
|
|
|
 |
|
 |
|
Mac Enthusiast
Join Date: Oct 1999
Status:
Offline
|
|
Supposedly it is possible to edit the list of files that Safari considers 'safe' to open when "Open safe files after downloading is selected."
http://www.macosxhints.com/article.p...51221220935102
and
http://macenterprise.org/content/view/201/84
I haven't tried modifying the safe file list...
Instead I use (a slightly modified version of) the Apple Script available at the same page to automatically launch the RAM metafiles.
Code:
-- adapted from a script found at
-- http://macenterprise.org/content/view/201/84
property auto_open_list : {"ram", "rm"}
on adding folder items to this_folder after receiving these_items
try
repeat with i from 1 to number of items in these_items
set this_item to item i of these_items
set this_item to item i of these_items
set the item_info to the info for this_item
if (the name extension of the item_info is in the auto_open_list) then
tell application "Finder"
open this_item
end tell
end if
end repeat
on error error_message number error_number
if the error_number is not -128 then
tell application "Finder"
activate
display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
end tell
end if
end try
end adding folder items to
|
|
|
| |
|
|
|
 |
 |
|
 |
|
|
|
|
|

|
|
 |
Forum Rules
|
 |
 |
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
|
HTML code is Off
|
|
|
|
|
|
 |
 |
 |
 |
|
 |