DWCS3 gif image color anomoly

Okay, this is weird. I created a web site in DW8. All looked
good and displays fine in browser. I just downloaded CS3 and opened
the same site and now one specific GIF is not displaying correctly.
In Photoshop or Mac Preview, the GIF looks as expected (black on
top, blue on bottom), but in DW the image is not even close to the
same color. I'm not talking display calibration diferences, I mean
the color is completely different.
The best way to show what I mean is for you to see the screen
captures. This URL shows how DW displays the GIF and how all other
apps display it:
DW view:
http://warrenize.com/stuff/dw_view.jpg
Other apps view:
http://warrenize.com/stuff/all_other_apps_view.jpg
Is this a DW bug, or user error, or what?

Please contact Technical Support.
http://www.adobe.com/support/programs/dreamweaver/index.html?tab:contact=1
Note that if your problem is a bug in DW, then it does not
count as a
support incident.
Thanks,
Randy
> Okay, this is weird. I created a web site in DW8. All
looked good and displays
> fine in browser. I just downloaded CS3 and opened the
same site and now one
> specific GIF is not displaying correctly. In Photoshop
or Mac Preview, the GIF
> looks as expected (black on top, blue on bottom), but in
DW the image is not
> even close to the same color. I'm not talking display
calibration diferences, I
> mean the color is completely different.
>
> The best way to show what I mean is for you to see the
screen captures. This
> URL shows how DW displays the GIF and how all other apps
display it:
>
http://warrenize.com/stuff/
>
> Is this a DW bug, or user error, or what?

Similar Messages

  • How to make a Colorful Gif Image for Holi

    How to make a colorful Gif Image for Happy Holi 2014

    Okay, I know this doesn't answer your question, but don't get me wrong. A logo is meant to be the way it was designed - upright, no flipping/ swiveling animation. Why exactly do you want to let your logo turn around?
    If its to grab attention, why dont you consider animating the area on which your logo sits (header)? Or maybe add nice transitive slideshows on your main content area to add more interactivity?

  • Digital watermarking gif images

    I ve writed a program which watermarks png and non-animated gif images .But there is a problem because we started to use animated gif images. How can we watermark animated gif images without corrupting animation of the image?
    Regards
    Murat

    I haven't done much with gif animation, but here's an example that extracts the series of BufferedImages
    from a gif file. Good luck!
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import java.net.URL;
    import java.util.*;
    import javax.imageio.*;
    import javax.imageio.metadata.*;
    import javax.imageio.stream.*;
    import javax.swing.*;
    import org.w3c.dom.*;
    public class ViewGif extends JPanel {
        private BufferedImage[] images;
        private Point[] offsets;
        private BufferedImage composite;
        public static void main(String[] args) throws IOException {
            JPanel app = new ViewGif();
            app.setBackground(Color.RED);
            JFrame frame = new JFrame("ViewGif");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.getContentPane().add(new JScrollPane(app));
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        public ViewGif() throws IOException {
            URL url = new URL("http://members.aol.com/royalef/sunglass.gif");
            Iterator readers = ImageIO.getImageReadersBySuffix("gif");
            if (!readers.hasNext())
                throw new IOException("no gif readers");
            ImageReader reader = (ImageReader) readers.next();
            if (readers.hasNext())
                System.out.println("(there were oither readers)");
            ImageInputStream iis = ImageIO.createImageInputStream(url.openStream());
            reader.setInput(iis);
            final int numImages = reader.getNumImages(true);
            images = new BufferedImage[numImages];
            offsets = new Point[numImages];
            for(int i=0; i<numImages; ++i) {
                images[i] =  reader.read(i);
                offsets[i] = getPixelOffsets(reader, i);
            composite = new BufferedImage(images[0].getWidth(), images[0].getHeight(),
                BufferedImage.TYPE_INT_ARGB);
            final Graphics2D g2 = composite.createGraphics();
            g2.drawImage(images[0], offsets[0].x, offsets[0].y, null);
            new javax.swing.Timer(100, new ActionListener(){
                int j = 1;
                public void actionPerformed(ActionEvent evt) {
                    g2.drawImage(images[j], offsets[j].x, offsets[j].y, null);
                    j = (j+1) % numImages;
                    repaint();
            }).start();
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Insets insets = getInsets();
            g.drawImage(composite, insets.left, insets.top, null);
        public Dimension getPreferredSize() {
            Insets insets = getInsets();
            int w = insets.left + insets.right + composite.getWidth();
            int h = insets.top + insets.bottom + composite.getHeight();
            return new Dimension(w,h);
        static Point getPixelOffsets(ImageReader reader, int num) throws IOException {
            IIOMetadata meta = reader.getImageMetadata(num);
            Point point = new Point(-1,-1);
            Node root = meta.getAsTree("javax_imageio_1.0");
            for (Node c = root.getFirstChild(); c != null; c = c.getNextSibling()) {
                String name = c.getNodeName();
                if ("Dimension".equals(name)) {
                    for (c = c.getFirstChild(); c != null; c = c.getNextSibling()) {
                        name = c.getNodeName();
                        if ("HorizontalPixelOffset".equals(name))
                            point.x = getValueAttribute(c);
                        else if ("VerticalPixelOffset".equals(name))
                            point.y = getValueAttribute(c);
                    return point;
            return point;
        static int getValueAttribute(Node node) {
            try {
                return Integer.parseInt(node.getAttributes().getNamedItem("value").getNodeValue());
            } catch (NumberFormatException e) {
                return -2;

  • Photoshop CS4 Gif Image

    Sir,
    i am using photosop cs4. and making a gif image of width & height of (928x82). but when i am exporting it to gif image, it's quality get reduced. Is there any way to keep the quality of gif image intact after exporting. please do the needfull ASAP.

    Sir, i have tried an animated gif with background color and another animated gif without background color.
    Gif with background color keeps text resolution safe. But Gif without background color disturbs the text resolution. why is it so?  bcz i want an animated transparent gif.

  • Loss transparency in an animated GIF image when resizing

    Hi Friends,
    I have to write a program to resize GIF, JPEG , and PNG images. I wrote and it works but when i resize a GIF file it loses its transparency and give a black color for transparent area.
    I used a GifDecoder found at www.fmsware.com/stuff/GifDecoder.java
    and a gif encoder found at jmge.net/java/gifenc/Gif89a090b.zip.
    i don't know where the problem is .
    i have some small problems in here.
    How can i preserve the transparency of GIF image?
    How can i set a transparent color in Graphic2D object? smtimes it may help me. or error may be in the encoder.
    Help me guys.
    Thanks and regards,
    Manjula

    Java comes with gif encoder/decoders.
    Gifs are indexed images. This means that, for example, each pixel is an 8 bit value that is used to look up the correct 24 bit value in the index table. Gifs handle transparency by allowing one particular pixel value to be nominated as transparent.
    If you just rescale the image then you will likely cause pixels with the magic "transparent" value to change their value and become normal pixels. Alternately pixels that are not transparent may have their values changed such that they are transparent.
    Possibly the easyist solution to to force the image into a full RGBA image. Scale this then perform post processing on the image. I.e convert it back into an indexed image, looking at the values of the alpha channel (prior to making it indexed and if they are high enough then modify the corresponding pixel in the indexed image to have the magic transparent value. Then use Metadata passed to your Image writer to indicate which value is transparent.
    matfud

  • Looking for comprehensive program to create pdf file from gif image

    Hello,
    I'm looking for a program that can transform gif image file into pdf file. It is very importent to keep the same quality of the output document as the original image.
    I've seen Bridge CS5 in action and was very much disapointed, because the original gif image had 2 colors: black and white, took 60k Byte A4 paper size. But the output pdf file became somehow to 700k Byte size. When our proffi tried to lower the ppi or quality bar there was direct impact on the image quality.
    Long time ago Photoshop was able to export images as pdf files and one of the options of the pdf file was to keep the original image as gif, not as jpeg. Because jpeg is very costy format for black-white images and no-one wants to waste memory in vain, so I do not like to save pdf files of 1MB size for an image that takes 100k in gif.
    I do understand that nowdays using Photoshop to save pdf files is not the option anymore, isn't it ?
    What program can you suggest me to use ? I still prefer to use Adobe products, as long as I can, through I'm starting to get scared of sharp decline in quality.
    Thank you in advance.
    sincerely,
    Al

    No, I didn't. The last time I saw it, it was looking just as a regular Reader with a little more options and with an addon to MS-Office, to allow to save MS documents to pdf from inside MS-Office user interface products, and frankly, I do not highly admire there products at all, so I do not have MS-Office installed. But it was also long time ago. If the situation did changed since than,  I will try it.
    Thank you very much.
    I've just tried the Acrobat. It worked great ! Thank you. Just not all the images have options how to save them in pdf file, but that's ok for now

  • Using GIF images in iMovie11 ??

    Admittedly this is now my first attempt at using the iMovie8/9/11 editing structure since I was perfectly satisfied with iMovie06 HD and that timeline approach. In the old program I had GIF formatted images (Maps) that I had available in my "Photos" Media for adding to my Project timeline in the same fashion I would use a still JPG photo.
    After a number of hours searching the forum here and all the iMovie 9/11 documentation I can find, it appears  this new version of iMovie does not display GIF images in your iPhoto Media list to use for projects. Bottomline is I am not able to drag a gif map into my video project. It seems only JPG format files are now displayed in iMovie's iPHOTO Media source list.  I have one graphic that is a collage of photos and graphical objects which I had saved in JPG format to preserve the photo quality and that one shows in my Media list. No GIFs.  What gives?  I can open iPhoto stand alone and see my map graphics that are present in the database in their own Rolls.  I've tried dragging, dropping, importing, etc. with no success.
    This is a significant limitation (or bug) if the current version of iMovie does not allow free use of graphical images in GIF format. Can anyone shed some light on this and help solve my problem before I go back to iMovie HD?  Thanks in advance.

    Klondike Kid wrote:
    Hmm, doesn't seem to make sense …
    I'm not in the position here to 'defend' Apples decision, but an expert as you should keep in mind:
    iM vers.≤6 was a completely diff app than iM vers. ≥08
    same name, from the ground different programs (not only on the outside)
    video isn't based upon limited 256 colors, nor has inserting a file-size-degraded still any effect on the resulting video-file size.
    Photoshop is a >1k$ professional tool, meant for stills - so, it should support a bunch of formats, including obsolete ones. iMovie is a 15$ consumer toy tool, by concept reduced in options to offer convenience - for a broad range of people - I dare to say, the majority of iMovie users dont even know the existence of 'gif', iMovies iLife partner for stills, iPhoto, is biased to jpg.-
    Klondike Kid wrote:
    … I guess I'll have to live without it for iMovie.
    on MacOS, there's little options, I haven't tried, but I wouldn't be surprised, if FCPX doesn't support gif either. pretty sure, Premiere as part of the Adobe CS suite, will handle it - somehow.
    happy movie making!

  • Gif images in pdf file generated from Reports 6i

    Hello,
    When I generate pdf file from Reports Builder 6i and open this file with Acrobat Reader 5.0 I get that some of my gifs are black or other color.
    When I generate the same report to the live previewer everything is OK.
    Is it a Reports 6i bug? Any workarounds?
    Best regards
    Raimundas Katilius

    Hi
    If u generate the report output to PDF from the report
    GIF images doesn't show up properly . Generate it from the
    application then i think it will print clearly.
    If u try to print text followed by image and followed by text
    again PDF will not print
    I think this should help u
    Sri
    Hello,
    When I generate pdf file from Reports Builder 6i and open this file with Acrobat Reader 5.0 I get that some of my gifs are black or other color.
    When I generate the same report to the live previewer everything is OK.
    Is it a Reports 6i bug? Any workarounds?
    Best regards
    Raimundas Katilius

  • GIF images in JFrame

    hi all, i'm trying to put a gif image in JFrame. The problem is the gif images gets flickering(fluctuation) while it is placed in a frame. i had also placed some labels near the image and all of them gets disturbed becoz of this gif file in frame. plz tel me a solution.
    Thanks .
    //MY CODE
    //~~~~~~~~~~
    import java.awt.*;
    import java.awt.Color;
    import java.awt.event.*;
    import javax.swing.*;
    class Label_ON_G extends JFrame// implements MouseListener,MouseMotionListener
      private Image image;
      JLabel label1;
      JButton button1;
      Dimension dimension=Toolkit.getDefaultToolkit().getScreenSize();
      public Label_ON_G()
           super("Display image example");
           getContentPane().setBackground(Color.white);
           getContentPane().setSize(dimension);
        setResizable(true);
        getContentPane().setLayout(null);
         Toolkit tk = Toolkit.getDefaultToolkit ();
         image = tk.getImage ("singlearea.gif");
        label1= new JLabel("RADHA");
        label1.setBounds(120,110,80,30);
        label1.setEnabled(false);
        add(label1);
        button1= new JButton("VIEW LABEL");
        button1.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent ae)
              label1.setEnabled(true);
             System.out.println("ActionPerformed");
        button1.setBounds(600,600,100,30);
        add(button1);
        setVisible(true);
        show();
    public void paint (Graphics g)
      g.drawImage(image, 100, 100, this);
      public static void main (String[] args)
      {     new Label_ON_G();     }
    }

    There is no need to do custom painting to display an image.
    [url http://java.sun.com/docs/books/tutorial/uiswing/components/label.html]How to Use Labels
    Unless you know what you are doing, never override the paint() method of the JFrame. There is no reason to do this.
    If you need to do custom painting then you override the paintComponent() method of a component that extends JComponent.

  • Adding a gif image

    At the moment I have just drawn checkers but I would like to add a .gif image so it looks alot better. But im really unsure how to do this without completely messing things up. Thanks to any help guys
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class MyDraughts1edited extends Applet
                             implements MouseListener, MouseMotionListener{
      private int top = 0, left1 = 0, bWidth = 200, n = 4;
      private Point counter1, counter2, counter3, counter4, counter5, counter6,
       counter7, counter8, mouse;
      private int select;
      public void init() {
        this.addMouseMotionListener(this);
        this.addMouseListener(this);
        counter1 = new Point(15,15);
        counter2 = new Point(65,15);
        counter3 = new Point(115,15);
        counter4 = new Point(165,15);
        counter5 = new Point(15,165);
        counter6 = new Point(65,165);
        counter7 = new Point(115,165);
        counter8 = new Point(165,165);
      public void paint (Graphics g) {
        Draw_Board(g);
        g.setColor (Color.black);
        g.fillOval(counter1.x, counter1.y, 20,20);
        g.fillOval(counter2.x, counter2.y, 20,20);
        g.fillOval(counter3.x, counter3.y, 20,20);
        g.fillOval(counter4.x, counter4.y, 20,20);
        g.setColor (Color.white);
        g.fillOval(counter5.x, counter5.y, 20,20);
        g.fillOval(counter6.x, counter6.y, 20,20);
        g.fillOval(counter7.x, counter7.y, 20,20);
        g.fillOval(counter8.x, counter8.y, 20,20);
      public void mouseDragged(MouseEvent e) {
        mouse = e.getPoint();
        // continuously change the coordinates of the selected counter
        switch(select){
          case 1 : counter1 = mouse; break;
          case 2 : counter2 = mouse; break;
          case 3 : counter3 = mouse; break;
          case 4 : counter4 = mouse; break;
          case 5 : counter5 = mouse; break;
          case 6 : counter6 = mouse; break;
          case 7 : counter7 = mouse; break;
          case 8 : counter8 = mouse; break;
          default :
        repaint();
      // required for the interface
      public void mouseMoved(MouseEvent e) {}
      public void mousePressed(MouseEvent e) {
        mouse = e.getPoint();
        if (mouse.x > counter1.x - 20 && mouse.x < counter1.x + 20 &&
            mouse.y > counter1.y - 20 && mouse.y < counter1.y + 20){
          select = 1;
        else if (mouse.x > counter2.x - 20 && mouse.x < counter2.x + 20 &&
            mouse.y > counter2.y - 20 && mouse.y < counter2.y + 20){
          select = 2;
        else if (mouse.x > counter3.x - 20 && mouse.x < counter3.x + 20 &&
            mouse.y > counter3.y - 20 && mouse.y < counter3.y + 20){
          select = 3;
        else if (mouse.x > counter4.x - 20 && mouse.x < counter4.x + 20 &&
            mouse.y > counter4.y - 20 && mouse.y < counter4.y + 20){
          select = 4;
        else if (mouse.x > counter5.x - 20 && mouse.x < counter5.x + 20 &&
            mouse.y > counter5.y - 20 && mouse.y < counter5.y + 20){
          select = 5;
        else if (mouse.x > counter6.x - 20 && mouse.x < counter6.x + 20 &&
            mouse.y > counter6.y - 20 && mouse.y < counter6.y + 20){
          select = 6;
        else if (mouse.x > counter7.x - 20 && mouse.x < counter7.x + 20 &&
            mouse.y > counter7.y - 20 && mouse.y < counter7.y + 20){
          select = 7;
        else if (mouse.x > counter8.x - 20 && mouse.x < counter8.x + 20 &&
            mouse.y > counter8.y - 20 && mouse.y < counter8.y + 20){
          select = 8;
        else{
        repaint();
      // required for the interface
      public void mouseClicked(MouseEvent event){}
      public void mouseReleased(MouseEvent event){}
      public void mouseEntered(MouseEvent event){}
      public void mouseExited(MouseEvent event){}
      private void Draw_Board(Graphics g) {
        int sqWidth = bWidth/n; // Rounds down
        for (int row = 0; row < 4; ++row){
          for(int Col=0; Col<4; Col++) {
            g.setColor(posColor(row, Col));
            g.fillRect
             (left1 + Col * sqWidth, top + row * sqWidth, sqWidth, sqWidth);
      private boolean isEven(int x) {
        return(x == 2 * (x / 2));
      private Color posColor(int row, int Col) {
        if ( (isEven(row) && isEven(Col)) ||
            (! isEven(row) && ! isEven(Col))){
          return(Color.GRAY);
        else{
          return(Color.lightGray);
    }

    If you can use Swing instead of AWT, then maybe this posting will give you some ideas:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=518707&start=3

  • Image color in jpeg doesn't match backround color in web page

    I made a simple panel in photoshop and used the #number for the color selected to fill one side of the panel in my CSS code. When the page is rendered there's a very slight difference between the panel and the background which I expect to be exactly the same.
    Am I doing something wrong?
    Thanks

    This is normal behavior for Photoshop, or any color managed application.
    There are ways to guard against it. The root of the problem is that jpgs
    are color managed by Photoshop, while the web background is not.
    You may be able to do an end run around the problem by using a transparent
    png image instead of a jpg. If you want to stay with a jpg image, the
    simplest solution is probably to turn Color Management off in the drop-down
    in PhotoShop's Color Settings (accessed via ctrl-shift-K). Another
    possibility is to assign (not convert) your image to your monitor profile.
    It is also highly advisable to use sRGB as your working space. Do not
    embed a profile if it is important that the jpg's colors match the non
    color managed objects on the web page.
    If you do embed a profile - for example the sRGB profile, then color aware
    browsers will convert your jpg images to the user's display profile, and
    the person viewing your web page may see a mismatch between your carefully
    prepared jpg and the background.
    It is conceivable that certain color managed browsers will default your
    image to sRGB, and perform a color conversion even without a profile, in
    which case you will see a mismatch no matter what you do. If that happens,
    you may be able to do something tricky, like use a scaled png or jpg image,
    filled with your background color, as your background.
    The key point to remember is that gif images, and numeric web color values,
    are not color managed by color aware browsers, but jpgs are. Including an
    embedded profile in the image means that the browser is free to convert the
    colors in a jpg image. Result: different color numbers.

  • Putting gif images on my site

    I have a few questions about putting gif images on my site.
    How can I easily create a gif image from my favourite photos and put them on my site by using iWeb ?
    Can I do it by using Preview or QT Pro ?
    Thanks

    Flash is great as long as your audience is able to view flash animation on their systems. I've had trouble with PC users having Flash 7 viewer installed and not being able to view newer Flash 8 material. In a corporate environment, upgrading to each successive update is like pulling teeth.
    Having said that, I don't think animated GIFs are too hard to work with. There is a limitation with color depth and I think various programs produce gifs of varying quality. But everything I've seen have been more than acceptable for web viewing.
    I have a few examples on my website below. Check out the entries for "Goodbye Daisy," "Sporting My New Duds," and "An Important Message." I used Adobe ImageReady.
    ==> www.DirtDoog.com <==</a>    
    Place A Virtual Pin On Putt-Putt's GuestMap!

  • Irregular outlined GIF images

    Did we already cover this one? Gif images direct to Pages document still have a square background. The tutorial (giraffe), shows the copy can easily cope lettering to the shape of irregular images. My Gif transparent background matte is set to NONE from Photoshop, the background is Custom, its a small file size (12K), 32 colors, and still the background is held square, not irregular, on my iPad Pages (word) document, with a white background to the document page.
    Am I missing a step here? Should I be in some other program, other than Photoshop?
    I might add, it DOES work fine in iWork's Pages documents when brought in on my iMac OSX 10.5.8 platfrom...just not in Pages!
    Message was edited by: zamboniz

    hello people...
    i didn't get any answer for my previous question... could any one give an answer for that.. and i would like to know what is the format of picture message? can we create our own picture message and use it in 6600?

  • Customizing Look and Feel (CLAF) - gif images/tabs disappear.Urgent!!!!

    Hi,
    I am trying to change the font colors in irec through CLAF responsiblity. But a strange thing is happening. Though the color is reflecting, the gif images are missing (logout, personalize etc) and the link text below it are appearing like breadcrumbs. Also , the tabs are completely removed and the tab labels are appearing like breadcrumbs. My CLAF is based on base-desktop.
    I also tried to create a new CLAF without any change in colors and saved it and attached to the profile and bounced the apache. But the gif and tabs are missing.
    Could someone tell me why is this happening. It is very urgent.
    Regards

    Hi:
    The DBA's did the following as I have mentioned below:
    Clear the image cache - /OA_HTML/cabo/images/cache
    Clear the cache - /OA_HTML/cabo/styles/cache
    Bounce the apache.
    Restart the server - X.11 display server
    These are the permissions for the directories:
    /home/apps/ora_fin/IHR25D/common/html/cabo/images - drwxr-xr-x
    /home/apps/ora_fin/IHR25D/common/html/cabo/images/cache - drwxr-xr-x
    /home/apps/ora_fin/IHR25D/common/html/cabo/styles - drwxrwxr-x
    /home/apps/ora_fin/IHR25D/common/html/cabo/styles/cache - drwxr-xr-x
    But still I am not seeing any gif images or tabs.
    Regards
    Sun

  • Saving GIF images

    Hi,
    I am trying to save a GIF image in Photoshop cc.  I want it to match other GIF's previously created from another computer.  Is there a way to view the way in which these other images were saved so that I can match my own GIF to match them.  I am refering to all the photoshop options with you save an image for the web (perceptual, selective, adaptive, diffusion, dither, etc.). 
    Thanks!

    GIF doesn't store any meta information nor are the algorithms used for dithering actually part of the GIF image format. It's merely a means of achieving a better distribution of the limited color palette, but has to be built into the program creating the GIF. Therefore there is no way to determine which exact settings were used after the fact.
    Mylenium

Maybe you are looking for

  • Bose QuietComfort 20i eratic on new iphone 5s

    The sound on my iphone 5s plugged into my Bose® QuietComfort® 20i  headphones are eratic Sometimes it work well sometimes they do not.  I can plu them in and volume goes up and down nicely then somtimes after trying to use voice on it i can no longer

  • How do I transfer books from IBook on my Ipad to my laptop

    I am trying to transfer IBooks to my Laptop - can anyone help

  • Abrupt log outs

    In the past week I've been traveling and have been using a Verizon aircard to access the Internet.  At least three times in that period I was suddenly logged out by the machine while performing various tasks--iChat, email drafts, Word editing--all un

  • Can you roll back the iMovie 9.0.6 update as it has trashed iMovie for me?

    Since the auto update of iMovie to 9.0.6 I cannot open iMovie and more - it just crashes every time trying to import the projects.  I either need to KILL all old projects or roll back iMovie so that it is usable!!! I found the answer at https://discu

  • Handshake Problem with external video

    I have a 13-inch, Aluminum, Late 2008 MacBook. After upgrading to Mountain Lion I cannot get my mac to connect with any external video device: projector or TV. My mac can't detect the external device even when I go to "Detect Device" In System Pref.