Problem Placing JPEGS

When using the Place command to place identically-sized JPEGS (prepared in Photoshop), sometimes I get a JPEG that, when dragged out to 100%, is exactly 1/2 the size and resolution of the other images. To get this file to place correctly, I must go back to PS and generate a file with double the original dpi. I use InDesign & Photoshop CS5 on a Mac Pro with Snow Leopard and a Wacom Cintiq. The same problem can be reproduced with the same files on an iMac with a mouse.
Deleting ID Preferences did not help, nor did the Export to .idml trick. Is this caused by some basic stupidity on the part of the user? Any help from you gurus would be deeply appreciated.

Peter,
I thank you for this insightful answer - I think you hit it on the head! Is this bug a PS or ID bug?
Yesterday, I Placed 90 9-inch tall, 72 dpi images without a single problem. Next, I Placed 90 10-inch tall, 72 dpi images (identical in every way to the 9-inch tall images, except for height), but had to re-scale about 30-40% of them, a true PITA!
Is a fix on the way? I am at least glad to know I wasn't overlooking something very basic.
Thank you again, but try to answer these questions a bit more promptly... I had to wait about 20 minutes for an answer.

Similar Messages

  • Problem placing Jpeg images

    Hi Group,
    I'm having a problem placing Jpeg images in DW CS3. Some come
    in and display
    themselves just fine. Others come in as what appears to be
    the file name
    displayed as a link, blue text and underlined. Previewed in a
    browser, when
    I click the link the message is:
    The image
    "file:///C:/Users/Bob/Documents/CUT/CSL%20Web/My%20Assets/Sandy-Kirk_Web.jpg"
    cannot be displayed, because it contains errors.
    I've looked at the properties of these different images and
    dont have a clue
    what the problem is.
    Any ideas would be appreciated.
    Bob

    Look at the line you pasted into your reply and note that
    it's a link
    pointing to your hard drive. Of course that will never work
    on the web.
    Such broken links are often the result of an improperly
    defined local site.
    What happens if you remove that image and insert it again,
    then save the
    page? Is the link still broken?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "mont54321" <[email protected]> wrote in
    message
    news:fneflb$5jh$[email protected]..
    > Hi Group,
    > I'm having a problem placing Jpeg images in DW CS3. Some
    come in and
    > display
    > themselves just fine. Others come in as what appears to
    be the file name
    > displayed as a link, blue text and underlined. Previewed
    in a browser,
    > when
    > I click the link the message is:
    > The image
    >
    "file:///C:/Users/Bob/Documents/CUT/CSL%20Web/My%20Assets/Sandy-Kirk_Web.jpg"
    > cannot be displayed, because it contains errors.
    > I've looked at the properties of these different images
    and dont have a
    > clue
    > what the problem is.
    > Any ideas would be appreciated.
    > Bob
    >
    >

  • Problem placing buttons on top of a background image

    My knowledge of Java isn't the greatest and I am currently having problems placing buttons on top of a background image within a JApplet (this is also my first encounter with Applets).
    I'm using a Card Layout in order to display a series of different screens upon request.
    The first card is used as a Splash Screen which is displayed for 5 seconds before changing to the Main Menu card.
    When the Main Menu card is called the background image is not shown but the button is.
    While the Applet is running no errors are shown in the console.
    Full source code can be seen below;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.*;
    // First extend JApplet
    public class WOT extends JApplet {
         //--------------- Variables are declared here -----------------
         private CardLayout contentCardLayout = new CardLayout();  // declare CardLayout
         private Container contentContain;     // declare content Container
         private JPanel contentCard, splashScreen, mainMenu, menuImage; // declare content Panels
         private JLabel splash, menu, map; // declare image labels
         private ImageIcon mapBtn; // declare ImageIcons
         private JButton mapOption; // declare option Buttons
         private Timer timer; // declare Timer
         private ActionListener actionListener, mapOptionListener; // declare ActionListener
    //--------------- Initialise Applet -----------------
      public void init() {
         //--------------- Set-up Card Layout -----------------
         contentCard = new JPanel(contentCardLayout); // assign card panels to CardLayout
         //--------------- Splash Screen -----------------
         splashScreen = new JPanel();
         splash = new JLabel(new ImageIcon(getClass().getResource("img/bg.gif")));
         splashScreen.add(splash);
         splashScreen.setSize(600,800);
         splashScreen.setLocation(0,0);
    //--------------- "View Map" Option Button -----------------
         mapBtn = new ImageIcon(getClass().getResource("img/map.gif"));
         mapOption = new JButton(mapBtn);
         mapOption.setBorder(null);
         mapOption.setContentAreaFilled(false);
         mapOption.setSize(150,66);
         mapOption.setLocation(150,450);
         mapOption.setOpaque(false);
         mapOption.setVisible(true);
    //--------------- Main Menu Screen -----------------
         //menuImage = new JPanel(null);
         //menuImage.add(mainMenu);
         //menuImage.setLocation(0,0);
         mainMenu = new JPanel(null);
         menu = new JLabel(new ImageIcon(getClass().getResource("img/menu.gif")));
         menu.setLocation(0,0);
         mainMenu.add(menu);
         //mainMenu.setBackground(Color.WHITE);
         mainMenu.setLocation(0,0);
         mainMenu.setOpaque(false);
         //mainMenu.setSize(150,66);
         mainMenu.add(mapOption);
         //--------------- Map Image Screen -----------------
         map = new JLabel(new ImageIcon(getClass().getResource("img/map.gif")));
         //--------------- Add Cards to CardLayout Panel -----------------
        contentCard.add(splashScreen, "Splash Screen");
         contentCard.add(mainMenu, "Main Menu");
         contentCard.add(map, "Map Image");
    //--------------- Set-up container -----------------
          contentContain = getContentPane(); // set container as content pane
          contentContain.setBackground(Color.WHITE); // set container background colour
           contentContain.setLocation(0,0);
           contentContain.setSize(600,800);
          contentContain.setLayout(new FlowLayout()); // set container layout
           contentContain.add(contentCard);  // cards added
           //--------------- Timer Action Listener -----------------
           actionListener = new ActionListener()
                    public void actionPerformed(ActionEvent actionEvent)
                             //--------------- Show Main Menu Card -----------------
                             contentCardLayout.show(contentCard, "Main Menu");
         //--------------- Map Option Button Action Listener -----------------
           mapOptionListener = new ActionListener()
                    public void actionPerformed(ActionEvent actionEvent)
                             //--------------- Show Main Menu Card -----------------
                             contentCardLayout.show(contentCard, "Map Image");
         //--------------- Timer -----------------               
         timer = new Timer(5000, actionListener);
         timer.start();
         timer.setRepeats(false);
    }Any help would be much appreciated!
    Edited by: bex1984 on May 18, 2008 6:31 AM

    1) When posting here, please use fewer comments. The comments that you have don't help folks who know Java read and understand your program and in fact hinder this ability, which makes it less likely that someone will in fact read your code and help you -- something you definitely don't want to have happen! Instead, strive to make your variable and method names as logical and self-commenting as possible, and use comments judiciously and a bit more sparingly.
    2) Try to use more methods and even classes to "divide and conquer".
    3) To create a panel with a background image that can hold buttons and such, you should create an object that overrides JPanel and has a paintComponent override method within it that draws your image using the graphics object's drawImage(...) method
    For instance:
    an image jpanel:
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import java.net.URISyntaxException;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    public class BackgroundImage
        // **** this will have to be changed for your program:
        private static final String IMAGE_PATH = "../../m02/a/images/Forest.jpg";
        private BufferedImage myImage = null;
        private JPanel imagePanel = new JPanel()
            @Override
            protected void paintComponent(Graphics g)
            {   // *** here is where I draw my image
                super.paintComponent(g);  // **** don't forget this!
                if (myImage != null)
                    g.drawImage(myImage, 0, 0, this);
        public BackgroundImage()
            imagePanel.setPreferredSize(new Dimension(600, 450));
            imagePanel.add(new JButton("Foobars Rule!"));
            try
                myImage = createImage(IMAGE_PATH);
            catch (IOException e)
                e.printStackTrace();
            catch (URISyntaxException e)
                e.printStackTrace();
        private BufferedImage createImage(String path) throws IOException,
                URISyntaxException
            URL imageURL = getClass().getResource(path);
            if (imageURL != null)
                return ImageIO.read(new File(imageURL.toURI()));
            else
                return null;
        public JPanel getImagePanel()
            return imagePanel;
    }and an applet that uses it:
    import java.lang.reflect.InvocationTargetException;
    import javax.swing.JApplet;
    import javax.swing.SwingUtilities;
    public class BackgrndImageApplet extends JApplet
        @Override
        public void init()
            try
                SwingUtilities.invokeAndWait(new Runnable()
                    @Override
                    public void run()
                        getContentPane().add(new BackgroundImage().getImagePanel());
            catch (InterruptedException e)
                e.printStackTrace();
            catch (InvocationTargetException e)
                e.printStackTrace();
    }

  • Is anybody having problems opening Jpegs attachments on iPhone 4s sent in email?..imap , mac, and exchange accounts are affected. I get a spinning wheel or it bombs out!!..Help

    Is any body having problems opening Jpegs sent via email as attachments. iPhone 4
    I can't open and get a spinning wheel or it bombs out!..Help!! It affects iMap, exchange and mac accounts!

    Solution for me was changing the "Load Remote Images" setting, shutting down and restarting the phone.  The old messages with problems reloaded with all attachments accessible. 
    Background: I began having this problem recently with PDF, jpeg,vcf files and apparently now, all attachments as well as email with html links are coming through with no attachment or as empty email.  This was a new problem for me. I have been backing up to the cloud, but not using a cloud email account.  I have multiple accounts on the phone, six of them actually and have been set up this way for over a year without problem.  Some are imap, some pop, none are through exchange.

  • Problems placing compiled jsp in the right directory

    I have problems placing compiled jsp in the right directory.
              - My document root is weblogic/myserver/public_html
              - My jsp's are placed in weblogic/myserver/public_html/ram/jsp.
              - My folder for placing compiled jsp is in weblogic/myserver/compiled_jsp.
              - When weblogic compiles my jsp it places them in
              weblogic/myserver/compiled_jsp/jsp_servlet/_ram/_jsp
              Now I want to compile ram1.jsp and place it in above directory. I tried the
              following but it does not place class correct.
              1: java weblogic.jspc -d C:\weblogic\myserver\compiled_jsp ram1.jsp
              **** Places the class in weblogic/myserver/compiled_jsp/jsp_servlet
              2: java weblogic.jspc -d
              C:\weblogic\myserver\compiled_jsp\jsp_servlet\_ram\_jsp ram1.jsp
              C:\weblogic\myserver\compiled_jsp\jsp_servlet\_ram\_jsp\jsp_servlet\_ram1.cl
              ass
              What am I doing wrong ?
              cheers Per
              

              I would try this...
              cd public_html
              java weblogic.jspc -prefix compiled_jsp ram/jsp/ram1.jsp
              I'm not sure if -prefix is the exact option - something like that - maybe package_prefix.
              As always, things work better/easier when you leave things at the default value
              (jsp_servlet).
              Mike
              "Per Lovdinger" <[email protected]> wrote:
              >I have problems placing compiled jsp in the right directory.
              >
              >- My document root is weblogic/myserver/public_html
              >- My jsp's are placed in weblogic/myserver/public_html/ram/jsp.
              >- My folder for placing compiled jsp is in weblogic/myserver/compiled_jsp.
              >
              >- When weblogic compiles my jsp it places them in
              >weblogic/myserver/compiled_jsp/jsp_servlet/_ram/_jsp
              >
              >Now I want to compile ram1.jsp and place it in above directory. I tried
              >the
              >following but it does not place class correct.
              >
              >1: java weblogic.jspc -d C:\weblogic\myserver\compiled_jsp ram1.jsp
              >**** Places the class in weblogic/myserver/compiled_jsp/jsp_servlet
              >
              >2: java weblogic.jspc -d
              >C:\weblogic\myserver\compiled_jsp\jsp_servlet\_ram\_jsp ram1.jsp
              >****
              >C:\weblogic\myserver\compiled_jsp\jsp_servlet\_ram\_jsp\jsp_servlet\_ram1.cl
              >ass
              >
              >What am I doing wrong ?
              >
              >cheers Per
              >
              >
              

  • Problems placing graphic into table cell. It makes the iPad locks up when previewing that page.

    I have 3 table cells that need a jpeg graphic placed into them.
    I can paste a grahic into a table cell, but when i try to preview that page on the iPad, ibook shuts down. I must be placing the graphic wrong or formats are wrong, like object wrap or "inline" "floating" or "anchored". the graphic shows up in the fill once I copy and paste into the cell, but it doesnt show up when I look at the file info in the inspector. Also, once I preview the iBook author project on my iPad, that page will shut down the iBook app.

    Well KT.....I tried that. But it still didnt work. I have 2 pages that have tables. The first page is just a full page with text only with a gradient colored screen in the table column heads. The 2nd page has the graphic illustration in the 3 table cells. Both pages shut down when opened to full screen view. But when i remove the graphic, there is no problem with a shut down. I know its got to be something you have to do but is unwritten in any manual.

  • Edge Animate's OAM file problem placed in Muse or other unknown problem??  Please help!

    Hi,
    I need help please.  Did anyone do a whole page animation in Edge Animate and place the OAM file into Muse, and somehow all the menu and social media icon buttons in Muse are blocked by the placed animation?  All my menu buttons, social media icon buttons and a link are not working (blocked by the transparent AN stage).   I can't go to any other pages because of this issue when previewed in browser.  My animation is a slide-open page from center of the page to both right and left side, also text moved up to the top.  All are moved out of the stage once animation finished to show the home page with contents, including menu and social media icon buttons.  Thanks for your help in advance!!
    Thanks,
    mykw123     

    That answers why the two G4's talk normally! I do
    have the TCP/IP settings set up manually.
    Well, if they are already set manually, maybe you should change them to Auto-negotiate. You shouldn't have to use the Manual setting at all. If you so, then someone, usually the people who wrote the driver for the network card, have screwed something up. It then becomes your job to fix it.
    The problems are just very slow document/file
    transfer from either new to old or old to new
    computer over network, which usually is great with
    the two G4's.
    That is probably the problem. You may want to go ahead and setup the new machine with manual settings to match the G4s. Otherwise, even the Internet will be noticeably slower.
    As for Target Disk Mode...so reboot the old G4
    holding the T key and the hard drive should show up
    on the desktop of the new computer?
    That will do it. It is the best and fastest option to transfer large amounts of data. But even target disk mode is kind of slow. A real, external firewire hard drive will be the fastest of all. It is an excellent idea for backups and this kind of thing.

  • Problem loading JPEGs from network drive?

    Hi,
    I'm having a rather frustrating problem with Bridge\Lightroom 2 which I think is due to ACR 4.5, and I'm hoping someone here may be able to offer some advice:
    When opening (in bridge) or importing (in Lightroom) a network share containing JPEG images the majority of the previews\thumbnails are corrupted.
    This screenshot illustrates the problem in bridge (http://www.amirkamal.com/acrbug.jpg). As you can see the thumbnails are corrupt as is the preview, however the magnifier tool on the preview window shows the /true/ image. The irfanview window, in the lower right corner, shows what the image should look like, demonstrating that the JPEG itself is not corrupt.
    If I were to import this directory into Lightroom the same problem is present, although the form of the actual image corruption (or even the number of images corrupted) may be different. It also persists through to the develop module as well, making lightroom completely unusable.
    If I disable the 'Prefer Adobe Camera Raw for JPEG and TIFF files' option in Bridge then previews are rendered correctly, which is what leads me to believe that ACR is the problem and not Bridge or Lightroom. This would be an acceptable work around for Bridge, but obviously isn't possible for Lightroom.
    Also, if I copy the JPEGS locally and then import\view them the problem does not occur. The seems only to affect JPEGs: TIFF and Raw (Canon 350d .CR2) files do not show this problem.
    It almost seems as if ACR is trying to process the JPEGs before they have been completely loaded, and thus ends up rendering garbage.
    Has anyone else seen this problem before, or have any idea how to fix it?
    My system specs are below incase they offer any clues,
    thanks
    ak
    Local machine:
    Adobe Bridge CS3 2.1.1.9
    Adobe PhotoShop Camera Raw 4.5.0.175
    Windows XP 32bit SP2
    Intel Pentium 4 D @ 3.3GHz
    2Gb RAM
    nVidia 7950GT with latest (175.19) drivers
    Images stored on:
    Windows Server 2k3 R2
    Intel Celeron D @ 3Ghz
    1Gb RAM
    RAID 5 Array
    Connected over a 100mbps network

    I have never worked on image files which are located remotely in a network ... but I noticed a higher probability of problems occurring when working with Bridge on external hard disk drives connected via USB 2.0. So I acquired the habit of copying the folder of images I plan to work on to an internal hard disk drive and do the work there. When I'm done then I'll copy the whole folder (or at least the modified files therein) back to where it came from.
    -- Olaf

  • Problem with jpeg images imported from Illustrator

    Hi, i am kind of new with Premire and video, though have experience in web design and coding, but i have noticed a weird problem with premiere pro cs 5.5  when i  import jpeg pictures and put them as intro before the video that where done in adobe illustrator and have vectors and stuff, the quality of the image gets pretty bad and blurry...i searched through the internet looking for clues on what to do like changing to png, tiff formats but nothing has helped so far....any ideas on what to do. So when i import jpeg,png images from illustrator (that have vectors or illustrations) do i have to do something special with it, or import it in some special format??? i would appreciate the help.
    This is how the image looks on youtube:
    Anyway here is the video with its poor image quality. http://www.youtube.com/watch?v=o_oMNzXAZ8Y&feature=youtu.be
    This is how it looks originally before putiing it, in premiere pro cs 5.5
    Anyway here is the video with its poor image quality. http://www.youtube.com/watch?v=o_oMNzXAZ8Y&feature=youtu.be
    THANX guys would appreciate the help!!!

    hiya.
    video likes 72 dpi ( though some will say it doesnt matter .. thats a long story ). basically video 'shows' 72 dpi ( basically what the monitor resolution is...typically 72 dpi ).  As you know from print and dimensions, there is a relative sorta thing with byte count ( file size in bytes ), ppi ( I usually say dpi but in video its ppi ....same thing basically )..., and dimensions ( width x height ).
    soooo , as you know in print and web stuff...there is a relationship between number of dots or pixels, dimensions in inches or pixels, and overall byte count of file size....
    That said, in "print" it is usually best to go with 300dpi.. In video it is best to go with 72 ppi.....
    Also, in print and going offest press.. its nice to go with cmyk ( for color separations ).. but in video and web its best to go with RGB.
    The video stuff doesnt deal with vector stuff... it just sees and deals with bitmapped stuff...vector stuff is a mathematical sorta thing whereas video stuff is just plain old bitmaps ( like BMP, TIF, JPG, etc )...
    Ideally your still images and graphics in a video editing program would be bitmapped rgb 72 ppi.. and match exactly the dimension of your video format ( eg. 1080p ).  That said, it is normal to have LARGER images ( still images and graphics ) than your project dimensions if you PLAN ON SCALING AND MOTION )... like, your original graphic or pic can be larger than the project if you plan on scaling it down over time to make it look like you are zooming out in the video ....
    To get the best results of a graphic or picture in a video is to have it exactly the project size ( eg. 1920x1080 px at 72 ppi for full HD ).
    soooooo.... if you convert your vector to bitmap, save as psd or tif or something... at 72ppi , with the dimensions in inches or pixels that equals the video ( 1920x1080 for example )... you will see what you want in your second sample ( the original )...
    ps.. you can import layers to the video if you wanna do a psd file and have ONE of those layers the one you use in your video ...can label it something like " video layer " ... whatever...

  • Problems placing ai and eps files into PhotoShop CS3 on a Mac

    When I place any ai or eps file into PhotoShop using File > Place, the images are pixelated. It does not matter if the PhotoShop file size is 72 dpi or 300 dpi, the end result is still the same.
    Placing images used to work a few days ago, and now all of a sudden it does not. Are there any settings that may have been changed?

    I can’t reproduce the problem, but as with all unexplainable Photoshop-problems You might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences You’ve changed) by pressing command-alt-shift on starting the program.

  • Problem placing images in InDesign 5.0

    I'm using InDesign 5.0 for a catalog project. On other catalogs I've placed hundreds of images without a hitch, but suddenly I am having this problem: After successfully placing several images in a document I get the spinning ball after selecting another image to place. It occurs after I've selected "Place" and have gone back to my InDesign doc. This problem began after I'd selected 25 images all at once and successfully placed them. After that I can't even select a single image without the spinning ball. I have to Force Quit and relaunch. I've tried restarting, shutting down for 20 seconds, making new documents (thought it might be a Save-As issue), but can't get more than a handful of images onto the layout before it has this problem again.

    Do you use Linotype Fontexplorer? I ask because the latest plugin update broke illustrator in a similar way, if you do, try disabling the plugin and see if the issue resolves
    Les

  • New user:  Problems placing text over object

    Hi,
    I have recently started using InDesign CS5 to produce the biannual magazine for a volunteer organisation.  My background is not in this area, so please excuse me if  I do not use correct terminology or am asking something obvious.  Having said that I have been very impressed with the ease of the programme to use for what we need.
    I am having a problem with the document I am currently working in, however if I place the same elements in a different document things are ok, so I know it is something I have accidently done, but after a lot of playing around I am at a loss.
    My issue is when I place an Object (a photo for the cover) and then try to place text over the top the text disappears on the object, however can be seen when you take it off it.  You see the text box with the red cross mark in the bottom right corner.  If you ask to "bring to front" nothing happens.  Same if you try it using the photo.  Oher objects (logo) can be placed on top of the photo.  I have tried using Layers, but to no success.
    Any help would be greatly appreciated.

    Standard advice to new users. Buy a good book.
    Sandee Cohen's Visual Quick Start Guide is by far the best one for beginners: http://amzn.to/czpjiq
    The best $20 you'll ever spend if you want to learn InDesign.
    Bob

  • Problem placing PSD file in Illustrator

    G'day,
    My problem is when i place PSD file into illustrator, it opens up "Photoshop Import Option" menu,
    which lets me choose either:
    (1) convert photoshop layers to objects (or)
    (2) Flatten photoshop layers to a single image
    all other options are greyed out (meaning i cannot select them)
    The above 2 options will embed the image into illustrator, thus when i update in photoshop, they will not auto update.
    I dont have this problem in the past (which means i dont get this menu when i use the place function) but it just poped up the last week.
    But when i open OLD illustrator files which have PSD images not embeded, i am able to edit the PSD and illustrator will auto update.
    Please help it is really frustrating to keep placing PSD files everytime when i have changes.
    Thanks!

    Hi Steve,
    May i know what is the place dialogue box are you referring to?
    The Place dialogue box that i get (when i press file>place) is the image below:
    As you can see i dont have any "link" button to check or uncheck. I can either flatten the psd or convert to object.
    My Problem is I would really like to link back the psd file for easy updates but i am not able to.
    Pls help thx!~

  • Having a problem: Placing image or putting drop shadow on rectangle causing entire page to lighten up.

    I don't know how to word this properly, so I'm sorry if I'm doing this all wrong! I'm having a problem with my document in indesign. I have placed a jped image on the page to serve as the background image. I did this on the master page. I first noticed this problem when I was trying to put a .psd image onto the page. When I did, it would cause the entire page to dramatically brighten! I finally gave up and moved on, and now I ran into the problem again when I created a new rectangle box. I put a drop shadow effect on the box and when I did this, it also made the entire page lighten up. Any suggestions on how to fix this problem??
    Thanks so much!

    Whenever you add a transparency effect such as drop shadow over another image, especially a grayscale image, InDesign changes how the page is rendered to reflect what it will look like when printed. As I understand it, nothing has changed but the display. Choose View > Overprint Preview to avoid such surprises and get a more accurate representation of what you'll see when printed when colors are separated. If your document is going to be output to PDF or SWF, choose Edit > Transparency Blend Space > Document RGB instead of Document CMYK.

  • Problem adding jpegs to iWeb pages

    When I add a group of jpegs (typically numbered 01, 02, 03...10, 11, 12, etc), the group will be added in numerical order, with the exception of 01, which is always added to the end of the group. Does anyone else have this problem?

    Apparently no-one has this problem.

Maybe you are looking for