damis648 said: This should be moved to the Mac OS X forum. I am quite not getting your point... why is this script insufficient?
Joeb454 said: And so it shall be ;)
Sorry, guys, I didn't see the Mac forum - I looked for it since I knew of it, but >.<
Trying to run the iSight cam disabler (http://techslaves.org/index.php?page=52) - since I don't have access to the Mac right now (this is for a friend), would this need admin privileges? Which would be unavailable, of course, which is why I'm asking, and apparently it's bad practice to put the root password in AppleScript anyway (duh - well, not like I know what I'm talking about haha). It says something in the script about restarting the apps, is it automatic:
-- Intel Mac iSight Disabler
-- Tested on OS X 10.5
-- Tested on 1st generation MacBook
-- Version 3
--
-- All this does is change permission on the iSight driver files. From normal 'a+r' and 'u+rx' when enabled to 'a-rwx' when disabled.
--
-- cense@techslaves.org
display dialog "Intel Mac iSight Disabler
brought to you by techslaves.org.
Version 3
Support for Leopard
You need to restart applications which use the iSight driver(s) after applying these settings." buttons {"Enable iSight", "Disable iSight"} with icon stop
set userChoice to button returned of result
set iSightDrivers to "/System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/QuickTimeUSBVDCDigitizer /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/A/Resources/VDC.plugin/Contents/MacOS/VDC"
if userChoice = "Enable iSight" then
do shell script "/bin/chmod a+r " & iSightDrivers & "; /bin/chmod u+rx " & iSightDrivers with administrator privileges
else if userChoice = "Disable iSight" then
do shell script "/bin/chmod a-rwx " & iSightDrivers with administrator privileges
end if
Thanks... sorry about the wrong forum area ; P
~Night