Making a image boolean???

How can you make an image boolean with 5 spots???
this:
BufferedImage img[5];
dosn't seem to work, and I need a BufferedImage in my program.
Jake

ok, sorry I am new at java, thank youIt's not so much a Java issue as a communicaiton one.
So, has your question been answered? Was your use of the word "boolean" just a terminology error on your part and the array example provided by Ceci what you were looking for?
If so, here's more info on arrays:
http://java.sun.com/docs/books/tutorial/java/nutsandbolts/arrays.html

Similar Messages

  • "input/output error' when making disc image from DVD

    I've had problems installing Logic, and a Pro Apps Genius at Applecare suggested I try making an image of the problematic DVD (Audio Content 1) and then trying an install that way.
    While I can make an image of the Install disc to my desktop fine, the Audio Content 1 disc reports an "input/output error".
    This means I'm unable to copy the disc and then successfully install my Logic Studio.
    Any ideas?

    Thanks for your answer.
    Yes, I thought that might be the case - but I'd taken my Mac and Logic disks to a Genius bar, and the 'Genius' had said he'd fixed the issue. I just wish he'd explained what he did and why he didn't replace the faulty disk(s)!
    But is there any way around having the claim a disk, now I'm living abroad and my 'warrantee' has run out? It's going to be a pain in the fundament trying to claim a replacement set.

  • Photoshop crashes when I try and save for web and devices. Making the image size smaller does not help.

    I'm trying to make a lopping .gif from an animation that I made. It's 147 total frames. It's crashed about 6 times now every time I either try and Save for Web or even just save the document on my desktop so in case it crashes I can reopen PS and recover it. Making the image size smaller (original size is 1920 x 1080 with resolution 72) does not help, it still makes the *ding* error when I attempt to save. I made the image more than half of the original size and the Save for Web box actually came up that time, but when I tried clicking save it said there was an error and PS crashed without warning.

    Look at the crash report for your Photoshop crashes see what they show

  • "Authentication error", making disk image

    I'm trying to make a disk image of my OS X boot disk, as an emergency backup. I'm booting from the Installation CD that came with my Mac Pro, and using Disk Utility. I select my boot drive, click New Image, and tell it to save to an external firewire drive, compressed and encrypted. It starts and quickly errors out, with "Authentication error." What does this mean?
    I've used 250 GB of the 500 GB on my boot drive, and my external drive is 120 GB. I'd rather tell it to skip some files to save space, but it doesn't give me the option to do that. Will "compress" get it to be small enough? Is this why I'm getting an error? I've repaired permissions before booting from the CD.

    I don't know about the authentication error; however, to make a disk image of 250 GB source drive to a 120 GB target is an exercise in futility. There's not enough room. 250 GB? What are storing? A complete music store, the movies of Hollywood, or the pictures in an art gallery?
    If you want an emergency backup of your 500 GB HD, then you'll need an external at least as big. BTW, making disk images for this purpose is fraught with danger since you can't ensure that it's good until you restore it to a bootable HD. I strongly recommend something like Carbon Copy Cloner, SuperDuper!, etc. instead. BTW, you can just drag & drop any data files from one HD to another. There's no need to put them in a disk image and certainly no need to encrypt things. If you decide to go the bootable backup route, move the data files to root-level and don't back those up. That should make your emergency backup a lot smaller.

  • After importing an image from cs5 back into lightroom, lightroom is making the image darker

    Lightroom is making my images darker after i edit them in photoshop cs5 and I dont know why. When i open the image back into photoshop it looks fine. Even when i save it as a jpeg lightroom is making the image darker. When i imported the raw image into lightroom before i edited into photoshop it looked fine. Is there a way to fix lightroom?

    See screen shot:
    Click on the two small triangles and under <Lightroom General Presets> select <Zeroed>. Sorry, it seems that the option <None> is not available anymore in Lr 4.3. But <Zeroed> has the same effect.
    Alternatively, in the Develop Module, bottom right, just above the film strip click on <Reset>.  See screen shot:

  • Lenovo G530 making an image

    I want to install XP on my new G530 but before I do I want to close the drive incase for some reason I need to revert back to Vista. DOes anyone have experience with this? Any suggestions
    Thanks

    how would I go by making an image of a disc(age of empires II) so that I dont have to keep inserting the disk in.
    The application you need is Drive-In. It can be obtained from
    http://www.flip4mac.com/drivein.htm
    It is currently available as a free beta, which works just fine.
    This does precisely what you want. Giving you this information does not contravene the terms of use of this forum. I will explain:
    Drive-In has one use only: it makes a disk image of any DVD, including commercial copy protected ones, so that you can store the DVD on your hard disk for playback only. You will not be able to copy it, or burn a DVD from it, as it preserves the copy protection on the DVD it makes the disk image from. It is for convenience only. For full details refer to the above link.
    Message was edited by: Klaus1

  • Making new Images

    Im making a game and when you click a button and then click on the screen it makes a new tower. At first when you click the tower will show up where you clicked, but if you try to make a second tower and you click on the screen the first tower is deleted and the second tower is drawn where you clicked. I know why it dose this and I know how I COULD fix it but it would take a lot of programming and I would only be able to make a certain amount of towers. So I was wondering how can I fix it so that it wont delete the first tower?
    Here is the code that I have so far:
    import java.awt.Color;
    import java.awt.Container;
    import java.awt.Font;
    import java.awt.Graphics;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import java.util.Timer;
    import java.util.TimerTask;
    import javax.imageio.ImageIO;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    public class Defense extends JPanel implements MouseListener{
         Timer update;
         static JFrame dframe = new JFrame("Battle!");
         static BufferedImage map1,rgtower;
         static JButton regtower = new JButton();
         static ImageIcon rgticon = new ImageIcon("imgs/rgtower.png");
         static boolean placetower,drawtower,drawwarning = false;
         static Graphics g;
         Font font = new Font("Arial",Font.PLAIN,30);
         int x,y = 0;
         static Container dcontain = dframe.getContentPane();
         public static void defGUI(){
              dcontain.add(regtower);
              dcontain.add(new Defense());
              regtower.setBounds(645,100,100,50);
              regtower.setIcon(rgticon);
              regtower.setBorder(null);
              regtower.setFocusable(false);
              regtower.addActionListener(new buttonlist());
              dframe.setSize(800,600);
              dframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              dframe.setResizable(false);
              dframe.setVisible(true);
              try {
                   map1 = ImageIO.read(new File("imgs/map1.png"));
                   rgtower = ImageIO.read(new File("imgs/rgtower.png"));
              } catch (IOException e) {
                   e.printStackTrace();
         public void paintComponent(Graphics g){
              super.paintComponent(g);
              g.drawImage(map1,0,0,null);
              if(drawwarning == true){
                   g.setFont(font);
                   g.setColor(Color.black);
                   g.drawString("Cant Place it there!",300,50);
              g.create(x, y, 40, 40);
              g.drawImage(rgtower,x,y,40,40,null);
         public Defense(){
              UTimer task = new UTimer(this);
              update = new Timer();
              update.scheduleAtFixedRate(task,0,5);
              this.addMouseListener(this);
              this.setOpaque(false);
              dframe.repaint();
              System.gc();
         class UTimer extends TimerTask{
              private Defense def;
              public UTimer(Defense def){
                   this.def = def;
              public void run(){
                   def.repaint();
                   dcontain.repaint();
         public void mouseClicked(MouseEvent e) {
              if(placetower == true){
                   if(e.getX() >= 590){
                        drawwarning = true;
                   }else{
                        drawwarning = false;
                        placetower = false;
                        x = e.getX()-25;
                        y = e.getY()-25;
         public void mouseEntered(MouseEvent arg0) {}
         public void mouseExited(MouseEvent arg0) {}
         public void mousePressed(MouseEvent arg0) {}
         public void mouseReleased(MouseEvent arg0) {}
    }

    BigDaddyLoveHandles wrote:
    That wasn't that hard, was it? An array would work, but a list would be easier, wouldn't it?Oh well im not sure how to use a list but I could figure it out. Thanks for the help! Could you give me a sample code that would get that to work? You don't have to though lol.

  • Problem making disk image of Panther install cds...

    Hi everyone!
    I want to make a disk image of my Panther retail install cds...just to have a backup in case I lose my cds or something. The problem is on disk 2 I keep getting an input/output error using Disk Utility. I tried to use SuperDuper and I got the same and the log shows this:
    | 01:57:24 PM | Info | /Volumes/Mac OS X Install Disc 2
    | 01:57:27 PM | Info | /Volumes/Mac OS X Install Disc 2/.Trashes
    | 01:57:27 PM | Info | /Volumes/Mac OS X Install Disc 2/InstallCD2.mpkg
    | 01:57:31 PM | Info | /Volumes/Mac OS X Install Disc 2/Packages
    | 02:03:47 PM | Info | WARNING: Caught I/O exception(5): Input/output error
    | 02:03:47 PM | Info | WARNING: Source: /Volumes/Mac OS X Install Disc 2/Packages/German.pkg/Contents/Archive.pax.gz, lstat(): 0
    | 02:03:47 PM | Info | WARNING: Target: /Volumes/panthercd2.sparseimage/Packages/German.pkg/Contents/Archive.pax.gz, lstat(): 0
    | 02:03:47 PM | Info | Attempting to copy file using copyfile().
    | 02:05:18 PM | Info | Attempting to copy file using ditto.
    | 02:05:26 PM | Error | ditto: /Volumes/Mac OS X Install Disc 2/Packages/German.pkg/Contents/./Archive.pax.gz: Input/output error
    Funny thing is I had problems installing my Panther recently and I had to disable the German package because of errors during install. Does this make sense at all and can anyone help me to make a disk image of my Panther cds?
    Thanks in advance,
    Reg
    Powerbook G4 12" 1.5GHz 1.25Gb RAM   Mac OS X (10.4.8)  

    Hi eww!
    Yes that might be possible? That's one of the reasons I wanted to make a disk image in case my cds would be damaged or something. It makes sense what you say because as I mentioned when I did my install I had a hang up with the German pkg and I just skipped over it...good thing I'm not German huh?
    If I clean it up and everything and it's still the same problem what are my options? I don't see a way to de-select this package when making the disk image?
    Thanks again,
    Reg

  • Making a image

    I have been trying to make an image for my company that has bootcamp on it. I have Mac OS on one partition and WinXP on the other. I use the disk utility to make an image for both partitions. When I restore my MacBook the Mac partition goes on fine. The WinXP restores fine but after restarting the MacBook and booting into WinXP I get "No boot device found" Any suggestions? I have tried every thing I can think of. I have used both FAT32 and NTFS I also ready that I should not use Journaling on the Mac partition so I tried it that way. Still doesn't work.

    I have been to his site for other stuff. I somehow didn't see that link before. I have been trying to get my boss to let me just use parallels but he was dead set on using bootcamp even though we have licenses for parallels. After reading that link and making the point again that bootcamp is not going to be faster than parallels plus the fact I have spent a lot of time getting it to work his way he agreed to us just parallels.
    Thanks for the help.

  • Making an image look like its on a canvas?

    Hi guys,
    I am using Photoshop CS5, I generally find it very good and love the features it gives me, i however am having trouble trying to achieve something but i dont know if it can be done,
    I am going to be selling Canvas Prints and i dont know if theres anyway i can make a jpg image look like its on a canvas or even turn the image to a canvas design, this includes making it look 3d. The reason for doing this is it will save me having to manufacture every single image i have onto a canvas for a photo.
    I hope somebody can help me
    Regards
    Lee

    'Transform' can skew rectangular shapes to have perspective. Here's a loosely related tutorial or two...
    http://www.tutorial9.net/tutorials/photoshop-tutorials/designing-a-software-box/
    http://psd.tutsplus.com/tutorials/tools-tips/create-a-3d-software-box-in-photoshop-using-a ctions/

  • Making an image page searchable?

    I do not have alot of experience when it comes to making web pages searchable by the likes of Google. I about to create a number of pages that are made up of 4 colour GIF images and image maps. How can I make the pages search engine compatible?
    Thanks

    Start building pages with actual HTML content that is rich in site relevant keywords and makes good use of semantic mark-up.  H1, h2, h3 tags should contain the important headings and subheadings.  Paragraphs and lists will contain the descriptive content. That's why Blogs are so popular.
    Images, Image maps, and flash based sites fare very poorly with search engines. If you're unsure,  look at your site in a text based browser to see what the search engines see.
    http://www.seo-browser.com/
    Also look at this discussion for more  SEO resources.
    http://forums.adobe.com/message/2265844#2265844
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Quicktime to iDVD - iDVD quits when making disk image

    You folks helped me a hugely with the arduous process of producing a nice 45 minute iMovie->iDVD movie last year from my digi camera, which actually works (http://www.galfromdownunder.com/peru). Thank you! Last year I was flummoxed by misplaced chapter markers. It's not the case this time.
    I am doing another one of a similar size, and am at the stage of trying to burn a disk image, but it keeps falling over with 'iDVD unexpectedly quits' after about an hour and half. This time I saved the little log that pops up with 'send to Apple' (does anyone actually read it if you do?) and have posted it here:
    http://www.galfromdownunder.com/ftp/iDVD-crash-report-may2106.txt
    I would really be so grateful if an extreme geek would mind taking a look before I try to reverse engineer this whole process further. The log always seems to stop at a place that says:
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    The difference between this project and last year's is as follows:
    1) In an attempt to save time and space, I bypassed iMovie, and concatenated the QT7 clips and moved the resulting final movie directly into iDVD.
    2) Yes, I did see that the Chapter Markers I painstakingly inserted (using that arduous text file process described in QT Help, mindful of not putting one within 2 secs of beginning, end, etc etc) into the movie are not picked up by iDVD. Groan. Still, the disk image burn quit. Then I tried again with the second concatenated QT movie without chapter markers, but it still quit with the above report.
    3) I moved individual files to iDVD fudge a separate 'scenes' menu. I know it means there is redundancy in the data now, but there is 4 Gb to play with, so why not....
    4) The total capacity comes to 4.3 Gb according to the Status section in iDVD. When I clicked on the DVD Capacity button it said the total was 62 minutes. I thought it was under ... hmmm... had it set to Best Performance.
    5) I have about 11.47 Gb free on my laptop. I even tried making the disk image to a 20 gb Lacie external Firewire drive but it still quit.
    6) Is there any difference between moving a reference movie to iDVD vs a self-contained? Does the s/w resolve them for you at the end of the day?
    Really appreciate help - I realize could/should get iLife06 and a bigger machine etc etc but since I managed to do it last year, why spend more money unless there is an insurmountable tech reason to do so.
    Thanking you,
    Lynette
    Powerbook G4 12" 1gHz 60 gb   Mac OS X (10.4.6)   1.25 Gb RAM

    My. You sound like an advanced user, but that sounds like a very advanced crash....
    You know, I'm not one of the great experts, and I'm here to try to learn why iDVD won't start with a "Missing (iDVD) Image" in the crash log, but I've also had very little success with QT editing. Assembling clips frequently produces a video that is corrupted between clips, and a save doesn't really produce a truly complete file from a series of clips. Usually, the file plays up to a broken video, and the video then freezes, while sound continues. Yet picking on the video at the cursor will restart the video, so it's in there, just broken. Common occurance, this. This can be validated when that malformed file is imported into MPEG Streamclip (free app, and a good one), with the import only loading the clips up to the malfunctioning clip. I'm guessing that iDVD is running up against a malformed section in your QT file, causing a crash against a incorrect behavior in how the code accesses memory.
    What would I do?
    Since there doesn't seem to be any "self-healing" ability in QT, and since you already have a QT file with times and bookmark names, you might be happier if you went ahead with iMovie, and used the QT file for a ready reference to recreate the video in iMovie. I've done this in remakiing a DVD from another DVD I've created. The recreation process only takes maybe 1/2 hour compared to the much longer first effort. Copying is easy.
    I use Final Cut express myself, and like its quality, and use an external drive for movie making, so you can live with the 11gigs you have onboard using your Lacie. Given the sad behavior of iDVD on my G5 recently, not starting and all, I'm thinking that maybe another 3rd party product, like the highly recommended "Toast" may help me elude what I'm beginning to recognize as substandard Apple apps. Apple has annoyed me endlessly with my need to "convert" the standard 'mpeg' to use in Apple products, like Final Cut (even after the $10US upgrade to play mpeg). Perhaps that would be a long term positive for you too.
    Like your current experience, I'm at the "had my fill" point with pure Apple apps. Too much dancing with them trying to get common communication to work and too little visibility into why malfunctions are occurring.
    In any case, good luck on this fix. Hope someone can get you rolling.
    Harley

  • Need help making my images drag more smoothly

    I'm trying to learn how to use the java2d api and I'm having a rough go of it.
    Currently, the following code should populate a jframe's container with some jcomponent's called 'card' (which basically draw a given image as a texture over a specified rectangle). Then you should be able to drag them around. Sounds simple enough. I've finally gotten it to a point that's almost work-able, but there are two problems:
    1) the last card added ignores it's location (via setBounds) until you start dragging it.
    2) I'm not sure what kind of math is necessary in order to make dragging the entire JComponent a smooth process (Moving just the rectangle presents it's own weird oddities which I'll expound upon if you ask, but it is smooth).
    Here's the code:
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class test
            public static void main(String[]args)throws IOException
                    String path1 = "card1.jpg";
                    String path2 = "card2.jpg";
                    String path3 = "card3.jpg";
                    String path4 = "card4.jpg";
                    card one = new card(path1, 40, 40);
                    card two = new card(path2, 300, 300);
                    card three = new card(path3, 50, 400);
                    card four = new card(path4, 500, 100);
                    JFrame f = new JFrame();
                    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    f.getContentPane().add(one);
                    f.getContentPane().add(two);
                    f.getContentPane().add(three);
                    f.getContentPane().add(four);
                    f.setSize(1000, 1000);
                    f.setVisible(true);
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.awt.image.BufferedImage;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class card extends JComponent implements MouseListener,
            MouseMotionListener
            BufferedImage image;
            Rectangle rect;
            double lastX;
            double lastY;
            double distX = 0;
            double distY = 0;
            int w = 205;
            int h = 280;
            public card(String path, int x, int y)throws IOException
                    image = ImageIO.read(new File(path));
                    setBounds(x, y, w, h);
                    rect = new Rectangle(0, 0, w, h);
                    lastX = x;
                    lastY = y;
                    addMouseListener(this);
                    addMouseMotionListener(this);
            protected void paintComponent(Graphics g)
                    super.paintComponent(g);
                    g.drawImage(image, rect.x, rect.y, this);
            public void mouseClicked(MouseEvent e)
            public void mouseEntered(MouseEvent e) {}
            public void mouseExited(MouseEvent e) {}
            public void mousePressed(MouseEvent e)
                    if(rect.contains(e.getPoint()))
                            distX = e.getX() - lastX;
                            distY = e.getY() - lastY;
            public void mouseReleased(MouseEvent e) {}
            public void mouseDragged(MouseEvent e)
                    Point p = e.getPoint();
                    if(rect.contains(p))
                            lastX+=(e.getX() - lastX) - distX;
                            lastY+=(e.getY() - lastY) - distY;
                            this.setBounds((int)lastX, (int)lastY, w, h);
                            //rect.setLocation((int)lastX, (int)lastY);
                            repaint();
            public void mouseMoved(MouseEvent e)
                    //if(rect.contains(e.getPoint()))
                            //System.out.println("inside");
    }

    Think about object-oriented programming (OOP) ideas. A Card can know about itself, things
    like its color, suit, value. But it cannot know where it is on a card table without asking
    the table (its parent). Like Newton's man_in_a_box illustration, it cannot know how to
    orient or move in its outer environment. The table/parent component is the one who knows
    where cards are and is therefore the logical one to have mouse code for moving them.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class CardDragTest implements MouseListener,
            MouseMotionListener
            CardDrag[] cards;
            CardDrag selectedCard;
            Point offset = new Point();
            boolean dragging = false;
            int selectedIndex = -1;
            public void mouseClicked(MouseEvent e) {}
            public void mouseEntered(MouseEvent e) {}
            public void mouseExited(MouseEvent e) {}
            public void mousePressed(MouseEvent e)
                    Point p = e.getPoint();
                    for(int j = 0; j < cards.length; j++)
                            Rectangle r = cards[j].getBounds();
                            if(r.contains(p))
                                    offset.x = p.x - r.x;
                                    offset.y = p.y - r.y;
                                    selectedCard = cards[j];
                                    dragging = true;
                                    break;
            public void mouseReleased(MouseEvent e)
                    dragging = false;
            public void mouseDragged(MouseEvent e)
                    Point p = e.getPoint();
                    if(dragging)
                            Rectangle r = selectedCard.getBounds();
                            int x = p.x - offset.x;
                            int y = p.y - offset.y;
                            selectedCard.setLocation(x, y);
                            selectedCard.repaint();
            // Use selectedIndex member variable to keep
            // this method from working too hard.
            public void mouseMoved(MouseEvent e)
                    Point p = e.getPoint();
                    boolean hovering = false;
                    for(int j = 0; j < cards.length; j++)
                            Rectangle r = cards[j].getBounds();
                            if(r.contains(p))
                                    hovering = true;
                                    if(selectedIndex != j)
                                            System.out.println("selectedIndex = " + j);
                                            selectedIndex = j;
                                    break;
                    if(!hovering && selectedIndex != -1)
                         System.out.println("reset selectedIndex");
                         selectedIndex = -1;
            public static void main(String[]args) throws IOException
                    CardDragTest test = new CardDragTest();
                    String path1 = "playingCards/1.jpg";
                    String path2 = "playingCards/2.jpg";
                    String path3 = "playingCards/3.jpg";
                    String path4 = "playingCards/4.jpg";
                    CardDrag one = new CardDrag(path1, 40, 40);
                    CardDrag two   = new CardDrag(path2, 300, 300);
                    CardDrag three = new CardDrag(path3, 50, 400);
                    CardDrag four  = new CardDrag(path4, 500, 100);
                    test.cards = new CardDrag[] { one, two, three, four };
                    JFrame f = new JFrame();
                    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    Container cp = f.getContentPane();
                    cp.addMouseListener(test);
                    cp.addMouseMotionListener(test);
                    cp.setLayout(null);
                    cp.add(one);
                    cp.add(two);
                    cp.add(three);
                    cp.add(four);
                    f.setSize(600, 500);
                    f.setVisible(true);
    class CardDrag extends JComponent
            BufferedImage image;
            public CardDrag(String path, int x, int y)throws IOException
                    image = ImageIO.read(new File(path));
                    int w = image.getWidth();
                    int h = image.getHeight();
                    setBounds(x, y, w, h);
            protected void paintComponent(Graphics g)
                    super.paintComponent(g);
                    g.drawImage(image, 0, 0, this);
    }

  • Making Main Images Links in Photo Gallery

    Hello.
    I've made an image gallery and it works great. What I want to do is make the main image a link to a certain part of the site. The first link works great, but then I get: TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Rockit_Front_Ad_fla::MainTimeline/frame1().
    Basically, I made an invisible button on each main image for the link.
    Can anyone help? Just want the links to work and can't get it. Any help is greatly appreciated. My AS3 is below:
    Mike
    stop();
    Button1.addEventListener(MouseEvent.CLICK,showPic1);
    Button2.addEventListener(MouseEvent.CLICK,showPic2);
    Button3.addEventListener(MouseEvent.CLICK,showPic3);
    Button4.addEventListener(MouseEvent.CLICK,showPic4);
    Button5.addEventListener(MouseEvent.CLICK,showPic5);
    Button6.addEventListener(MouseEvent.CLICK,showPic6);
    Button7.addEventListener(MouseEvent.CLICK,showPic7);
    IMG1.addEventListener(MouseEvent.CLICK,IMG1ClickHandler);
    IMG2.addEventListener(MouseEvent.CLICK,IMG2ClickHandler);
    IMG3.addEventListener(MouseEvent.CLICK,IMG3ClickHandler);
    IMG4.addEventListener(MouseEvent.CLICK,IMG4ClickHandler);
    IMG5.addEventListener(MouseEvent.CLICK,IMG5ClickHandler);
    IMG6.addEventListener(MouseEvent.CLICK,IMG6ClickHandler);
    IMG7.addEventListener(MouseEvent.CLICK,IMG7ClickHandler);
    function showPic1(Event:MouseEvent):void{
    gotoAndStop("Pic1");
    function IMG1ClickHandler(Event:MouseEvent):void{
    navigateToURL(new URLRequest("http://www.rockitmusic.com/products.asp?cat=31"));
    function showPic2(Event:MouseEvent):void{
    gotoAndStop("Pic2");
    function IMG2ClickHandler(Event:MouseEvent):void{
    navigateToURL(new URLRequest("http://www.rockitmusic.com/proddetail.asp?prod=BOOGIETA15"));
    function showPic3(Event:MouseEvent):void{
    gotoAndStop("Pic3");
    function IMG3ClickHandler(Event:MouseEvent):void{
    navigateToURL(new URLRequest("http://www.rockitmusic.com/products.asp?cat=61"));
    function showPic4(Event:MouseEvent):void{
    gotoAndStop("Pic4");
    function IMG4ClickHandler(Event:MouseEvent):void{
    navigateToURL(new URLRequest("http://www.rockitmusic.com/proddetail.asp?prod=MM25THANN"));
    function showPic5(Event:MouseEvent):void{
    gotoAndStop("Pic5");
    function IMG5ClickHandler(Event:MouseEvent):void{
    navigateToURL(new URLRequest("http://www.rockitmusic.com/products.asp?cat=14"));
    function showPic6(Event:MouseEvent):void{
    gotoAndStop("Pic6");
    function IMG6ClickHandler(Event:MouseEvent):void{
    navigateToURL(new URLRequest("http://www.rockitmusic.com/products.asp?cat=27"));
    function showPic7(Event:MouseEvent):void{
    gotoAndStop("Pic7");
    function IMG7ClickHandler(Event:MouseEvent):void{
    navigateToURL(new URLRequest("http://www.rockitmusic.com/products.asp?cat=49"));

    That error usually means that some object doesn't exist in the frame where the Actionscript is located, or, that some object does not have an instance name. So, for instance, if your Actionscript is in frame 1, then Button1 through Button7 and IMG1 through IMG7 also need to be on frame 1.

  • System Image Utility - Issues with making bootable images

    During the image creation process for a Netboot, the System Image Utility reports an error. I've included the log file (everything before the removal of the bad image below).
    ------------Begin Log File --------------
    2006-06-02 13:19:25 -0400 Initiating user authentication
    2006-06-02 13:19:28 -0400 Image creation in progress
    2006-06-02 13:19:28 -0400 Starting image creation
    newfs_hfs:
    2006-06-02 14:10:30 -0400 b=400: bitmap clump size is too small
    --------------End Log File--------------------
    I have no issue creating images from restore disk sets (that shipped with machines) or retail masters of various OS's. This issue seems to be related to the particular drives I am trying to create images from.
    The drives that give me this error are hardwarily OK and the software works great. I can boot from these drives and have no issues with the machines imaged from them after the fact. I just want to Netboot off of these so I don't have to lug a million drives around...
    Any clue?

    i know that was the case in Leopard and Snow Leopard but i just mounted a leopard image to create a new netrestore on my lion server.  i was not able to boot any of my images created on Leopard or SL when running Lion Server.  I assume i need to recreate the images on Lion.  Right now my Lion server is using a leopard image as the source to create a netrestore i can push on the Lion server.

Maybe you are looking for

  • Display HTML in Web DynPro Java View

    Hi, I have a data in HTML code. It is a full HTML code with the body, head, html.... Now in my Web DynPro i have a section whereby it displayed the message that store in the database table. In that column store all the HTML code. So now in my Web Dyn

  • SharePoint 2013 - Reporting ability help

    Hi everyone. Hopefully i have this thread in the right area, and i could not find anyone else asking this question. and my appologise if this may seem a silly question. my dilemma: At present im running enterprise version of SP 2013 (due to cost do n

  • Where did sidebar genius go in new version of itunes? And where is the "other Versions" option previously on the drop down when purchasing?

    Ok, I have used itunes for many years and I cannot find the sidebar genius that used to suggest similar songs based on ones purchased that you could turn on when going through you library.  I amsl cannot find "other versions" from the drop down when

  • Mapping error..Sending file back to the folder

    Dear Friends / Experts, I have a requirement, my scenario is File to proxy. When there is an error in mapping, then i need to send the file back to the source folder. Is there any way to achive this without BPM? Also advise me the BPM steps. Thanks i

  • Ora:contains and special characters into a xml

    I have a problem, I have an xmlType: <Hello> a>b </Hello> When I put it into the repository it becomes <Hello> a & gt; b </Hello> When I get it whit webdav it becomes <Hello> a>b </Hello> the problem is the search whit ora:contains because I don't tr