Hi, I am new to Applescript and after messing around with it have a few questions.

Firstly, I love applescript so far and have made an alarm clock, simple get weather app and applescript app that announces the time and date. i would like to be able to use this as a jarvis like combined app where i can have all of these built into one applescript. secondly i would like a better version of my weather app to be included that can give me weather based on my location (not the location i have it set too). lastly it would also be a miracle if someone could give me a way to make a simple chat like bot that can talk back because i have tried setting up eliza (chat bot from apple) but because it uses ichat things are much more difficult for me as a novice to set up properly.  for instance type hi in a display dialog box and have the text returned open up in messages and be able to communicate with my chat bot that would have predefined responses for what i type. like if i type weather it would know to tell me the weather.  anyway ill have my codes listed below and if anyone can help with any part of this that would be fantastic and greatly appreciated. also just a note i will never sell this thing if someone helps me by giving me coding to get this idea working.  i just want it because i could greatly use having a virtual assistant and to use personally.  thanks in advance for all people who do help.
--codes for getting date
set {year:y, month:m, day:d} to (current date)
y --> 2006
m --> April
d --> 15
-- note that the month given above is not text unless coerced to text. "April" is a word in the AppleScript lexicon.
-- these results can also be obtained directly, one at a time:
month of (current date) --> April
-- or as a list:
{year, month, day} of (current date) --> {2006, April, 15}
-- and finally, the day of the week can be extracted:
weekday of date "Saturday, April 15, 2006 4:29:04 PM" --> Saturday
say date string of (current date)
--codes for getting time
set currentDate to current date
set amPM to "AM"
set currentHour to (currentDate's hours)
set currentMinutes to currentDate's minutes
if (currentHour ≥ 12 and currentHour < 24) then
          set amPM to "PM"
else
          set amPM to "AM"
end if
--  make minutes below 10 sound nice
if currentMinutes < 10 then
          set currentMinutes to ("0" & currentMinutes) as text
end if
--  ensure 0:nn gets set to 12:nn AM
if currentHour is equal to 0 then
          set currentHour to 12
end if
--  readjust for 12 hour time
if (currentHour > 12) then
          set currentHour to (currentHour - 12)
end if
set currentTime to (currentHour as text) & ":" & ((currentMinutes) as text) & " " & amPM as text
say currentTime
--alarm with weather
-- prompt the user for the desired wake up time
set targetTime to the text returned of (display dialog "Enter the wake-up time:" default answer "7:00 AM")
say "Goodnight sir…"
-- wait until we reach the target date/time
repeat while (current date) is less than date targetTime
  -- should be 60
  delay 2
end repeat
say "It is " & getTimeInHoursAndMinutes()
on getTimeInHoursAndMinutes()
  -- Get the "hour"
          set timeStr to time string of (current date)
          set Pos to offset of ":" in timeStr
          set theHour to characters 1 thru (Pos - 1) of timeStr as string
          set timeStr to characters (Pos + 1) through end of timeStr as string
  -- Get the "minute"
          set Pos to offset of ":" in timeStr
          set theMin to characters 1 thru (Pos - 1) of timeStr as string
          set timeStr to characters (Pos + 1) through end of timeStr as string
  --Get "AM or PM"
          set Pos to offset of " " in timeStr
          set theSfx to characters (Pos + 1) through end of timeStr as string
          set theHours to hours of the (current date)
          if theHours > 18 then
                    say "good Evening"
          else if theHours > 12 then
                    say "good Afternoon"
          else if theHours > 6 then
                    say "good Morning"
          else if theHours > 0 then
                    say "good Morning"
          end if
          return (theHour & ":" & theMin & " " & theSfx) as string
end getTimeInHoursAndMinutes
tell application "Mail" to launch
tell application "Calendar" to launch
tell application "iTunes" to launch
set CityCode to 2353736
set t_format to "F"
set v_format to "S"
set a_format to "Y"
set IURL to "http://weather.yahooapis.com/forecastrss?w=" & CityCode
set file_content to (do shell script "curl " & IURL)
--looking for the line with actual condition
set theText to text ((offset of "yweather:condition" in file_content) + 1) thru -1 of file_content
set sub_1 to text ((offset of "\"" in theText) + 1) thru -1 of theText
set actual_condition to text 1 thru ((offset of "\"" in sub_1) - 1) of sub_1
set sub_1a to text ((offset of "temp=" in sub_1)) thru -1 of sub_1
set sub_1b to text ((offset of "\"" in sub_1a) + 1) thru -1 of sub_1a
set actual_temp to text 1 thru ((offset of "\"" in sub_1b) - 1) of sub_1b
if t_format is equal to "C" then
          set actual_temp to (5 / 9) * (actual_temp - 32) as integer
end if
set theText to text ((offset of "yweather:forecast" in file_content) + 1) thru -1 of file_content
set sub_2 to text ((offset of "\"" in theText) + 1) thru -1 of theText
set today_min_temp to word 9 of sub_2
set today_max_temp to word 12 of sub_2
if t_format is equal to "C" then
          set today_min_temp to (5 / 9) * (today_min_temp - 32) as integer
          set today_max_temp to (5 / 9) * (today_max_temp - 32) as integer
end if
set sub_3 to text ((offset of "text" in sub_2) + 1) thru -1 of sub_2
set sub_4 to text ((offset of "\"" in sub_3) + 1) thru -1 of sub_3
set today_forecast to text 1 thru ((offset of "\"" in sub_4) - 1) of sub_4
set sub_5 to text ((offset of "yweather:forecast" in sub_4) + 1) thru -1 of sub_4
set sub_6 to text ((offset of "\"" in sub_5) + 1) thru -1 of sub_5
set tomorrow_min_temp to word 9 of sub_6
set tomorrow_max_temp to word 12 of sub_6
if t_format is equal to "C" then
          set tomorrow_min_temp to (5 / 9) * (tomorrow_min_temp - 32) as integer
          set tomorrow_max_temp to (5 / 9) * (tomorrow_max_temp - 32) as integer
end if
set sub_7 to text ((offset of "text" in sub_6) + 1) thru -1 of sub_6
set sub_8 to text ((offset of "\"" in sub_7) + 1) thru -1 of sub_7
set tomorrow_forecast to text 1 thru ((offset of "\"" in sub_8) - 1) of sub_8
if a_format is equal to "Y" then
          say "The current weather in Alpine is " & actual_temp & " degrees and " & actual_condition
end if
delay 4
tell application "Mail"
          set unreadMessages to (get every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)
          set numberofmessages to (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false))
          if (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)) is 1 then
                    tell application "Mail"
                              say "There is only " & numberofmessages & " new email"
                              repeat with eachMessage in unreadMessages
                                        say "From! "
                                        say (get sender of eachMessage)
                                        say "Subject."
                                        say (get subject of eachMessage)
                                        set read status of eachMessage to true
                              end repeat
                    end tell
          else if (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)) is greater than 1 then
                    tell application "Mail"
                              say "There are " & numberofmessages & " new messages"
                              repeat with eachMessage in unreadMessages
                                        say "From! "
                                        say (get sender of eachMessage)
                                        say "Subject."
                                        say (get subject of eachMessage)
                                        set read status of eachMessage to true
                              end repeat
                    end tell
          else
                    say "You have no new messages"
          end if
          tell application "Mail" to quit
end tell
delay 4
set today to (current date)
set today's time to 0
set tomorrow to today + days
set myHome to {}
tell application "Calendar"
          set futureEvents to every event of calendar "Home" whose start date is greater than or equal to today and end date is less than or equal to tomorrow
          tell application "Calendar" to quit
end tell
repeat with anEvent in futureEvents
          tell application "Calendar" to set {summary:theSummary, start date:theStartDate, allday event:allDayEvent} to anEvent
          if (allDayEvent) then
                    set theTime to "At some time today"
          else
                    set {hours:Eventhour, minutes:Eventminute} to theStartDate
                    if (Eventhour > 12) then
                              set Eventhour to Eventhour - 12
                              set pre to "PM"
                    else
                              set pre to "AM"
                    end if
                    if (Eventminute is 0) then set Eventminute to ""
                    set theTime to "At " & Eventhour & " " & Eventminute & " " & pre
          end if
          set the end of myHome to theTime & " you have the event… " & theSummary
end repeat
set numberOfHome to (count myHome)
if (numberOfHome is less than 1) then
          say "you have no events today."
else if (numberOfHome is equal to 1) then
          say "you have one event today"
  delay 1
          say item 1 of myHome
else
          say "you have" & numberOfHome & " Home today"
  delay 1
          repeat with thismeeting in myHome
  say thismeeting
                    delay 0.5
          end repeat
end if
delay 4
tell application "iTunes"
          play playlist "Jarvis Alarm"
          delay 900
          tell application "iTunes" to quit
end tell
--weather
set weather to "curl " & quote & "http://weather.yahooapis.com/forecastrss?p=USNY0996&u=f" & quote
set postWeather to "grep -E '(Current Conditions:|F<BR)'"
set forecast to do shell script weather & " | " & postWeather
say (characters 1 through -7 of paragraph 2 of forecast) as string

4piper wrote:
 I have a HP Envy 15 Notebook PC "without" a cd/dvd drive. I bought one that plugs in which is a pain, but I am findind myself having to install updates that lasts for hours. Please, can someone help me??? I am almost ready to go back to Dell because I have had to many issues! I have spent more time on the upgrades/updates than I have actual enjoyment on this PC. And it is 13 days old.
And getting a PC that does not have a cd player is completely, well I am not going to say it. How was I going to download the printer? Or any other software?
Can someone please tell me if there is a one button upgrade/update that will get this done and over with?
Thank you.
Piper
Hi,
Could you tell us what Envy 15 it is, please? I mean the full model name. The new laptops don't have any DVD drives because all drivers etc can be downloaded from the internet and all bootable images don't have to be burned to DVDs but simple converted to usb drives. Tell us also what printer you have got so we can find the right drivers for you.
Dv6-7000 /Full HD/Core i5-3360M/GF 650M/Corsair 8GB/Intel 7260AC/Samsung Pro 256GB
Testing - HP 15-p000
HP Touchpad provided by HP
Currently on Debian Wheeze
*Please, help other users with the same issue by marking your solved topics as "Accept as Solution"*

Similar Messages

  • Iphone contacts "not available" to car phonebook after messing around with Outlook.pst file names and backups. Iphone4 connects to car though and other phones connect properly.

    iphone contacts "not available" to car phonebook after messing around with Outlook.pst files, names and backups, on my ms XP 2003 laptop. I substituted a much smaller new Personal Folder -Contacts File, with a smaller list of phone numbers (4 only as a test) which successfully synced to the iPhone 4. The iPhone connects to the Skoda Octavia HandsFreeSystem OK (Bluetooth works fine), but now iPhone wont load the new Contacts as it did originally. However a family Nokia (never messed with) can connect properly. So must be the iPhone or more likely an Outlook.pst \ Contacts problem. Ideas?

    After fiddling a little more, the following fixed my corrupted outlook.pst file:
    1) I made a backup
    2) In outlook under file, I exported the calendar to excel
    3) In outlook under file, I imported the calendar back to outlook
    And voila, it worked.

  • My Photos is empty after messing around with my iPhone but i can see my pics taking by my camera when i start Camera and i click on the buttom left corner, it opens the camera roll pics which i can't see choosing Photos

    any help will be appreciated, thank you

    Photos is an app for creating albums of photos that are ON YOUR COMPUTER. The Camera Roll is photos taken with the iPhone. You cannot transfer photos from the Camera Roll to the Photos app directly; you must copy them to your computer using a photo management app on the computer. After they are on the computer you can sync them to the Photo app.
    I suggest reading the manual, as it describes the process much better than I have. http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • I ordered my new S5 online and after following the steps outlined in exact order, my old phone no longer works and the S5 will not authenticate.  Now I have no phone and I am becoming frustrating.

    I ordered my new S5 online and after following the steps outlined in exact order, my old phone no longer works and the S5 will not authenticate.  Now I have no phone and I am becoming frustrating.
    It downloaded all my contacts, photo's with no problem.  I called the number they gave me from my old phone and then turned it off.  I then put the sim card in and charged the phone.  I followed all the setup steps and no I cannot send any text or make any phone calls.  I get a message that they cannot authenticate my phone to dial #8899 but get the same message.

        Hello Notahappycamper1962
    Let's get that S5 up and running! I want you to love the S5! Is the old device powered off? What zip code are you in?
    I look forward to hearing from you and getting this addressed.
    JoeL_VZW
    Follow us on Twitter @VZWSupport

  • We have a new nano "5" and after fully recharging it, it drains out after 24 hrs with a few hrs use and the message "need to restore in itunes" appears. what gives?

    we have a "new nano 5" and after fully recharging it, it drains out after 24 hrs with a few hrs use and the message "need to restore in itunes" appears. what gives?

    akemma wrote:
    we have a "new nano 5"
    iPod Models

  • I made a new apple id and after that i cant get my updates from my iTunes on my pc. How can I do to get it back

    I made a new apple id and after that i cant get my updates from my iTunes on my pc. How can I do to get it back

    Sign out from the new Apple ID with iTunes on your computer and sign in with your old iTunes account with iTunes.

  • New to IPhone and have a few Questions?

    To start I want to say that I am a long time (25+ years) veteran of technology but am new the the IPhone. My IPhone is not Jailbroken and would like to keep it that way if I can. Allthgouh I did jailbrake it with blackra1n for about 30mins then I did a factory reload and let it be as it started acting stupid once I started installing apps from unofficial sources.;) Im a x86 nerd and NOT a MAC guy. I haven't sat down at a MAC/Apple in about 15/20 years.
    I just got my first IPhone 3Gs/16GB. (Coming from a BlackBerry Curve 8310) the other day and although it is taking some time getting used to, I think I will like it more then I do once I get used to it.
    Anyhow I have a few questions to start off with. I did some googleing already but just want to make sure I understand a few things.
    All though I did the BlackRa1n jail break thing and installed a few apps then it locked up and failed to turn on or something so I did the whole reload from itunes and now its all good. Anyhow.....
    1.) It appears as if one can not run a program from the home sreen and have it run in the background while doing other things? Take the many SIP Clients I have played with in the last 48 hours. Once I open the SIP Client and connect if I hit the physical button below the screen the program closes, thus the sip client no longer works. Pretty much most if not all apps iv installed from the App Store act like this. Is this the case? Does the IPhone not mutitask at all or verywell?
    2.) Are there any SIP Clients that work over 3G? All the ones iv tried say they are for WIFI only. The SIP Clients work fine when on WIFI. It sounds like this is Apples way of controlling/monopolizing the voice/data/voip aspect of the platform/device. Im sure they would lose a lot of money if everyone did what I am trying to do.Just my opinion.
    3.) Maybe I play with it to much but **** the battery dies fast. Is there anyway to optimize the battery at all other then for me not to use it as much?
    4.) How can I remote lock it if I lose it or it gets stolen? I read somewhere this could be done.
    5.) Are there any other Shells/HomeScreens/Themes that can replace the standard 4x4x4 row icons?
    6.) The speaker phone (when on a call) seems kinda low even when turned all the way up. Is there any way to make it louder?
    7.) I am using the built in VPN client to connect to my works PPTP Windows 2003 VPN server but the client randomly disconnects through out the day. Is there any way to have some type of keep alive set or are there any other VPN Clients that I can use?
    Sorry for all this just thought I would ask for feedback.
    Many thanks for any help anyone can provide,
    SomeOneOnLine

    1.) It appears as if one can not run a program from the home sreen and have it run in the background while doing other things? Does the IPhone not mutitask at all or verywell?
    The iPhone SDK does not permit ANY 3rd party apps from running in the background or multitasking. It does provide for push notifications which can simulate certain background activity in terms of receiving external notifications while the app is actually closed. This works reasonably well with IM apps, news, sports, weather, travel updates and some peer-to-peer games.
    2.) Are there any SIP Clients that work over 3G? All the ones iv tried say they are for WIFI only.
    Just how would the SIP server connect to the cell carrier 3G network? Do you know of ANY that do??
    3.) Maybe I play with it to much but **** the battery dies fast. Is there anyway to optimize the battery at all other then for me not to use it as much?
    3G voice and data connections are culprits. Avoid email push and frequent fetching. See this Apple article for detailed suggestions.
    http://www.apple.com/batteries/iphone.html
    4.) How can I remote lock it if I lose it or it gets stolen? I read somewhere this could be done.
    MobileMe Find My iPhone will locate, set a passcode lock and optionally wipe all data from your iPhone. You have to be a MobileMe subscriber.
    5.) Are there any other Shells/HomeScreens/Themes that can replace the standard 4x4x4 row icons?
    No. Apple does not permit this.
    6.) The speaker phone (when on a call) seems kinda low even when turned all the way up. Is there any way to make it louder?
    You can troubleshoot your iPhone as described in the User Guide - restart, reset, reset settings, restore. Or, get hearing aids
    7.) I am using the built in VPN client to connect to my works PPTP Windows 2003 VPN server but the client randomly disconnects through out the day. Is there any way to have some type of keep alive set or are there any other VPN Clients that I can use?
    See this Apple support article:
    http://support.apple.com/kb/HT1980
    BTW, discussion of "unauthorized modifications" such as jailbreaking is prohibited under the forum Terms of Use you agreed to when joining. Best not to even mention it or risk getting your post deleted.

  • I try to open iphoto and it comes up with You have made changes to your photo library using a newer version of iPhoto. Please quit and use the latest version of iPhoto. I have downloaded photo manager and it's telling me to update but it wont update...

    I try to open iphoto and it comes up with You have made changes to your photo library using a newer version of iPhoto. Please quit and use the latest version of iPhoto. I have downloaded photo manager and it's telling me to update but it wont update...

    iPhoto is Apple's included program to manage your photo's and pictures.
    It receives updates over time with Software updates and new machine or iLife purchases.
    When iPhoto gets updated or a newer version is used, it may alter iPhoto support files, but newer iPhoto versions usually always compatible with older files which it then updates.
    If you used a newer iPhoto on your iPhoto support files, then they got altered to the newer format, older iPhoto versions can't read the older format.
    Somewhere along the line you somehow got a older version of iPhoto on your computer, you need to fine the newer version of iPhoto (not this photo manager, sounds like another program)
    Or somewhere along the line you used a newer iPhoto version (like on another Mac) and it altered the iPhoto support files on your older version of iPhoto.
    So the key here is to find the newest version of iPhoto and use that to access your iPhoto support files.
    If you didn't access your iPhoto support files from another Mac, then you should have the newer iPhoto version on your computer.
    Once you find it, and get it in the Dock, you should remove the older iPhoto version from your computer to prevent this from happening again.
    Lastly, if the newer version of iPhoto is somehow gone off your computer, you should be able to get a copy off the latest OS X install disk or iLife using a free program called Pacifist.
    http://www.charlessoft.com/
    Then you need to check for updates for iPhoto in the program itself, the current version is 9.1.2

  • I have an ipad I used with a computer which's now broken. I bought a new Macbook Pro and signed into iTunes with my usual Apple id and pw. I connected my ipad to the new Macbook but it won't back up my photos or Apps from the ipad to the new macbook. Help

    I have an ipad I used with a computer which's now broken. I bought a new Macbook Pro and signed into iTunes with my usual Apple id and pw. I connected my ipad to the new Macbook but it won't back up my photos or Apps from the ipad to the new macbook. Help

    What do you mean " back up my photos or Apps"?
    The photo sync is one way - computer to ipad.
    You can transfer itunes purchases.  Without syncing:  File>Transfer Purchases
    Copy everything from your backup copy of your old computer to your new one.

  • HT4847 I'm new to iPhone and iCloud... I have lots of pics on my iPhone but only some appear on my iPad, they're in Camera Roll on the phone but random ones only have come into Photos on the iPad - can anyone help? Thanks!

    I'm new to iPhone and iCloud... I have lots of pics on my iPhone but only some appear on my iPad, they're in Camera Roll on the phone but random ones only have come into Photos on the iPad - can anyone help? Thanks!

    Welcome to the Apple Community.
    Photostream when enabled will only add photos from the camera roll that were taken post photostream activation. (Photostream does not currently share video)
    Photostream only syncs photos over Wi-Fi, make sure you are connected to Wi-Fi to begin with.
    Photostream only syncs when the camera app is closed, ensure it is closed.
    Photostream only syncs when the battery is above 20%, try recharging the device
    Try disabling photo stream on your device (settings > iCloud), restarting your device and then re-enabling photo stream.

  • When i open itunes the warning itunes Library.itl appears with the following message. ..."it cannot be read because it was created by a newer version of itunes. after checking software updates we have the lastest version.  What to do?

    when i open itunes the warning itunes Library.itl appears with the following message. ..."it cannot be read because it was created by a newer version of itunes. after checking software updates we have the lastest version.  What to do?

    Perhaps check to see if you're accidentally running two different versions of iTunes. There's some information on troubleshooting that in the Opening iTunes section of the following document:
    Troubleshooting iTunes installation on Mac OS X

  • I'm trying to update to the new OS X, and its saying I don't have enough space on my start up disc. What do I need to do?

    I'm trying to update to the new OS X, and its saying I don't have enough space on my start up disc. What do I need to do?

    offload large files , vids pics, music to an external HD.

  • (1) Is there any way that I can get the transition menu to remain on the screen. I select a transition, drag it to the timeline and after I click done I have to start the process all over to perform this action on the next transition. I have premiere elem

    (1) Is there any way that I can get the transition menu to remain on the screen. I select a transition, drag it to the timeline and after I click done I have to start the process all over to perform this action on the next transition. I have premiere elements 12. In older version the menu would stay on the screen.
    (2) In pan and zoom how can start zoom on a photo in the original picture and zoom in and the next picture zoom out and the next photo pan from right to left and the next photo pan left to right.
    Thanks
    Sam

    TidyCup
    What computer operating system is your Premiere Elements 12 running on? If you have not already, be sure to update 12 to 12.1, using an opened project's Help Menu/Update.
    But to the immediate questions, assuming Windows 7, 8, or 8.1 64 bit....
    1. No, it is what it is. But, are you applying the same transition each time? If so, then highlight/select all the clips involved (all at one time), then Timeline Menu/Apply Default Transition will do just that for the highlighted/selected clips.
    To highlight/select more than one clip at a time, hold down the Shift key of the computer main keyboard and then click on each clip that you want in the group selection
    or
    with your mouse cursor draw a rectangle around the clips that you want to select
    2. Are you using the Premiere Elements 12/12.1 Expert workspace Pan and Zoom Tool? Or the pan or zoom presets under fx Effects/Presets/? With those you can do pan or zoom, not pan and zoom.
    Or, are you in the Elements Organizer 12 Slideshow Editor using the pan and zoom effect there? Or, are you using keyframing the Motion Scale property for zoom and the Motion Position property for pan?
    Are you asking about photos with landscape or portrait orientation?
    The pan and zoom tool does one photo at a time.
    Have you read the Adobe documentation on the Pan and Zoom Tool?
    http://help.adobe.com/en_US/premiereelements/using/WSeffff8bffc802084-494411db12fd35452dd- 8000.html
    Please review and clarify and then we can get into greater details on this.
    Thanks.
    ATR

  • I am new to this and a bit rusty with Java, Oracle, Web Development, et al; and, I need a free trial run at this time, Can we do this?

    I am new to this and a bit rusty with Java, Oracle, Web Development, et al; and, I need a free trial run at this time, Can we do this?

    your itunes accoutn have nothing to d with your computer
    you can go to any computer with internet access in the world and
    login into your itunes account if you have the appleID and password
    the itunes account is placed on apples itunes servers

  • I am a new Apple user and had a visitor, with an iPad, at my house.  I noticed the response time slowed greatly.  I have a Linksys N router and wondered is I need an Apple router to allow the speed to be consistent.

    I am a new Apple user and had a visitor, with an iPad, at my house.  I noticed the response time slowed greatly.  I have a Linksys N router and wondered if I need an Apple router to allow the speed to be consistent.

    I am a new Apple user and had a visitor, with an iPad, at my house.  I noticed the response time slowed greatly.  I have a Linksys N router and wondered if I need an Apple router to allow the speed to be consistent.

Maybe you are looking for

  • Report of PO changess

    Hi Friends, I need to see a report which show me the changes made in POs so far. If I have changed the PO 3 times, the report should show me the number of times the PO changed and what are the changes and on which date by whom... Please advise me how

  • Is there a way to take a screenshot on iPad with one hand?

    I have a friend with only one working hand, and I have recommended an iPad to him. However, the only way of taking screenshots that I can find needs two hands. Is there another method?

  • IMovie fails to start on specific user

    Hi! I'm about to throw my Macbook against the wall because of this problem. I've wasted enormous amounts of time trying to fix this. The case is that iMovie won't even open in my user account. The Apple Store genius is not an option because, as you s

  • Bonjour for Windows no longer works after SP3 is installed

    Bonjour for Windows was working fine until SP3 came out. Now I can see the printer and Bonjour goes through the motions to set it up, but I can't print to the printer. The whole construct of "Printer.local" or "AirPortExpress.local" doesn't seem to w

  • Bank Account Program (using netbeans)

    Can someone please help me with this program I'm trying to create, I'm new to java and am a bit stuck .. I created a BankAccount class and want the following capabilities. The bank will be charging a fee for every deposit and withdrawal. Supply a mec