Can't group image file

I frequently want to bring an image file into Pages, and then add text or shapes to annotate the image.  I want to group the objects and the image.  I can multi-select any text or shapes that I have added; but I cannot add the image file to the selection.  Does anyone have a simple way to overcome this?
Thanks!

I don't know what you are doing wrongly.
I clicked the photo then with the cmd key depressed I clicked the two other objects.
The result was :
I just got an idea.
Maybe your image is not floating like mine but inline.
Yvan KOENIG (VALLAURIS, France) lundi 16 janvier 2012
iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
My iDisk is : http://public.me.com/koenigyvan

Similar Messages

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • How can I add image files to a executable jar file ?

    Could you tell me how can I add image files to executable jar file ?
    package structure:
    ../com/Main.class
    ../images/..

    Please don't cross post, and read this
    http://forum.java.sun.com/thread.jsp?forum=31&thread=271751
    I've answered the question in the New To Java thread.

  • Can't read image file

    Dears,
    I was having forms version 10.1.2.0.2 and I was using webutil to upload an image and to download it. My problem is sometimes the image files are uploaded and sometimes not => I got "Can't read image file D:\...\image.jpg"
    I upgraded to forms 10.1.2.3 and the problem persists.
    I'm seeing that the picture resides in the workspace environment and not uploaded to the database.
    I'm not limiting the size of the pic in the frmweb.cfg file, instead this limitation occurs on form level.
    Hint. If you save this picture in "photoshop" tool, than you can upload the same picture without any problem.
    Any suggested help will be appreciated.
    Best Regards,
    Joe Farah
    Edited by: Joe Farah on Feb 26, 2009 11:01 AM

    Yes dear, this is the way that we can follow in order to get rid of this problem. Actually we have to mention to all users of my system to save the image file in this tool. But, it's somehow cumbersome for them as they might not have any of the mentioned imaging tool on their systems, isn't it ?
    But isn't there any way to fix this problem ? Or shall I go by using PJC/Java Beans ? We have to find an effective way.. :)
    Thanks,
    Joe

  • Is there function that can transform a image file into a matrix?

    Hi,
    Is there function in java that can transform a image file into a matrix? What kind of library should be used?
    thx

    It would be ****** nice if we could provide an example but we got more important things to do than stand around and wipe your bottom. Get off that fat thing and find out yourself.
    Took me under a minute to find this link, is it really that hard for you kind of people to search? you know what the word means or looks like?
    http://forum.java.sun.com/thread.jsp?forum=20&thread=363117

  • How can add a images file  to anothere image file

    hi
    Requirement is: i have one image in data base , i is show to user in my application
    know we want add another image file in to a current image file (just append)
    at end .
    i was tried with following code below
    i was read the previous(Old) image content from the data base and placed into c:\\ReArchive\\test_content.tiff
    ResultSet rs2=dbBean.getSQLRows("select binarycontent from ContentVersion where contentindex="+IndexValue+"");
    byte[] bTempData_content=new byte[65536];
    while(rs2.next()){              
    File f = new File("c:\\ReArchive\\test_content.tiff");
    f_content.delete();
    f_content.createNewFile();
    FileOutputStream dest_contentVersion = new FileOutputStream(f_content);
    while(rs2.next()){              
    InputStream is_content=rs2.getBinaryStream("Binarycontent");
    nActualRead_content=is.read(bTempData_content,0,65536);
    while(nActualRead_content>0)
    dest_contentVersion.write(bTempData_content,0,nActualRead_content);
    nActualRead_content=is.read(bTempData_content,0,65536);
    Then i was took New image file from data base and place in to c:\\ReArchive\\test.tiff");
    int nActualRead=0;
    ResultSet rs1=dbBean.getSQLRows("select * from Object_Store where Barcode_ID='"+strBar_Code+"'");
    byte[] bTempData=new byte[65536];
    File f = new File("c:\\ReArchive\\test.tiff");
    f.delete();
    f.createNewFile();
    FileOutputStream dest = new FileOutputStream(f);
    while(rs1.next()){
    InputStream is=rs1.getBinaryStream("Obj_Content");
    nActualRead=is.read(bTempData,0,65536);
    while(nActualRead>0)
    dest.write(bTempData,0,nActualRead);
    nActualRead=is.read(bTempData,0,65536);
    then i tried add two images by converting InputStream to String and i am trying add to images
    but i was failed ,i think i am in not correct way , how can i solve this problem
    thanks advance
    gss

    Don't you think it would be a good idea to tell us how you failed?

  • Can't move image files within Bridge

    I recently bought an iMac and got the CS5 license transferred over to the Mac platform. Got CS5 loaded and everything works except for one critical thing: I can no longer move image files within Bridge. When I do the right click on an image file to select that command, the command is "grey" and won't let me to choose it.  So I am forced to rearrange my image files through the Mac's Finder/Pictures feature.  Drag and drop doesn't work either.  I have looked everywhere for a setting that would allow movement of files to different folders and rearrangement within Bridge, and can't find one.  I have Bridge set as my default for photos and not the lame iPhoto program on Macs.  I previously was to be able to freely use Bridge for organizing my photos on a PC and now sorely disappointed that I can't do this with my new iMac.

    I previously was to be able to freely use Bridge for organizing my photos on a PC and now sorely disappointed that I can't do this with my new iMac.
    No need for disappointment because you can move all files freely within Bridge.
    First check if you have read and write permissions for your files/folders/disk (try move the files using finder) If Finder allows you to drag the files to the location you previously wanted in Bridge then the problem lies in Bridge.
    First select a file and with right mouse click menu choose purge cache for selection. If the problem is gone you could do so for the whole folder using menu tools/cache/purge cache for folder while having Bridge pointed to that folder.
    If not restart bridge holding down option key and choose reset preferences.
    could you report back?

  • I can't import image files from my camera to Photoshop Elements

    My iMac recognizes my camera (a Canon Powershot S100 Digital Elph).  I know this because it automatically starts iPhoto and loads the images.  The problem is, I am sick and tired of iPhoto, and I want to use Photoshop Elements instead.   When I connect the camera to the iMac (via a USB port), I do NOT get a camera icon signifying a new volume or drive on my desktop.  So when I open Photoshop 4.0, I can't find the files to import.  I could allow the computer to import automatically into the iPhoto library, then manually drag the image files into a different directory for use by PSE, but that seems way too complicated.  Why should I have to do that?  Please help if you can.
    John

    I'm using OS X 10.4.11. 
    Maybe I didn't explain it very well.  Let me try again:
    I would like to be able to connect my camera to the USB port of the iMac, turn on the camera, and then view the images from the camera memory on the screen using Bridge (the subroutine for file management in Photoshop Elements).  I have not been able to do that. 
    Instead, my iMac immediately displays the camera images by opening iPhoto.  There is no option in iPhoto for importing the images to anything other than the iPhoto library.  So I have to go find them there, copy them into the directory were I want them, and then erase them from the library (which is a little tricky by itself).  Then I can manage them in Elements/Bridge.
    I thought when I bought Photoshop Elements that I would be able to open it and then tell it to import the images from my camera, into a directory of my choosing.  That would be less error-prone and a lot less work. 

  • Can't access image files

    Wondering if anyone can help me .....
    I am deploying an applet for an intranet, about 15 local users. The applet is a simple tree view which contains links to HTML files found in the same directory on the server as the applet. These links work fine and I am able to view these files from a client machine. My problem is with the image files that I am using for the icons in the TreeView. These .gif files are also within the same folder and work fine in AppletViewer. However the deployed versions throw a java.io.FilePermission Exception on both the server and client, and the images will not load.
    I have read a stack of different articles and threads on this area and I understand the need for signing applets when they require access to local files, but it was my understanding that applets can always access files in the directory from which they were loaded? This seems to be true given that the html files load without error, so I am at a loss for why the .gif files will not also? I don't want to go to the expense of buying a Certificate for signing and the process for creating your own seems to make the deployment process extremely painful for the final user.
    Any ideas? Thanks in advance
    Chris

    hi chris, i too had similar problem. you copy the java.policy file present in security subdirectory in jre directory to c:/windows in case if u r not logged in as an user or to the user profile directory if u r logged in as an user.if u see the java console in the plugin, u can find where to copy the file. rename the java.policy file to .java.policy file, and append the following code. this will work for all systems whether it is client or server. what u have to do is to append the .java.policy file the following code:
    grant {
    permission java.security.AllPermission;
    this has to be done for all the client systems also.
    if u r unable to access the gif files from the server, u simply put all the files in to the jar file that u sign and access the gif files using getClass().getResource(file path). the file path should be relative to the directory where u placed ur applet. this will work fine.
    bye,padmanabhan.

  • Apple Motion 2.02 can't import image file

    It always shutdown when import any image file( .jpg .tga so on)
    I have even delete that file user>lib>preferences>com.apple.motion.plist
    still can't resolve that situation
    some QuickTme Decode problem or another?

    Does AJA I/O support a desktop? If so, upgrading to 10.4.4 might fix the problem...
    Patrick

  • Signed applet can't read image file..

    Hello
    My English ability is very poor.. sorry
    I make a signed applet
    and I open Internet Exploere
    I connect to my web page
    when I connect to my web page
    my signed applet upload "c:\blahbalh...\image.gif" automatically
    but It's not work
    java.security.AccessControlException: access denied (java.io.FilePermission C:\DOCUME~1\krict\LOCALS~1\Temp\Hnc\BinData\EMB00000cac2143.jpg read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkRead(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at EchoApplet.onSendData(EchoApplet.java:61)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.plugin.javascript.invoke.JSInvoke.invoke(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.plugin.javascript.JSClassLoader.invoke(Unknown Source)
         at sun.plugin.com.MethodDispatcher.invoke(Unknown Source)
         at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
         at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.com.DispatchImpl.invoke(Unknown Source)
    signed applet can't not read file..
    how can I solve my problem?

    Trace please.
    http://forum.java.sun.com/thread.jspa?threadID=656028
    Maybe some relevant code
    Signing applets:
    http://forum.java.sun.com/thread.jsp?forum=63&thread=524815
    second post and reply 18 for the java class file using doprivileged

  • Switching from Windows to Mac - Can't find image files

    I'm helping a friend switch to Mac. Her old PC (Dell) has power issues but the HD is fine. I'm a life long Mac user so don't know where to locate her picture files, the only thing she's worried about saving. I have her hard drive hooked up to my iMac now but can't find the file.
    I've looked in the "My Shared Folder" but that just has some random music files. No photos.
    Can anyone help?

    If I understand the question correctly, you need to look in the pc directory that has your friend listed as the user (not the shared folder). Once in that user's directory look for the folder My Pictures. Odds are, they're in there. Good luck.

  • Can't create image files

    Hello All, I have recently revamped my computer installing 2X 120gb sdd in raid 0 configuration and 24 gb of ram, I have been in the practise of burning a DVD image file and then burning discs in Nero using the multiple burner function. Since the revamp Encore stops when burning a DVD image file with about 15% to go, it will burn a DVD disc with no problems but I want to take advantage of the multiple burner function of Nero.
    Is there something I didn't install when revamping the comuter ?
    Regards
    Kevin

    Did you mean SSD when you wrote sdd?
    SSD and Video Editing http://forums.adobe.com/thread/902915?tstart=0
    Also, some other notes for Encore
    Long File Names or odd characters cause problems
    Read http://forums.adobe.com/thread/588273
    And #4 http://forums.adobe.com/thread/666558
    And This Message Thread http://forums.adobe.com/thread/665641
    Run as Administrator http://forums.adobe.com/thread/771202
    -Set to always "run as" via icon http://forums.adobe.com/thread/969395

  • I can't open image files, or even drag images into PSE 12 Editor

    So, this is very weird.  I had PSE 10.  About a week ago, it suddenly developed weird problems.  Like, it wouldn't let me use Auto Levels, or let me crop an image, etc. 
    In frustration tonight, I bought PSE 12.  Same exact problem, except worse.  It literally won't let me open a JPG file.  
    I can use the File -> Open menu.  I'm on a PC, so the usual file opening dialog appears.  I select a JPG and click Open.  And... nothing.  The window closes, I'm back in the editor, but nothing's happened.  (Oddly enough, it does appear in the "Open Recently Edited File" menu, but can't open it from there, either.)
    I've tried dragging a JPG from a browser onto the editor's workspace.  Doesn't work.
    Anyone have any ideas?
    Thx!

    Bueller?  Bueller?  I'm frustrated that I just spent $99 to upgrade and I am completely unable to use my software.  I have work to do!
    According to the Customer Support page, this forum is the "best way to contact us" and "Our community and staff are at your service 24/7".  Is that not correct?

  • Users can see, but can't open image files

    We store all of our digital photos (jpg's) on an Xserve RAID attached to an Xserve.
    Twice in the last 3 weeks I have started getting calls from staff members to tell me that they can see the files but can't open them.
    The jpg files aren't recognized.
    If I click on a file from my iMac I get the following message:
    "Couldn't open the file. It may be corrupt or a file format that preview doesn't recognize."
    If I reboot the server. The problem goes away. The files aren't corrupt and people can access them again. I saw this three weeks and then again today, so it's not like it happens every day.
    Even though I connect from a Mac, most of my users are Windows users connecting via Samba.
    We are using RAID Admin: 1.5 and Firmware ver.: 1.5-1.5.xfb
    Mac OSX Server is 10.4.1
    Any ideas why this happens?

    Does the same thing happen with files that are on the local drive? That would be the first thing I'd check.
    Any reason you're running 10.4.1 server and not 10.4.3? There were tons of fixes in 10.4.2 and 10.4.3 around the file system... I'd recommend the update strongly.

Maybe you are looking for