HELP!!!!  BIG PROBLEMS WITH REFINEMENT TOOL

I JUST bought CS5 primarily for the Refinement Tool....followed Lynda's tutorial to a tee....turned out great, but when tried on my own...I got HUGE transparent places in finished product.  .... including those in the original selection.  Anyone running into this same problem or have a FIX????  Tried the selection, thinking that might be the problem and even two pictures using both the Quick Mask and the Magic Selector with the same results!!!  Once it's transparent....png.... There NOTHING you can do as there is no longer those pieces.  It even cut one eye out of the little girl!  HEEEEEEEEEEEELLLLLLLLLPPPPPPPPPPP!
Kathi T.

Hi Amazonian,
I read through your issues and I can help with two, firstly the Printer you wish to use (Officejet 6110) is the exact same one that I use and I have an intel iMac 20", It prints off everything that I ask of it. I also use Mac Microsoft Office 2004 and that too works fine and prints for me. Your issue with internet plug ins is due to the plug ins not being universal applications (eg they are PPC apps only) so a quick fix is to do a Get Info on the Safari icon and then when the info box is displayed check the box OPEN USING ROSETTA to force it to use PPC code. You can now run the realaudio and realplayer plug ins now as well as any other PPC plug ins.
Hope this helps you.
good luck

Similar Messages

  • Please Help : Big problem with applets

    Hi,
    I have a big problem which I have not been able to figure out. The applet I have enclosed works fine on some computers but not on others .
    I am running :
    java version "1.3.1_02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_02-b02)
    Java HotSpot(TM) Client VM (build 1.3.1_02-b02, mixed mode)
    The applet runs perfectly Ok at university but not on other computers.
    The objective of the applet is to display 3 shapes on the screen once. On the university computer it works, however at home and work the 3 shapes are continuously displayed on the screen ( like they are in some infinite loop). I have been struggling with this for days any help would be greatly appreciated.
    It would help me if some of you could run this applet and let me know if the shapes are displayed once or if the shapes are continuously updated on the screen ( assuming that the applet window is not resized covered over etc. )
    =========================================
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    /*<html><applet code = "stage1.class" height = "600" width="810"></applet></html>*/
    public class stage1 extends JApplet{
    JPanel extraPanel = new JPanel();
    public void init()
    Container c = getContentPane();
    extraPanel.setBackground (Color.white);
    extraPanel.setLayout (new FlowLayout());
    c.add(extraPanel);
    public void paint (Graphics g)
    //super.paint( g ); // call superclass's paint method
    // populate the two dimensional array - store the coordinates for the circle and square shapes
    int circle[][] = { {100,100,200,200}, // display circle in the left hand side of the screen
    {350,100,200,200}, // display circle in the middle of the screen
    {600,100,200,200} }; // display circle in the right hand side of the screen
    int rect[][] = { {100,100,200,200}, // display square in the left hand side of the screen
    {350,100,200,200}, // display square in the middle of the screen
    {600,100,200,200} }; // display square in the right hand side of the screen
    // populate the two dimensional array - store the coordinates for the polygon shapes
    int polyX[][] = { {150,250,300,250,150,100 }, // display polygon in the left hand side of the screen
    {400,500,550,500,400,350 }, // display polygon in the middle of the screen
    {650,750,800,750,650,600} }; // display polygon in the right hand side of the screen
    int polyY[] = { 100,100,200,300,300,200    }; // the "Y" co-ordinates wont change for all three polygons
    int xCoordinates[] = new int[ 6 ];
    int pickAShape
    , pickAColour
    , polygonCount = 0
    , circleCount = 0
    , squareCount = 0
    , redCount = 0
    , greenCount = 0
    , blueCount = 0
    , yellowCount = 0 ;
    for ( int position = 0;position < 3;position++ )
    pickAShape = 1 + ( int )( Math.random() * 3 );
    pickAColour = 10 + ( int )( Math.random() * 4 );
    switch ( pickAShape )
    case 1: // draw a circle
    switch ( pickAColour )
    case 10:
    g.setColor( Color.red );
    redCount++;
    break;
    case 11:
    g.setColor( Color.green );
    greenCount++;
    break;
    case 12:
    g.setColor( Color.blue );
    blueCount++;
    break;
    case 13:
    g.setColor( Color.yellow );
    yellowCount++;
    break;
    g.fillOval( circle[position][0],circle[position][1],circle[position][2],circle[position][3] );
    circleCount++;
    break;
    case 2: // draw a rectangle
    switch ( pickAColour )
    case 10:
    g.setColor( Color.red );
    redCount++;
    break;
    case 11:
    g.setColor( Color.green );
    greenCount++;
    break;
    case 12:
    g.setColor( Color.blue );
    blueCount++;
    break;
    case 13:
    g.setColor( Color.yellow );
    yellowCount++;
    break;
    g.fillRect(rect[position][0],rect[position][1],rect[position][2],rect[position][3] );
    squareCount++;
    break;
    case 3: // draw a polygon
    switch ( pickAColour )
    case 10:
    g.setColor( Color.red );
    redCount++;
    break;
    case 11:
    g.setColor( Color.green );
    greenCount++;
    break;
    case 12:
    g.setColor( Color.blue );
    blueCount++;
    break;
    case 13:
    g.setColor( Color.yellow );
    yellowCount++;
    break;
    xCoordinates[0]=polyX[position][0];
    xCoordinates[1]=polyX[position][1];
    xCoordinates[2]=polyX[position][2];
    xCoordinates[3]=polyX[position][3];
    xCoordinates[4]=polyX[position][4];
    xCoordinates[5]=polyX[position][5];
    Polygon polygonInstance = new Polygon ( xCoordinates, polyY, 6 );
    g.fillPolygon( polygonInstance );
    polygonCount++;
    break;
    // display the results
    setFont(new Font("Serif",Font.BOLD,24));
    g.setColor(Color.black);
    if ((circleCount ==3 || squareCount ==3 || polygonCount==3) && (redCount ==3 || greenCount ==3 || blueCount==3 || yellowCount ==3))
    g.drawString( "YOU WIN !!!!" ,380,400 );
    else
    g.drawString( "YOU LOSE !!!!",380,400 );
    } // end method paint
    } // end class stage4
    =========================================
    Regards and thanks

    O.K. You will not believe this, but the problem will be solved if you change the following line from:
        setFont(new Font("Serif",Font.BOLD,24));to:
        g.setFont(new Font("Serif",Font.BOLD,24));Now, since I am also learning JAVA, the way I went about solving was to create your applet from scratch, using cut and paste, and running it piece by piece till I ran into the flashing display. Took me a while. I am enclosing my version of the program for your comments.
    import java.awt.*;
    import java.applet.*;
    public class Slotto extends Applet {
        int circle[][] = { {100,100,200,200}, // circle in the left hand side of the screen
                           {350,100,200,200}, // circle in the middle of the screen
                           {600,100,200,200} }; // circle in the right hand side of the screen
        int rect[][] = { {100,100,200,200}, // square in the left hand side of the screen
                         {350,100,200,200}, // square in the middle of the screen
                         {600,100,200,200} }; // square in the right hand side of the screen
        int polyX[][] = { {150,250,300,250,150,100 }, // polygon in the left hand side of the screen
                          {400,500,550,500,400,350 }, // polygon in the middle of the screen
                          {650,750,800,750,650,600} }; // polygon in the right hand side of the screen
        int polyY[] = { 100,100,200,300,300,200 }; // the "Y" co-ordinates wont change for all three polygons
        int xCoordinates[] = new int[ 6 ];
        int pickAShape
        , pickAColour
        , polygonCount = 0
        , circleCount = 0
        , squareCount = 0
        , redCount = 0
        , greenCount = 0
        , blueCount = 0
        , yellowCount = 0
        , position ;
        public void paint(Graphics g) {
            for (position = 0; position < 3; position++) {
                chooseColor(g);
                drawTheShape(g);
            declareResults(g);
        public void chooseColor(Graphics g) {
            pickAColour = 10 + ( int )( Math.random() * 4 );
            switch ( pickAColour )
                case 10:
                    g.setColor( Color.red );
                    redCount++;
                    break;
                case 11:
                    g.setColor( Color.green );
                    greenCount++;
                    break;
                case 12:
                    g.setColor( Color.blue );
                    blueCount++;
                    break;
                case 13:
                    g.setColor( Color.yellow );
                    yellowCount++;
                    break;
        public void drawTheShape(Graphics g) {
            pickAShape = 1 + ( int )( Math.random() * 3 );
            switch ( pickAShape )
                case 1: // draw a Circle
                    g.fillOval( circle[position][0],
                                circle[position][1],
                                circle[position][2],
                                circle[position][3] );
                    circleCount++;
                    break;
                case 2: // draw a Square
                    g.fillRect(rect[position][0],
                               rect[position][1],
                               rect[position][2],
                               rect[position][3] );
                    squareCount++;
                    break;
                case 3: // draw a Polygon
                    xCoordinates[0]=polyX[position][0];
                    xCoordinates[1]=polyX[position][1];
                    xCoordinates[2]=polyX[position][2];
                    xCoordinates[3]=polyX[position][3];
                    xCoordinates[4]=polyX[position][4];
                    xCoordinates[5]=polyX[position][5];
                    Polygon polygonInstance = new Polygon ( xCoordinates,
                                                            polyY, 6 );
                    g.fillPolygon( polygonInstance );
                    polygonCount++;
                    break;
        public void declareResults(Graphics g) {
            g.setFont(new Font("Serif",Font.BOLD,24));
            g.setColor(Color.black);
            if ((circleCount ==3 || squareCount ==3 || polygonCount==3)
             && (redCount ==3 || greenCount ==3 || blueCount==3 || yellowCount ==3))
                g.drawString( "YOU WIN !!!!" ,380,400 );
            else
                g.drawString( "YOU LOSE !!!!",380,400 );
    }Regards.

  • PLEASE, PLEASE HELP: Big problems with my Zen Touch. (Firmware/driver issu

    So here's the deal:
    Last night I thought I'd finally take the time to upgrade my Zen Touch to 2. from .3 or something like that. I noticed that there was a warning saying that this was no small upgrade, and that I should back up everything I have on it.
    I'm glad I did, because now my MP3 player situation is seriously screwed up, big time. During the upgrade process, my computer froze, leaving my Zen Touch without firmware (ok, so firmware version 0.0.0). Upon turning the device on, it boots up in recovery mode. This allows me to either format, clean up, or "reupload" firmware. I've tried all of these options, but the fact is clear that my computer simply will no longer recognize my MP3 player.
    It does, however, recognize it at as a generic storage device. However, this isn't enough for me to reinstall the player's firmware unfortunately.
    So basically, I can't update driver or firmware right now, because my computer won't acknowlege my Zen Touch!
    Somebody please, please help.
    I've already tried using the setup file from http://www.jumpingcholla.com/jce_nomad_ZEN.htm.
    Seriously, please help!

    Sort of success!
    I now finally have firmware 2. installed on my Zen Touch! Yeah! I'm not entirely sure how I did it, and I'm not bothering to find out, I'm just glad I finally got it on there.
    But some problems still remain. After all this fiddling with my driver and firmware and whatnot, my computer just doesn't see my MP3 the same way as it used to. Before, it was great, all I had to do was plug her in and I could bring up Zen Explorer in Windows Explorer, or organize my stuff in Creative MediaSource.
    Now that's not the case. The only way I can sort of add stuff to my player now is by going into Windows Explorer, which is still more or less acknowleging my player as a "portable device". Granted, there is a dri've called "My Zen", but it doesn't bring up Zen Explorer like it used to when I click on it. Furthermore, when I go into MediaSource, I can't select it as a location, there just isn't anything there.
    It almost seems as if my computer thinks I'm just using a portable hard dri've. Is there anyway I can tell it that it's an MP3 player, too?
    Thanks!

  • Need help.Big problem with battery

    Hello all! I have HP Mini 110-3864sr for 3 years. I  rarely used the battery but if I do it , my notebook was working for 3-6 hours. 15 of August I left for business trip and  my HP stayed at home. When I came back on 22 of August, I switched it on, but I found that the battery doesn`t work at all. I have  Windows 7  and I see that the battery status is 0% and no  charging. I have done everything that I have found in the internet. I installed HP support assistant and did diagnostic from BIOS etc. Nothing helped, but HP support assistant says that the battery is OK. During  the test it starts charging for 15 sec and that is all. I suspect that when I left the battery was about 10% and during the  week It lost the power.
    I know that it must work because as I have said before it  cat run notebook for 3 hours +++. Please help what I have to do???
    This question was solved.
    View Solution.

    "I know that it must work because as I have said before it  cat run notebook for 3 hours +++. Please help what I have to do???"
    If you remove the battery and plug in the power adapter are you able to boot into Windows?
    If that is posssible, then your battery has most likely failed and requires replacement regardless of what the diagnostic test has told you.
    Notebook or netbook batteries are only guaranteed from new for one year. If you get three+ years of service life out of a notebook's battery, you can consider yourself quite fortunate.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Hi I've a big problem with adobe acrobat reader XI pro and I hope you can help me. The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reade

    Hi
    I've a big problem with adobe acrobat reader XI pro and I hope you can help me.
    The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reader (adobe pdf reader, internet browsers, ...etc.).
    This problem started to happen since yesterday when I installed adobe acrobat reader XI pro to try it before I buy it, and before that when I was using the free adobe pdf reader I was totally able to copy any text from any pdf and past it anywhere with nothing wrong.
    What can I do?
    thank you a lot.

    There is no product called Adobe Acrobat Reader Pro. There is
    - Adobe Acrobat Pro ($$)
    - Adobe Reader (free)
    Which do you have? And are you a programmer?

  • Having big problems with my new Mac Pro, when I launch Photoshop CC, I get an error message, can carry on but after a few tasks it starts going gar... menus go blank, when you try to save it shows a blank box.... can anybody help?

    Having big problems with my new Mac Pro, when I launch Photoshop CC, I get an error message, can carry on but after a few tasks it starts going gar... menus go blank, when you try to save it shows a blank box.... can anybody help?

    when I launch Photoshop CC, I get an error message
    and what exactly is the text of that error message?

  • Having big problems with Creative Zen Micro Photo!! I need much urgent help!

    Hi. I am having a big problem with my MP3 Creative Zen Micro Photo device at the computer.Here is the thing:Before I bought this I had the regular Zen Micro & having fun with it. I had no problems with that when I used the Media Explorer to transfer songs. So I bought the Zen Micro Photo & installed it my computer. As normal I used the Media Explorer to transfer songs & pictures.So I reinstalled Windows XP at my computer, and when I installed the CD that followed to transfer new songs, the Windows said that it's an unknown thing I have connected in the USB.So I installed Service Pack & 2. I have tried to install drivers from the cd but it seems that there are no drivers on the cd! The big problem is that when I connect the MP3 to the computer, it doesn't read it's a Zen Micro, it's just unknown! So the Zen Micro Photo Media Explorer program doesn't work & I can't transfer songs or picture on it! And it just happened after I re-installed Windows on my computer. The same thing happened on my brother's computer after he re-installed windows. And when I connect the MP3 to the USB, it says that it's not a USB 2.0, but .! And I am sure it is 2.0 because it has always been like that before I re-installed windows. Also the MP3 does not re-charge when I put it my computer! The battery is just the same, it tries to do it but it doesn't. So I am using my sisters computer to charge the MP3 & transfer songs. I have tried everything but I can't seem to understand what the problem is? I have never experienced something like this before, and I really hope you can help me with this! To be honest I think what I am missing is the driver. So can someone PLEASE provide me the link for the driver? I have downloaded all those 3 on www.creative.com, but they are none of them! Also that playforsure firmawre thingy does not work because it sais that I have to connect my MP3, and it is connected already!Please reply as quick as possible! Thanks a lot for you kind help!
    I have also sent this mail to creative support! But please help me I have had this problem for almost 2 months now! =(Message Edited by anakwalajinn on 05-0-2006 08:47 PM

    Might try this:? http://forums.creative.com/creativel...mp=true#M95059

  • Big problem with my 4th Gen, please help !!!

    Hi guys.
    Well I've a big problem with a 4th gen Ipod. The prob is that the Select button on the middle doesn't work.
    I've tried everything : Did a reset, a complet restore from Itunes 7, but it was unsuccesful.
    I don't really understand the problem, I was using the Ipod normally then suddenly the button didn't work !!
    Please help me. In addition, I cannot carry it to the Apple Centre because I live in Algeria.
    Thanks.

    No ideas ???
    I've tried to open it as well, I've unplugged all the connectors, cleaned it with alcohol, but the button still not responding.
    Do you think that the problem would come from the logic board ?? Because the button itself worked (I used a METRIX to test it), and I can make a reset with no problem (the reset needs the central button).
    Please help me. Thanks.

  • Please help!!!!!!!! I am having a big problem with my mac

    This is the whole story that has been going on. I posted yesterday and Ray told me to repost and see if someone else can help. Please dont know what to try next.
    Problem with my Imac
    Posted: Dec 27, 2007 7:01 AM
    Click to reply to this topic Reply email Email
    Ive been having a problem with my Imac 10.4. I believe that when my computer was doing the last update someone manually shut it down since then i havent been able to get into my hardrive to start up my computer. I brought it into the apple store the guy at the genius bar told me that he couldnt locate my hard drive and i would have to get a new one. I didnt purchase the new one I went home to see if i can resolve it on my own. I went out and bought a external hard drive and bought a program to fix the hard drive. So now the hard drive pops up on my computer and im able to get into it and i backed up most of my information on to the new hard drive. If now that i can see the hard drive is there any way to repair it so i can start using my computer normally again? Please help
    Re: Problem with my Imac
    Posted: Dec 27, 2007 7:06 AM in response to: Shelomo
    Click to reply to this topic Reply email Email
    In utilities there's disk utility, find your HD, the one you want repaired and run the repair permissions program.
    Ray
    Posts: 12
    From: New Jersey
    Registered: Dec 27, 2007
    Re: Problem with my Imac
    Posted: Dec 27, 2007 7:11 AM in response to: smithrj
    Click to reply to this topic Reply email Email
    I already tried that but I read somewhere else to try that a couple of times. Can you tell me what i should try after that?
    Shelomo
    Posts: 317
    From: Syracuse, New York
    Registered: Jul 13, 2007
    Re: Problem with my Imac
    Posted: Dec 27, 2007 7:18 AM in response to: Shelomo
    Click to reply to this topic Reply email Email
    What's left to do? Does the permissions tell you your HD is OK? Be more specific in what you want to do, I don't understand Shelomo. Post what it is you want done. Because there are many 3rd part applications that may solve your problem.
    Cheers,
    Ray
    MacBook 2GB Intel Mac OS X (10.4.11) iMac 2Gb 2.8GHz 500 w/ 10.4.11 iPod shuffle 1 GB
    Shelomo
    Posts: 12
    From: New Jersey
    Registered: Dec 27, 2007
    Re: Problem with my Imac
    Posted: Dec 27, 2007 7:22 AM in response to: smithrj
    Click to reply to this topic Reply email Email
    I ran repair disk first and it said that there was an underlining error, and i did that before i ran permissions. Will it work after the permissions is finished running?
    imac 20" Mac OS X (10.4)
    smithrj
    Posts: 317
    From: Syracuse, New York
    Registered: Jul 13, 2007
    Re: Problem with my Imac
    Posted: Dec 27, 2007 7:42 AM in response to: Shelomo
    Click to reply to this topic Reply email Email
    Repair permissions, if it tells you OK, your OK. No more to do.
    Hope all goes well,
    Ray
    MacBook 2GB Intel Mac OS X (10.4.11) iMac 2Gb 2.8GHz 500 w/ 10.4.11 iPod shuffle 1 GB
    Shelomo
    Re: Problem with my Imac
    Posted: Dec 27, 2007 8:18 AM in response to: smithrj
    Click to reply to this topic Reply email Email
    ok, when it finishes repairing can i send another message to you if this doesn't work maybe you might have another idea what to try? Thanx again
    imac 20" Mac OS X (10.4)
    smithrj
    Shelomo
    Posts: 12
    From: New Jersey
    Registered: Dec 27, 2007
    Hi, ok so it finished running the reapir permissions and that came out ok, when I ran repair disk we got errors and the errors said ivalid record count, volume check failed, the underlying task reported failure on exit, 1 volume could not be repaired because of an error. Do you have any idea what I can try now. I really dont want to have to get a new hard drive put into my computer. Thank you
    Shelomo
    imac 20" Mac OS X (10.4)
    smithrj
    Posts: 317
    From: Syracuse, New York
    Registered: Jul 13, 2007
    Re: Problem with my Imac
    Posted: Dec 28, 2007 5:37 AM in response to: Shelomo
    Click to reply to this topic Reply email Email
    Shelomo, I don't know. Post the whole report using cut and paste and someone will jump in and help figure this out.
    OK
    Ray
    SOMEONE PLEASE HELP ME!!!!!! Thank you very much
    Shelomo

    What program did you use to fix the internal hard drive? What repairs did it report making? More crucially, if repairs were reported, did you re-run the utility until it reported no problems found? It's possible for one set of problems with a drive to mask others.
    If you have about 5GB or so free space on the internal hard drive, you can use your OS X Install disc to perform an Archive and Install to recover from the failed Software Update. When the computer restarts, download and run the OS X Update Combo 10.4.11 (Universal). When the Mac restarts after that, run Software Update. During all this, make sure nothing interrupts or shuts down the Mac! Note that the first start after each of these updates will take significantly longer than subsequent starts, so be very patient.
    How did you back up your internal drive to the external one? Did you just drag things over in the Finder, or did you use a utility such as SuperDuper! or CarbonCopyCloner? Does the external HD show up as a bootable volume in System Preferences > Startup Disk, or using Startup Manager?

  • I have big problems with mountain lion. you can not have a boot disk system I resulted in the need to re-download the os from scratch impiegandoci 8 hours, it is outrageous even with windows 95.

    I have big problems with mountain lion. you can not have a boot disk system I resulted in the need to re-download the os from scratch impiegandoci 8 hours, it is outrageous even with windows 95.
    at least that the operator has confirmed to me that he called me. I also have problems with either the start of the mac with the power off. I can not understand if it crashes or is just very very slow.
    Finally, I have a problem with the external hard disck. I often said to have been ejected incorrectly (not true) and I start to restore the startup recovery disk because disk utility is ineffective from the normal operating system .. is a shocking thing, but how you reduced. in four years it had never happened. seem to have windows or worse. Wake up.
    I am an Italian, alas, and then I would like an answer to my language because my € are the same as German French or English.

    You are on Windows 2000, you do not have a "Firefox" button, and should consider yourself to be fortunate in that you still have menus and don't have to do anything to get the menus back instead of the "Firefox" button. (The same applies to Windows XP users).
    Use the "File" menu to get to Import. You are not on Windows 7 or Vista, and don't have to put up with the nonsense added for Aero.
    If you want the "Firefox" button you can get it with View -> toolbars -> (uncheck) Menu Bar. The menu bar and the "Firefox" button were supposed to be mutually exclusive (which is impossible in some cases without being incompatible).
    Once you are using the "Firefox" button ...
    Use the "Alt" key to view the menu bar (temporarily) containing File, Edit, View, History, Bookmarks, Tools, and Help. On Windows 7 and Vista, the menu bar was hidden by default in Firefox 4 and above. These menu items are more or less available under the "Firefox" button which has the most used of the built-in Firefox menu items available in a different format.
    To get back to having menus again. "Firefox" button -> Options (second column) -> (check) Menu Bar
    You can make '''Firefox 7.0.1''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 8.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

  • Big problem with Airport Extreme and Vivax Provider in Brazil

    Hello guys.
    I live in Brazil and I bought my Airport Extreme in a recent trip to USA.
    For some years I was a client of Telefonica and had an ADSL link, I had a D'Link G604T to do both the modem and router operation in the same box. I was happy with my connection of 1Mbps.
    In a recent promotion of Vivax I switched to a cable connection to have both TV and Internet at the same operator, my link now has 3Mbps.
    With this pack I also received free one RCA cable modem model DCM425B, it was installed fine in one computer only. Everything was fine my connection was faster the old one.
    So I went to install the Airport Extreme to make things even better.
    After I installed I went to see the web status of my modem, all parts were looking fine, but the modem could not see the computer. Bad sign.
    I talked to Vivax support people and apparently it was a problem with their network setup and they manage to make it right. My model now sees my computer.
    After that problem was solved I could not make AE to work with the modem, it had the green light and the setup looked fine, but I could not open any site. I tried to turn off my modem and AE, waited some minutes and turned on first my modem and after it was up I turned on AE. All lights looked fine but again no connection to any site.
    I called again the Vivax support center and they tried to help me but the don't know AE and they could not help me with all the details but said there was 2 10.x.x.x coming from my side. So I tried to use in bridge mode. I also selected the 192.x.x.x range instead of 10.x.x.x as default.
    After many setups and turn off and on again my connection is working but I have a big problem with wireless. If I turn it on I loose my connection, it seems that AE sends 2 equal ethernet address to Vivax and their network don't like it cutting me off.
    So my connection setup is like this:
    RCA Cable modem model DCM425B at 3Mbps using a 200.x.x.x ip
    Airport Extreme connected to a Mac and a Windows PC by wire using the 192.x.x.x range ip
    Wireless is off
    Bridge mode is on
    This the only way I could make it work.

    After a firmware update it worked fine.

  • Big Problem with Mighty Mouse

    I'm having a rather big problem with my wired Mighty Mouse. Basically, the middle button is the only top button that works, and clicking with the left or right side does nothing but activate the middle button instead.
    Here's the nitty gritty...
    The reason I can assume this happening is because I cleaned the scroll wheel to un-stick it. I did this by getting a sheet of white paper, turning the mouse upside down, and rubbing the wheel all over the paper, which left paths of dirt and fluff everywhere. Worked great, and the scroll wheel now works perfectly again.
    The mouse worked fine after that which is what makes this problem odd, but later that night, all the top buttons just started acting as one middle button... So, (using my tablet) I changed the setting for the middle mouse button in the preferences to 'Primary Button'.
    Now basically what I have is a one button mouse (with side squeezy things).
    How do I make the left and right buttons work again? The preferences are set up fine... as in the right side is assigned to 'Secondary Button', etc, but it still only works as middle mouse.
    Any ideas or help would be really appreciated!
    Cheers
    Cuby

    If you are going to replace it, consider getting a plain old optical mouse that uses Apple's built-in generic USB mouse driver. I like the ones from Microsoft that have two buttons, a clickable scroll wheels, and that's it. This is the one that I use now.
    [Microsoft Optical Mouse (Blue)|http://www.amazon.com/Microsoft-K81-00004-Optical-Mouse-Blue/dp/B000068M P2/ref=sr11?ie=UTF8&s=electronics&qid=1244701238&sr=8-1]
    It is reliable, comfortable, and sturdy. I've never cleaned it. And it's so cheap. I had a different basic Microsoft mouse before, and the only reason I got a new one was because I wore out the pads on the bottom that let it slide around.
    Tip: Apple's generic USB mouse driver does not seem to have way to set the center button click. But if you set it to something when the Mighty Mouse is connected, that setting seems to continue to work with the generic mouse. Mine is set to do Exposé.
    Not sure why you cannot do +reset PRAM+. If your internal speaker volume setting is muted so that you do not hear the startup sound, you need to turn up the volume a bit. The startup sound is your indicator (when you hear it for the second time) that you can let go of then four keys.

  • Very big problem with JSF about FORM and "id=" for HTML form's elements and

    I have discovered a very big problem with JSF about FORM and "id=" for HTML form's elements and java instruction "request.getParameterNames()".
    Suppose you have something like this, to render some datas form a Java Beans :
    <h:dataTable value="#{TablesDb2Bean.myDataDb2ListSelection}" var="current" border="2" width="50%" cellpadding="2" cellspacing="2" style="text-align: center">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name"/>
    </f:facet>
    <h:outputText id="nameTableDb2" value="#{current.db2_name_table}"/>
    </h:column>
    </h:dataTable>
    Everything works fine...
    Suppose you want to get the name/value pairs for id="nameTableDb2" and #{current.db2_name_table} to process them in a servlet. Here is the HTML generated :
    <td><span <span class="attribute-name">id=<span class="attribute-value">"j_id_jsp_1715189495_22:0:nameTableDb2">my-table-db2-xxxxx</span></td>
    You think you can use the java instructions :
    Enumeration NamesParam = request.getParameterNames();
    while (NomsParam.hasMoreElements()) {
    String NameParam = (String) NamesParam.nextElement();
    out.println("<h4>"++NameParam+ "+</h4>);
    YOU ARE WRONG : request.getParameterNames() wants the syntax *name="nameTableDb2" but JSF must use id="nameTableDb2" for "<h:outputText"... So, you can't process datas in a FORM generated with JSF in a Servlet ! Perhaps I have made an error, but really, I wonder which ?
    Edited by: ungars on Jul 18, 2010 12:43 AM
    Edited by: ungars on Jul 18, 2010 12:45 AM

    While I certainly appreciate ejb's helpful responses, this thread shows up a difference in perspective between how I read the forum and how others do. Author ejb is correct in advising you to stay inside JSF for form processing if form processing is what you want to do.
    However, I detect another aspect to this post which reminds me of something Marc Andreesen once said when he was trying to get Netscape off the ground: "there's no such thing as bad HTML."
    In this case, I interpret ungar's request as a new feature request. Can I phrase it like this?
    "Wouldn't it be nice if I could render my nice form with JSF but, in certain cases, when I REALLY know what I'm doing" just post out to a separate servlet? I know that in this case I'll be missing out on all the nice validation, conversion, l10n, i18n, ajax, portlet and other features provided by JSF".
    If this is the case, because it really misses the point of JSF, we don't allow it, but we do have an issue filed for it
    https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=127
    If you can't wait for it to be fixed, you could decorate the FormRenderer to fix what you want.
    I have an example in my JSF book that shows how to do this decoration. http://bit.ly/edburnsjsf2
    Ed

  • I have a big problem with my Iphone 4...the pics and videos that i capture, often shows as inverted or orientted by 90/180/270 degrees. photos, one can rotate, but how about videos... is there any way i'm going wrong? this wasn't happening earlier

    My question...
    any answers pl.
    I have a big problem with my Iphone 4...the pics and videos that i capture, often shows as inverted or orientted by 90/180/270 degrees. photos, one can rotate, but how about videos... is there any way i'm going wrong? this wasn't happening earlier

    If I've understood you correctly then the ALLEXCEPT function may be what you're after and it could be applied in a similar way to the following...
    =
    RANKX(
    ALL(Table1),
    CALCULATE(
    COUNTROWS(table1),
    ALLEXCEPT(Table1, Table1[ContactReason])
    DENSE
    If this has missed the mark, would it be possible to clarify the requirement further?
    Regards,
    Michael Amadi
    Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
    Website: http://www.nimblelearn.com
    Blog: http://www.nimblelearn.com/blog
    Twitter: @nimblelearn

  • Big problems with installion Premiere Elements und Photoshop Elements 12

    Big problems with installion Premiere Elements und Photoshop Elements 12 auf Windows 7, shared technologies not found. Tried all  tips and  notes from the community (6 hours work), nothing helped./
    Habe Riesenprobleme mit Installation Premiere elements und PS elements 12, gemeinsam genutzte Technologien werden nicht installier, habe alle Hinweise aus den Foren bereits probiert (6 Stunden Arbeit). Wer weiß wirklichRat?

    Select a topic, then click I STILL NEED HELP to start Premiere Elements Online chat
    -http://helpx.adobe.com/contact.html?product=premiere-elements

Maybe you are looking for

  • Error on Installing 10gr2 on solaris 8

    Hi , I am Installing Oracle 10gR2 on Sun Sparc server with Solaris 8 installed. I had installed all the required packages on it. But while installation links the files it gives the error, the output from the install log is :- INFO: Start output from

  • On my windows 7 machine, itunes won't connect home sharing with apple tv

    On my windows 7 machine, itunes won't connect home sharing with my apple tv.  This problem started about two itunes updates ago.  Any thoughts?

  • SD: Pricing procedure configuration required.

    Hi all, I am not sd consultant but as required , I have to do following work: Service tax                 - 12% Edu. Cess  on s.t.          -2% HS Edu cess on s.t.      - 1% pls help me to configure pricing procedure and condition table and condition

  • TOSHIBA L300 doesn't start or charge

    Ok. So last night I switched on my moms computer when I noticed that it was on low battery. I thought that was odd , because prior to using it,  I had connected it to the adaptor and let it charge for an hour or so, and I reasoned that it should have

  • [solved] xfce4-mailwatch-plugin svn not able to compile

    After todays update my xfce4-mailwatch-plugin stopped working. I am using the svn version and trying to compile it again gives: checking command to parse /usr/bin/nm -B output from gcc object... ok checking for dlfcn.h... yes checking for objdir... .