| View previous topic :: View next topic |
| Author |
Message |
iMav Veteran Member


Joined: 13 Feb 2005 Posts: 2172 Location: Columbus, WI
|
Posted: Thu Feb 17, 2005 10:28 pm Post subject: Virtual CD functionality... |
|
|
This is CRITICAL for the successful use of the Mac Mini by my children.
They own several games that require the CD to be in to play. This is obviously NOT acceptable for 5 and 3 year old kids as they will (and HAVE!) ruin the CD's if they are required to load and unload them on a regular basis.
I want to install they games, educational software, etc and put the media away for safe-keeping. In the windows world, I used to use a program called "VirtualCD" which helped me accomplish this without issue. I'd simply make a virtual CD of the CD, install from the virtual CD, and was good to go. When the program was launched, it would see the virtual CD (and access it, if necessary) and be on its merry way.
My question is, how do I accomplish this in the OS X realm? _________________ -=iMav=-
http://geekhack.org |
|
| Back to top |
|
 |
idave Senior Member


Joined: 24 Jan 2005 Posts: 463
|
Posted: Thu Feb 17, 2005 10:42 pm Post subject: |
|
|
http://forums.scotsnewsletter.com/index.php?showtopic=7311 _________________ 14" 1.25GHz G4 iBook (died)
1.42GHz Mac mini (almost dead)
1.66GHz Core Duo Mac mini (sold)
2.0GHz Core 2 Duo Mac mini '09 (sold)
2.3GHz quad-core Intel Core i7 Mac mini |
|
| Back to top |
|
 |
iMav Veteran Member


Joined: 13 Feb 2005 Posts: 2172 Location: Columbus, WI
|
Posted: Thu Feb 17, 2005 10:49 pm Post subject: |
|
|
| idave wrote: | | http://forums.scotsnewsletter.com/index.php?showtopic=7311 |
Excellent! Thanks for the info. I was pretty sure something like this was possible, but getting a tutorial on how to do it is great. This will allow me to install the games on my kids' Mac Minis without worry.
Now if I can just figure out the best place to buy 1GB of RAM for MY Mac Mini. (still haven't made a final decision as I'm waiting for more people to report back successful compatibility so that I can make sure and save as much money as possible)  _________________ -=iMav=-
http://geekhack.org |
|
| Back to top |
|
 |
idave Senior Member


Joined: 24 Jan 2005 Posts: 463
|
Posted: Thu Feb 17, 2005 10:54 pm Post subject: |
|
|
Cool! _________________ 14" 1.25GHz G4 iBook (died)
1.42GHz Mac mini (almost dead)
1.66GHz Core Duo Mac mini (sold)
2.0GHz Core 2 Duo Mac mini '09 (sold)
2.3GHz quad-core Intel Core i7 Mac mini |
|
| Back to top |
|
 |
iMav Veteran Member


Joined: 13 Feb 2005 Posts: 2172 Location: Columbus, WI
|
Posted: Wed Mar 02, 2005 10:00 pm Post subject: |
|
|
Now here is the kicker. How can I set the system up so that the CD images are automagically mounted when they log in? _________________ -=iMav=-
http://geekhack.org |
|
| Back to top |
|
 |
aplowe Junior Member

Joined: 21 Feb 2005 Posts: 41 Location: Edinburgh, UK
|
Posted: Wed Mar 02, 2005 10:44 pm Post subject: |
|
|
| You can add anything, including CD images, to the Startup Items for each user in System Preference (Accounts panel). Just hit the + and tell it where the image is. |
|
| Back to top |
|
 |
iMav Veteran Member


Joined: 13 Feb 2005 Posts: 2172 Location: Columbus, WI
|
Posted: Thu Mar 03, 2005 1:43 am Post subject: |
|
|
I just ended up creating a AppleScript to mount the image and launch the game (even closing the Finder window (if it exists) when the volume is mounted)...works pretty slick.
Here is an example:
| Code: |
tell application "Finder"
activate
open file "Incredibles.cdr" of folder "DiskImages" of folder "amanda" of folder "Users" of startup disk
delay 5
if exists Finder window "Incredibles" then
close Finder window "Incredibles"
open file "Incredibles" of folder "The Incredibles" of folder "THQ" of folder "Applications" of startup disk
else
open file "Incredibles" of folder "The Incredibles" of folder "THQ" of folder "Applications" of startup disk
end if
end tell
|
_________________ -=iMav=-
http://geekhack.org |
|
| Back to top |
|
 |
packerfan Junior Member

Joined: 26 Jan 2005 Posts: 21
|
Posted: Thu Mar 03, 2005 5:00 am Post subject: |
|
|
| mavherzog wrote: | I just ended up creating a AppleScript to mount the image and launch the game (even closing the Finder window (if it exists) when the volume is mounted)...works pretty slick.
Here is an example:
| Code: |
tell application "Finder"
activate
open file "Incredibles.cdr" of folder "DiskImages" of folder "amanda" of folder "Users" of startup disk
delay 5
if exists Finder window "Incredibles" then
close Finder window "Incredibles"
open file "Incredibles" of folder "The Incredibles" of folder "THQ" of folder "Applications" of startup disk
else
open file "Incredibles" of folder "The Incredibles" of folder "THQ" of folder "Applications" of startup disk
end if
end tell
|
|
I'll have to try it!  |
|
| Back to top |
|
 |
iMav Veteran Member


Joined: 13 Feb 2005 Posts: 2172 Location: Columbus, WI
|
Posted: Thu Mar 03, 2005 9:21 am Post subject: |
|
|
I like it. And this way the image does not have to be mounted unless they want to play the game...
BTW, my package made some SIGNIFICANT progress last night. I hope the delay doesn't keep me from having it by the weekend... _________________ -=iMav=-
http://geekhack.org |
|
| Back to top |
|
 |
|