Student having simple scope problem.

The assignment calls for me to write into a file that is created in the main of the program.
My problem exists with writing to the file from the class' other methods, as the PrintWriter and FileWriter are not recognized.
I considered creating a global string variable to hold all that needs to be added to it, then adding it to the file in the main, but I am sure this is not what my Instructor intended.
I would post the program if someone refreshes my memory on how to do that so it's formatted.
Thank you very much for any and all help.

Code Update
import java.io.FileWriter;
import java.util.Random;
import java.io.PrintWriter;
class Paint{
           static String fileWrite = "";
          private String setColor;
         public Paint( )
         private void open(int dimen, int dimen2)
                fileWrite = "<svg xmlns=\"http://www.w3.org/2000/svg\"" +
                               "xmlns:xlink=\"http://www.w3.org/1999/xlink\"" +
                               "width=\"" + dimen + "%\"" +
                               "height=\"" + dimen2 + "%\"" +
                               "viewBox=\"0 0 150 150\"" +
                               "version=\"1.0\">" +
                               "<g>";
          private static String random255()
               Random generator = new Random();
               double s = generator.nextDouble() * 255;
               String s1 = Double.toString(s);
               return s1;
          private void setColor(String string)
               this.setColor = string;
          private void rect(int i, int j, int k, int l)
               fileWrite = fileWrite + "<rect x=\"" + i + "\"  y=\"" + j +
               "\"  height=\"" + k + "\" width=\"" + l + "\" fill=\"" +
               setColor + "/>";
          private void close()
               fileWrite = fileWrite +  "</g>" + "</svg>";
    public static void main(String [] args)throws Exception{
        FileWriter fileWriter = new FileWriter( args[0] );
        PrintWriter out = new PrintWriter( fileWriter );
        int dimen = Integer.parseInt( args[1] );
        Paint paint = new Paint();
        paint.open(dimen,dimen);
        dimen = dimen / 2;
        int originX = dimen, originY = dimen;
        for(; dimen > 0; dimen = dimen - 3){
           String red = random255();
           String green = random255();
           String blue = random255();
           paint.setColor( "#" + red + green + blue );
           paint.rect(originX-dimen,originY-dimen,dimen*2,dimen*2);
        paint.close();
        System.out.println(fileWrite);
        out.close();
     }{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Can't get CF11 to download free trial for students.  Anyone having the same problem with Adobe's site?

    Can't get CF11 to download free trial for students.  Anyone having the same problem with Adobe's site?

    Hi,
    Please download it from http://www.adobe.com/cfusion/tdrc/index.cfm?product=coldfusion&promoid=DJDUK use your Adobe ID and password to login and download CF11.
    Let me know in case you face any issue while downloading it, if you get any error try another browser.
    Thanks,
    Priyank

  • After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!

    After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!
    iTunes is a mess! It couldn't find it's own libraries and I was forced to create a new one. Now I don't know where my music is or if any's missing.

    columbus new boy wrote:
    How crap is that?
    It's not crap at all.
    It's not that simple. For example, I've 3500 songs on my MacBook but don't want them all on my phone, so I have to manually select each song again???
    There has to be a solution.
    Why not simply make a playlist with the songs you want on the iPhone?
    and maintain a current backup of your computer.

  • Simple button problem

    I am having a real problem creating a simple button - I have
    created a Flash file using Action script 2, and when I create a
    simple button - text with a rectangle as a background, (see
    http://www.elkhavenestate.com),
    and the over state is behaving in a bizarre fashion. This is my
    first time using CS3, so is there a new control that I'm
    missing?

    I take it that it's the Home button. It appears to have a
    selectable text field or something in it, which is causing the
    problem. Either change that to a static text field or set its
    selectable property to false. The other two buttons appear to be
    fine, so maybe you can just duplicate one of them and turn it into
    the Home button.
    If I picked the wrong button, let me know.

  • Scop problem

    Hi ,
    I having a problem communicating with loaded swf inside main
    file.
    Im using that script to have a transition between external
    swf :
    http://www.kirupa.com/developer/mx2004/transitions.htm
    most of it working fine but im having problem communicating
    with variable:
    Stage.swf:
    The main movie start to play and on its last frame it has the
    following action:
    this._lockroot=true
    //loading the first movie after the animation finish
    _root.currMovie = "main";
    _root.MC_Container.loadMovie(_root.currMovie+".swf");
    stop();
    portfolio.swf
    Than I press on the portfolio button and I get another main
    portfolio swf that has external files loeaded as well.its dividing
    the portfolio into categories , each category loading external
    file.
    First frame:
    this._lockroot=true
    _root.currMovie = "portfolio_3d";
    _root.MC_Container.loadMovie("portfolio_3d.swf");
    midframe=10;
    stop();
    buttons :
    on (release) {
    if (_root.currMovie == undefined) {
    _root.currMovie = "portfolio_print";
    _root.MC_Container.loadMovie("portfolio_print.swf");
    } else if (_root.currMovie != "portfolio_print") {
    if (_root.MC_Container._currentframe >=
    _root.MC_Container.midframe) {
    _level.currMovie = "portfolio_print";
    _root.MC_Container.play();
    portfolio_3d.swf
    the external file that loaded into the portfolio file is for
    example : portfolio_3d.swf ,
    the first frame action:
    this._lockroot=true
    midframe=10;
    middle frame has a stop(); command
    the last frame loading the next after the current movie
    finish:
    _root.MC_Container.loadMovie(_root.currMovie+".swf")
    the problem is that in the portfolio page, when I click the
    sub categries(3d,print,etc) , I get always the same movie. It seems
    like the variable doesn’t see the movie in the lowest level.
    It seems like a scop problem
    my url :
    www.shaygaghe.co.il
    thanks for your time ,
    Shay Gaghe

    what is the script that you have on the buttons on the bottom
    of the page that are supposed to load the new content? I think it
    may have something to do with your lockroot.

  • Function scope problem

    Hi all,
    I am using a class-based system for all my actionscript, but
    am having trouble getting the following code to work properly, and
    I am pretty certain it is a scope issue.
    public function
    setNavButtons(prevStart:Number,prevEnd:Number,nextStart:Number,nextEnd:Number){
    var owner = this;
    if (prevStart != undefined){
    mcPropertiesNav.btnBack.onRelease = function():Void{
    owner.reloadView(prevStart,prevEnd);
    if (nextStart != undefined){
    mcPropertiesNav.btnNext.onRelease = function():Void{
    owner.reloadView(nextStart,NextEnd);
    I've traced it out and know that when I use the reloadView
    method, the prevStart and prevEnd parameters are being passed in as
    undefined. Does anyone know how I would reference these variables
    within the onRelease functions?
    Thanks in advance
    Robert

    In the code you are posting a scope problem can't be
    pinpointed. The arguments you are providing are local to the
    function so there is no problem there. We might be able to help if
    you post the complete class.

  • Having Some Real Problems with SSI

    Please forgive me if my questions seem inexperienced. I am
    just learning how to incorporate server side includes into a new
    site I'm working on and am having some real problems getting things
    to work properly...
    I have been reading everything I can find on SSI's, and have
    finally got everything to work properly on my local system,
    however, now, I'm having issues after uploading the files to my
    server (IX Web Hosting).
    According to this document (“How to incorporate
    Server-Side Includes into an HTML page “) from the Adobe
    Knowledgebase, step number 4 says to…
    Text
    “Highlight all the text displayed in black and delete it.
    The HTML inspector should contain only the information in red. It
    is especially important NOT to have <html>, <head>
    or<body> tags in the SSI, because this will cause the HTML on
    the page to become invalid once the SSI is inserted.”
    Text
    Well, I tried that, but the code just looks exactly as it
    does in the code viewing pane. No RED characters anywhere! So I
    just deleted all the <html>, <head>, and <body>
    tags and saved the file.
    Now, when I insert the SSI into a new html file (which I
    saved as .shtml because that’s what my web hosting provider
    requires) everything looks great on my local system, but when I
    upload the files to my server and try to test the page with the SSI
    inserted into it, I get the following error message:
    HTTP/1.1 404 Object Not Found Server: Microsoft-IIS/5.0 Date:
    Sat, 05 May 2007 19:42:48 GMT X-Powered-By: ASP.NET Connection:
    close Content-Type: text/html
    404 Object Not Found
    Both files are located in the same directory (maybe
    that’s a problem?)
    My question is simple, exactly what should I absolutely NOT
    delete out of the source SSI file? Is there some part of it other
    than the content I want to reference that needs to stay in there?
    Also, both my server side include file and the html file that
    references it are saved with the .shtml extension. Is this wrong?
    Or does the ssi file need to be saved with an.ssi extension?
    Again, sorry for the amateurish questions, but we all have to
    learn sometime right?
    Any help would be greatly appreciated!
    Thanks,
    ~Greg

    Here's an shtml skeleton page -
    <html>
    <head>
    <title></title>
    </head>
    <body>
    <!--#include file="foo.html" -->
    </body>
    </html>
    and here's 'foo.html' -
    <p>Hello world</p>
    Does that help?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Myrrhlin225" <[email protected]> wrote in
    message
    news:[email protected]...
    > Please forgive me if my questions seem inexperienced. I
    am just learning
    > how
    > to incorporate server side includes into a new site I'm
    working on and am
    > having some real problems getting things to work
    properly...
    >
    > I have been reading everything I can find on SSI's, and
    have finally got
    > everything to work properly on my local system, however,
    now, I'm having
    > issues
    > after uploading the files to my server (IX Web Hosting).
    >
    > According to this document (?How to incorporate
    Server-Side Includes into
    > an
    > HTML page ?) from the Adobe Knowledgebase, step number 4
    says to?
    >
    >
    Text
    ?Highlight all the text displayed in black and delete it.
    > The
    > HTML inspector should contain only the information in
    red. It is
    > especially
    > important NOT to have <html>, <head>
    or<body> tags in the SSI, because
    > this
    > will cause the HTML on the page to become invalid once
    the SSI is
    > inserted.?
    Text
    >
    > Well, I tried that, but the code just looks exactly as
    it does in the code
    > viewing pane. No RED characters anywhere! So I just
    deleted all the
    > <html>,
    > <head>, and <body> tags and saved the file.
    >
    > Now, when I insert the SSI into a new html file (which I
    saved as .shtml
    > because that?s what my web hosting provider requires)
    everything looks
    > great on
    > my local system, but when I upload the files to my
    server and try to test
    > the
    > page with the SSI inserted into it, I get the following
    error message:
    >
    > HTTP/1.1 404 Object Not Found Server: Microsoft-IIS/5.0
    Date: Sat, 05 May
    > 2007
    > 19:42:48 GMT X-Powered-By: ASP.NET Connection: close
    Content-Type:
    > text/html
    > 404 Object Not Found
    >
    > Both files are located in the same directory (maybe
    that?s a problem?)
    >
    > My question is simple, exactly what should I absolutely
    NOT delete out of
    > the
    > source SSI file? Is there some part of it other than the
    content I want to
    > reference that needs to stay in there?
    >
    > Also, both my server side include file and the html file
    that references
    > it
    > are saved with the .shtml extension. Is this wrong? Or
    does the ssi file
    > need
    > to be saved with an.ssi extension?
    >
    > Again, sorry for the amateurish questions, but we all
    have to learn
    > sometime
    > right?
    >
    > Any help would be greatly appreciated!
    > Thanks,
    >
    > ~Greg
    >
    >

  • HT6030 Having major Mail problems since I updated Maverick on my 27" iMac. Delays deleting emails and moving emails to other folders. Anyone else having this issue? If so, any known fixes?

    I have an iMac that around 3 years old. Just installed Mavericks when it first was released. I also have a Time Capsule (2TB) that runs my network to my other three Apple devices: iPad2, iPhone 5s and a new Apple TV. Having major Mail issues here. Everything is very delayed and extremely slow. Moving emails to other folders sometimes takes a few minutes and the same goes for deleting emails. Delete them and they don't go into the trash for several minutes. It's getting very frustrating to say the least. Mail also quits very often. Mail also will freeze with the little color ball spinning, therefore I would have to force quit Mail. When the errors occur, it's automatically sent to Apple but there hasn't been an update since 10.9.1 that has fixed it. Apparently, that update was only for gmail issues. Anyone having the same problem? Fixes please?

    I have my entire network and all Apple devices setup as IMAP, not POP. If your settings are setup as a POP account on all devices, emails will not erase when deleted on your other devices. Just something to keep in mind. I'm sure you're aware of this but just wanted to throw it out there. Google IMAP vs POP. However, it seems like your having the same issues as I am. I'm going to swing by an Apple store by me and speak to the genius bar and see if they can come up with something or are aware of this issue. Keep you posted.

  • I am having a DNS problem with my computer. My laptop connects to the internet and my skype works normally but when i try to surf the web it says "DNS Look up failed".

    MY PROBLEM
    I am having a DNS problem with my laptop. It connects normally to th e wifi internet but when i try to surf the net it says "DNS Look up failed"
    This problem only occurs when with the internet at my house. whenever i connect elsewhere my computer works normally. My ipod, iphone, tablet and other friends computers work normally when they are connected to my internet. i use dmy neigbours nework a couple of times from my house and it wrks normally.
    Also when i turn my laptop on or off i can browse for a few minutes or seconds before it fails again. My skype works like there is no problem
    WHAT I HAVE TRIED TO RESOLVE IT
    I have tried changing the DNS, i used open DNS and google free DNS and it still didnt make a difference.
    I have rebooted router many times, nothing
    I have changed my home router, nothing
    I backed up my computer, resored everything it to factory setting and put everything back on; still nothing
    Run a diagnostics at 'Best buy' and they say nothing is wrong; but i know there is something wrong with the DNS
    I have tried different "sudo" type of codes on my comupter from stuff i got online and nothign has proved fruitful yet.
    i tried using safari, Google chrome and firefox, all not loading
    WHAT DO I DO TO FIX THIS?

    You are correct.  Syncing should transfer any purchased media, including videos, from your device to your iTunes library provided your computer is authorized for the Apple ID used to make these purchases.  You mentioned that you have uninstalled iTunes before, but if you didn't follow this guide exactly, uninstalling iTunes and all of its components in the order specified, it may not have been successful so you should try again:  Windows XP or Windows Vista/7.

  • I am having some huge problems with my colorspace settings. Every time I upload my raw files from my Canon 5D mark II or 6D the pics are perfect in color. That includes the back of my camera, the pic viewer on my macbook pro, and previews. They even look

    I am having some huge problems with my colorspace settings. Every time I upload my raw files from my Canon 5D mark II or 6D the pics are perfect in color. That includes the back of my camera, the pic viewer on my macbook pro, and previews. They even look normal when I first open them in photoshop. I will edit, save, and then realize once i've sent it to myself to test the color is WAY off. This only happens in photoshop. I've read some forums and have tried different things, but it seems to be making it worse. PLEASE HELP! Even viewing the saved image on the mac's pic viewer is way off once i've edited in photoshop. I am having to adjust all my colors by emailing myself to test. Its just getting ridiculous.

    Check the color space in camera raw, the options are in the link at the bottom of the dialog box. Then when saving make sure you save it to the srgb color space when sending to others. Not all programs understand color space and or will default to srgb. That won't necessarily mean it will be accurate, but it will put it in the ballpark. Using save for web will use the srgb color space.

  • I am having an MacBok Pro 13inch,having an Startup Problem, the time i press the power button after few seconds the apple symbol appears w/a loading sign below it

    i am having an MacBook Pro 13inch  , having an Startup Problem , the time i press the power button after few seconds the apple symbol appears with a loading sign below it and wont go further ahead of it . My data is all in the hard drive .. . I even tried the Internet recovery but no use !!!! but still no respons and the recovery and macintosh hd is now lock! but earlier only the recovery is lock and after both of them is lock.  i can reinstall,... and i didnt try to back up any data bec i dont know how? so please help me to resolve my prroblem.?

    luoie wrote:
    This thing happend,, it say Disk utility stopped repairing "Macintosh HD" disk utility can't repair this disk
    Sorry, possibly you need a new hard drive or try reformating. First
    you can try something like http://www.alsoft.com/diskwarrior/  it has been known to repair disk that DiskUtility could not. YMMV and they don't give it away.
    If Disk Warrior can not repair then you need to Reformate the drive. Make sure you have a back-up in place no matter what.
    http://www.apple.com/support/backup/
    Disk Utility will tell you something about it's SMART status:

  • I am having the same problems as several posters here.

    I am having the same problems as several posters here. My note 3 was pre-ordered and worked fine until may 16th of this year. This was the date of an ota upgrade to kitkat. After apps were "optimized" I first noticed such a power drain that my phone lasted 4 hours on standby without use. I uninstalled several apps including facebook which and rolled back google play services for several days. This helped my battery life which extended from 4 to 12 hours at low use. Previously, I could use the phone for nearly 48 hours without charging and using a number of apps which involved graphics, sound and data. Which leads to my next point, any graphically charged app (games generally) causes my phone to heat up tremendously and the phone leaks power like a sieve; again I reiterate this began may 16 with an ota update to kitkat which was rolled out by verizon MUCH later than other carriers but clearly didn't involve fixes.  Finally, and the most nagging problem of all....my mobile connectivity has been shot. I have dropped calls, I have had to drive to get signal, I have missed calls and I cannot afford this!! I am a home health nurse and must be in contact with MD offices and patients. Even mobile connectivity in my home is affected as I have two bars at max. I have noticed the wireless indicator go from 0 to 5 bars in a rapid cycle 5 to 6 times in a few second period and result in "no mobile network found" if I try to call anyone. This service is unacceptable and I don't want to have to root my phone as I am not sure that this would fix the problem. This is a 700 dollar phone and I shouldn't have these problems. If a solution cannot be reached, I am under contract for another year and several months and I demand a new phone. I will be saving all communications (or lack thereof) via screen shot for documentation.

    markaandersonco2006,
    Have you tried wiping your cache partition?  I noticed extremely poor battery life after the KK update, like you, (maybe 5 hours of use before requiring charging) and I saw a message on one of the Android Central forum (actually for the AT&T version of the Note 3) that mentioned to try wiping the cache partition.  That appears to have worked. Since then, my battery life has been phenomenal.  I don't know why this worked, or the downside of doing it.  But it worked.   As I write this, my battery is at 66%, and has been on for 14.5 hours (with one brief charge of 15 or so minutes in my car last night).
    Wiping the Cache partition from Recovery Mode
    This won't erase any important data.  Perform the following procedure:
    1) Turn off the device.
    2) Press and hold the following three buttons at the same time:
         a) Volume Up key
         b) Home key
         c) Power key
    3) When 'GALAXY Note 3' appears on the screen, let go of the Power key but continue to press and hold the Volume Up key and the Home key.
    4) When the Android System Recovery screen appears, release the Volume Up and Home keys.
    5) Press the Volume Down key to highlight 'wipe cache partition.'
    6) Press the Power key to select and wipe the cache.
    7) With 'reboot system now' highlighted, press the Power key to restart the device.
    Good Luck!

  • I am having a strange problems on the Data entry Forms

    A form that has been used since 2005 in an old version of HFM 3.51 was migrated to SYstem 11.1.2.1 in January of 2012 and has been working since then. Suddenly we start having some strange problems. Our response time has been very slow and I am wondering if there were some problems in any of the services. Maybe a service did not start properly related to the WEB forms.
    We entered a number in one of the cell to be: 348336349 as soon as we hit enter, the number was formatted to 348,336,349 but when I submit the number it came back as 3. I tried it several times and it did not work, I checked the scaling and that was set blank. One of my user tried it and it did not work. I tried looking into the Preferences and my screen froze. In the meantime one of my user was able to enter the number and was able to refresh it as well. Then she enter another number on a different cell and the same problem occurred it seemed as if it truncated all the digits except for the left most digit, we are unable to figure out how to resolve this issue. The number entereed in the cell is 826,251,218 it stores 8 and loses the rest of the 8 digits. I right click and checlk the properties and it says that it has stored 8 instead of 826,251,218.
    Following is the DEF script. Does anyone has any ideas, I am wondering if I have to restart the services..
    ReportType=WebForm
    ReportLabel=Aging_Receivables
    ReportDescription=Aging Receivables
    Instructions=Please make sure you set up your point of view (POV) appropriately. Business Unit (BU): AG, CE and Other_BU. Brand: Case, NH and Other_Brand.
    BackgroundPOV=S#Actual.Y#2011.P#Jan.w#YTD.V#<Entity Currency>.I#[ICP None].C2#SERVICED.C3#GL_INPUT.C4#Input
    SelectablePOVList=S{[Hierarchy]}.Y{[Hierarchy]}.P{[Third Generation]}.E{[Hierarchy]}.C1{[Base]}.C2{[Hierarchy]}.C3{[Base]}.C4{GL.[Hierarchy]}
    C1=A#Current
    C2=A#0_To_30
    C3=A#Total_Current
    C4=A#31_To_60
    C5=A#61_To_90
    C6=A#91_To_120
    C7=A#121 Plus
    C8=A#Total_Past_Due
    C9=A#Total_Aging_Rec
    C10=A#Current_OffBook
    C11=A#Past_Due_OffBook
    C12=A#T_Aging_Rec_OffBook
    C13=A#Total_MP_Aging_Rec
    C14=A#Aging_Rec_Diff
    R1=C1#_Retail
    R2=C1#_Wholesale_Tot
    R3=C1#_Wholesale
    R4=C1#_Wholesale_Natl
    R5=C1#_Wholesale_Othr
    R6=C1#_Credit_Card
    R7=C1#_Specialized_Lending
    R8=C1#_Marine
    R9=C1#_Soris
    R10=C1#_Other
    R11=C1#_Material
    R12=C1#Sup_Product
    FormInputBoxLength=23
    PrintNumRowsPerPage=33
    PrintNumDataColsPerPage=8
    ShowLabels=False
    ShowDescriptions=True
    SuppressColHeaderRepeats=False
    Edited by: user8267293 on Aug 8, 2012 12:41 PM
    Edited by: user8267293 on Aug 8, 2012 12:43 PM

    Hi,
    Did you find a way to solve your problem ? We have exactly the same for one application and we are using the same version of HFM : 11.1.2.1.
    This problem is only about webforms. We can correctly input data through Data Grids or Client 32.
    Thank you in advance for your answer.

  • I have Iphoto '09, version 8.1.2 (424). I am having an identical problem.  All my pictures are imported into Iphoto when I downloaded them from my camera.  Until recently, I thought that the pictures were actually saved in the library.  Since I need to cr

    I have Iphoto '09, version 8.1.2 (424). I am having an identical problem.  All my pictures are imported into Iphoto when I downloaded them from my camera.  Until recently, I thought that the pictures were actually saved in the library.  Since I need to crop my pictures for the web, and Iphoto doesn't do that, I purchased Photoshop Elements to do that.  To my surprise, when I try to get a picture from Iphoto to Photoshop, it can't be done. That was when I realized, after wasting a lot of time, that the photos are not in the Iphoto library.
    I started naming the pictures on Iphoto so I had a recognizable file name to open on Photoshop. Couldn't find it.  I looked in the Backup folder and the Transfer software folder (I have a Nikon camera), and the names I entered in the Iphoto display, could not be found.
    When I am trying to upload a photo to the web, I get the Finder folder showing  with an active folder called "Photos" under "Media", which only displays Iphoto and PhotoBooth.  This is a folder name that I cannot find in my HD anywhere when I look for it.  If I edit a picture with Photoshop, I am not going to save it back to Iphoto (not sure whether it will work properly).  How do I get my folder of edited photos to show when I want to upload a picture to the web?
    Where (the name of the folder) do I find the pictures I see displayed on the Iphoto library, including any name changes, keywords added, and so on?

    See my response to your other post.

  • I am having a real problem running Safari. It is super slow and I am getting the rainbow circle a lot. Can anyone help me? Please. It is only two years old.

    I am having a real problem with my MacBook Pro. While I am using Safari it is running really slowly and I am getting the rainbow circle a lot. Can someone give me some suggestions? I have no idea why it is so slow and it will not open any webpages.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

Maybe you are looking for

  • Making Original attachment mandatory in CV01N

    Dear All, What should be done in order to make the original file attachment in DMS compulsory while creating the Document Info Record ? Thanking You. - Ravi

  • Digitized music not transferring from iTunes to iPod

    I've been transferring and digitizing all my old cassettes onto my computer. It works great and plays fine in iTunes, but it won't load onto the iPod. It's in mp3 format like all the other music on my iPod. Any ideas or suggestions as to what to do t

  • Oracle.jdbc.driver.oracleResultSet Vs java.sql.ResultSet

    Hi all Could any one got any idea on this problem... My application program is forced to use both Java Result Set(java.sql.ResultSet) and Oracle ResultSet(jdbc.driver.oracleResultSet). This on javac get compiled and is working fine.... But when i try

  • Controlling Layers and Acrobat X Pro

    We are in the process of transitioning from Acrobat 9 Pro Extended to Acrobat X Pro.  My current version of Acrobat 9 has a Right Hemisphere plugin that provides some useful templating features including nice buttons and text fields.  The feature tha

  • I tried to download version 8.0 - how do I know what version I have?

    When I tried to download version 8.0, like others have found it does not seem to "take". Firefox, I suggest you get on this with some assistance while we are still with you.