How can I make Keynote files read-only (eg: to share with students)?

I would like to share some keynote files with students, and I would like to set them up as read-only, so that the students can tap the screen, read my presentation, but not alter it.  I've tried to set the files up as read-only on my iMac desktop, but when I load the file onto my iPad, it's still editable.
Any ideas re: how to make Keynote files read-only?
I've tried to export the files as PDF and load them into iBook, but some of Keynote's basic "build" functions won't work this way.  Specifically, I have files set up with questions and answers (ie - a question appears, and you have to tap the screen to see the answer, but this "build" function seems to disappear when I get it to show up in iBook).
Any ideas how to make Keynote files read-only?  I am happy to use another program, but I want the students to tap the screen in order to see the answer to a question.
Thanks!

as long as $PATH is set, you shouldn't need to reconnect them (i think).  if you send the list of apps through | awk -F '/' '{print $NF}' | that'll strip the path
/edit: added the "(i think)" part
Last edited by brisbin33 (2009-06-02 21:33:06)

Similar Messages

  • How can we make SAP system READ ONLY !!!!!

    Hi, we have an SAP R/3 4.6 C Application. We need to take the system for read only state means we don’t want the users to allow any update for the system but they should be able to view the data what they have created. Mean while we don’t want the database to be taken in read only mode as we the administrators or the users might want to update their password information.
    It would be a big help if some one can through some tips on how we achieve this.
    Thanks much in advance.
    Guru

    Hi
             Please make the database in READ ONLY MODE. This will help. If it is an oracle database then.
    Open a Database in Read-Only Mode
    You can open any database in read-only mode to prevent its data from being modified by user transactions. Read-only mode restricts database access to read-only transactions, which cannot write to the datafiles or to the redo log files.
    Disk writes to other files, such as control files, operating system audit trails, trace files, and alert files, can continue in read-only mode. Temporary tablespaces for sort operations are not affected by the database being open in read-only mode. However, you cannot take permanent tablespaces offline while a database is open in read-only mode. Also, job queues are not available in read-only mode.
    Read-only mode does not restrict database recovery or operations that change the database's state without generating redo data. For example, in read-only mode:
    Datafiles can be taken offline and online
    Offline datafiles and tablespaces can be recovered
    The control file remains available for updates about the state of the database
    One useful application of read-only mode is that standby databases can function as temporary reporting databases
    Opening a Database in Read-Only Mode
    Opening a database in read-only mode enables you to query an open database while eliminating any potential for online data content changes. While opening a database in read-only mode guarantees that datafile and redo log files are not written to, it does not restrict database recovery or operations that change the state of the database without generating redo. For example, you can take datafiles offline or bring them online since these operations do not effect data content.
    If a query against a database in read-only mode uses temporary tablespace, for example to do disk sorts, then the issuer of the query must have a locally managed tablespace assigned as the default temporary tablespace. Otherwise, the query will fail. This is explained in "Creating a Locally Managed Temporary Tablespace".
    Ideally, you open a database in read-only mode when you alternate a standby database between read-only and recovery mode. Be aware that these are mutually exclusive modes.
    The following statement opens a database in read-only mode:
    ALTER DATABASE OPEN READ ONLY;
    You can also open a database in read-write mode as follows:
    ALTER DATABASE OPEN READ WRITE;
    However, read-write is the default mode.
    Regards

  • Sometimes my ipod brings up my sisters apple id even though its mine in my ipod settings how can i make it so it only brings up mine?

    Sometimes my ipod brings up my sisters apple id because shes synced her ipod on my laptop before, but its my apple id in my ipod settings how can i make it so it only brings up mine?

    The usually indicates that you have some media on yur iPod that was purchased using here iTunes account. It usually happens only with apps like when they have to be updated.  Check for that and delete apps purchased with her account.

  • How can i make cotrol file which have conveyor and ?

    how can i make cotrol file which have conveyor " to move the bottle and slider " to fill the same bottle ?
    i attach my control file.............
    " Science is came....not come "
    I study Mechatronics Engineer
    skype : t_alhowaiti
    Attachments:
    convyer.ctl ‏16 KB

    Jeff·Þ·Bohrer wrote:
    billko wrote:
    ThaerAL-Hwaiti wrote:
    i want to make a production line which move a bottle on a conveyor and fill it .
    That's all good and fine, but what have you tried codewise?  Let's see what you have so far and we can go from there.
    The easy answer is "an assignment" and a desire to pass the course without actually needing to read and comprehend information.
    I as trying to be diplomatic about it. 
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • How can i make doc file in ipad

    how can i make doc file in ipad??

    I believe that Pages for the iPad is capable of creating documents compatible with MS Word's .doc format.
    Best of luck.

  • How can I have both functions "Read Only" & "Write" mode on the same form?

    Dear all,
    How can I have both functions "Read Only" & "Write" mode on the same form? Is it possibile for this?
    Please advice,
    Amy

    This is what I use in some dialogs:
    PROCEDURE SET_QUERY_ONLY IS
      -- Procedure Set_query_only
      -- Rend les blocks non modifiables   --
      -- Disable menus Insert/Delete/Clear --
      -- Entree               :
      -- Sortie               :
      -- Ent/Sortie     :
      -- Creation               : FD    10/2003
      -- Modification     : 
         LC$Block     Varchar2(30) ;
    BEGIN
      Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_FALSE ) ;
      LC$Block := get_form_property( NAME_IN('System.Current_Form'), FIRST_BLOCK ) ;
      -- Tous les blocs en Query only --
      While LC$Block is not null Loop
           Enable_Block( LC$Block, FALSE ) ;
           LC$Block := get_block_property( LC$Block, NEXTBLOCK ) ;
      End loop ;
    END;
    PROCEDURE ENABLE_BLOCK
              PC$Block in Varchar2,
              PB$Enable in Boolean Default TRUE
         ) IS
      -- Procedure Enable_block
      -- Rend le bloc Enable / Disable --
      -- Entree          : PC$Block (nom du bloc Forms)
      --               : PB$Enable (TRUE ou FALSE)
      -- Sortie          :
      -- Ent/Sortie             :
      -- Creation          : FD    10/2003
      -- Modification     : 
    BEGIN
         If PB$Enable Then
              Set_Block_Property( PC$Block, INSERT_ALLOWED, PROPERTY_TRUE ) ;
              Set_Block_Property( PC$Block, UPDATE_ALLOWED, PROPERTY_TRUE ) ;
              Set_Block_Property( PC$Block, DELETE_ALLOWED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_TRUE ) ;
         Else
              Set_Block_Property( PC$Block, INSERT_ALLOWED, PROPERTY_FALSE ) ;
              Set_Block_Property( PC$Block, UPDATE_ALLOWED, PROPERTY_FALSE ) ;
              Set_Block_Property( PC$Block, DELETE_ALLOWED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_FALSE ) ;
         End if ;
    END;Francois

  • How can I make two copies of the same picture one with my watermark and one without for printing for clients?

    how can I make two copies of the same picture one with my watermark and one without for printing for clients?

    Export the photo twice, once with a watermark and once without a watermark.

  • How Can We make video files of images in Flex

    Hi
          Can Any body tell me how can i make a video file of images in flex.Please tell me wether its possible in Flex. to combine images to make a video file.
    Regards
    Vineet osho

    Ok,
    Let me take this example.
    Supposing A vendor with 3 AP open items, B vendor with 2 AP open items.
    When making a payment proposal, SAP shows only 2 lines, namely, collected by vendor code.
    Looking at DME file, however, it shows 5 lines which means all individual open items.
    What we want to make is 2 lines in DME file, which means grouping invoices by vendor in a DME file.
    Hope it makse sense.

  • How can i make a file a .jar again?

    Ive opened a minecraft.jar with Archive Utillity so i can change pictures but ow can i make a file a .jar again?

    You have not said what your target size is nor how many photos you have or how large on screen. Nor what version of Pages you are using. Nor whether it is just for looking at on screen or you require a good print.
    Reducing file size is a combination of things that can be done with no loss of quality:
    1. Crop and reduce resolution of images in a 3rd party application, Preview will do.
    and those that will reduce quality
    2. Menu > File > Reduce File Size
    3. Menu > Share > Export > PDF > Good (Good is not very good unfortunately)
    Use vector (drawing) pdfs in place of bitmap (photo) images can save considerable size. Preparing photos in other programs also allows you to control the image quality of jpegs and tricks like slightly blurring them prior to saving.
    Pages is not very efficient in this regard and there are limits to what you can do. Lots of images, covering a lot of the page does add up to a bigger file whatever you do.
    Peter

  • How can I make tree view for hierarchical data from select with connect by?

    If we have selected hierachy with connect by clause, how can we make it to see in tree view?

    You can't do this using the ADF, Tree Binding used by JHeadstart.
    However, If you have a recursive relationship (for example managerid) you can get a tree what you want as follows:
    - create one root ViewObject that returns the top-level employees without a manager by setting the where clause to managerid=null
    - create a second ViewObject that simply queries all employees
    - Create a ViewLink between the two view objects, and create a nested VO usage in the app module for the second view object
    - Create corresponding nested group in the application definition file and set the layout style to "tree-form" on both groups.
    See Developers Guide, chapter 3, section recursive trees for more info.
    Steven Davelaar,
    JHeadstart Team.

  • Can I create a calendar on my mac to share with students using ipads?

    Students at my school will be using iPads starting this fall. I want to know whether I can create a calendar on my Mac in iCal to share with students using iPads. Would the calendar appear in their iPad Calendar app? Would they be able to make any changes? Add notes?
    Thanks for any information you might have.

    You will need an iCloud account. You can share a non-editable calendar to people who don't have iCloud accounts, but if you want them to able to edit them they will have to have iCloud accounts (which are free).
    Please see this and the subsequent pages:
    http://help.apple.com/icloud/#mm6b1a8694

  • How can I make a file not read only? Using LV6.0, I have tried the Access Rights VI w/o luck.

    I am talking about any file in windows 98 that has the read only box checked when I look at the properties of the file from Windows Explorer. I can can get rid of the check from the properties box, but I want to do it programmaticaly in LabView.

    Hi,
    Wire in '448' to the 'New Permissions' of the Access Rights VI. This will set the file as readable, writable and executable. I just tried this (on WinNT, though).
    The 'permissions' parameter is a 16-bit integer where the least 9 bits are used. Of these, for Windows, bits 8, 9, and 10 (0-indexed) are important (i.e. if these are set = integer 448). See online Help for full details.
    Hope this helps,
    Khalid

  • How can users who have Acrobat Reader only save scanned pdf files so that the text on them is searchable using ctrl-F?  I just use the recognize text with ocr feature in the full version of Acrobat and this seem to do the trick. Reader doesn't work!

    Our users have scanned pdf files they want to be able to search using ctrl-f.  I got them to be searchable by doing a recognize text using ocr with Acrobat Professional vesion 8.  They want to know if they can make the files searchable with Acrobat Reader only or if they need the full Acrobat Professional software to make the files searchable.
    Thanks for the help!!
    Ken K. - 2191

    To clarify a bit they need to have Adobe Acrobat, not Adobe Reader. Reader has not been associated with the Acrobat name for 3 or more versions. The process you are asking about is a creation process - the purpose of Acrobat - and NOT a reading feature.

  • How can I make sure files I transfer stay at read/write instead of read?

    My employer recently got six brand new Mac Pros for our a/v guys. Well I wasn't able to get migrate to work (it wouldn't detect the slave drives, only the master) so I had to put files onto an external drive (a LACIE 1TB) and put them on the new Mac Pro OS 10.5.
    We're finding out that files that we're moving, their permissions are being changed to read only instead of remaining at read/write or so it seems.
    We've also got these machines on a closed network so we can share files between different areas of the office. Each computer has an administrator account and allows sharing and gives those it is sharing with, read/write permissions. But if I transfer a file from machine a to machine b, it comes out as read only one the file.
    I'm thinking we jacked up the file sharing somewhere somehow. Curious if anyone might be able to take a crack at this. We're all new to leopard.
    Screenshots:
    Thanks

    usually though; they are techs; and so geeky; that in windows they set themselves as admins with unlimited privaleges. So what they do is go to account setting and just delete your account; and when they delete; they will delete everything; and all your person files.
    Most though; find that too troublesome; so they just reformat the drive with a backup they built; for that computer.
    Most of the things you can do is deleting temporary internet files; and cookies; and any saved passwords on your account. Usually all found in options/tools in most web browsers. For windows; most files are on desktop; my music; my downloads; my documents; and etc.

  • How can I make PSE8 to read "Rating" from XMP files?

    Hi, I'm trying to share "Rating" perameter between Lightroom2 and Photoshop Elements8.
    PSE8 can't seem to read the perameter from XMP files created by Lightroom2.
    I did following steps.
    1. (Lightroom2) Configure a camera RAW file named aaa.cr2 and rate it as five stars.(I use a Canon DSLR. )
    2. (Lightroom2) Make a XMP file corresponding to the file. aaa.xmp is created in the same directory.
    3. (Explorer and notepad) Open aaa.xmp with a notepad.exe and check "Rating" is set five.
    4. (PSE8) Open aaa.cr2 as PSE8 Organizer. Its thumbnail is applied configured parameters by Lightroom2 such as exposure compensation to.
    5. (PSE8) However, rating parameter in PSE8 orginizer still shows zero star.
    It'a feature? Or something is strange?
    Can someone help me?

    Hi, John.
    Follwing XML is one of my XMP file created by lightroom2.
    I rated this CR2 file as three stars and <xap:Rating>3</xap:Rating> means it,
    but PSE8 doesn't read this parameter even if I started Elements Orginizer.
    When I select "update thumnail", Orginizer applys lighturoom2's effect to thumnail,
    and Camera RAW plagin can open the file with all lightroom's effects applied. However, stars still shows zero.
    Shoud I do something to make PSE8 to read it?
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.2-c020 1.124078, Tue Sep 11 2007 23:21:40        ">
    <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
        xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
       <tiff:Make>Canon</tiff:Make>
       <tiff:Model>Canon EOS 40D</tiff:Model>
       <tiff:Orientation>8</tiff:Orientation>
       <tiff:ImageWidth>3888</tiff:ImageWidth>
       <tiff:ImageLength>2592</tiff:ImageLength>
      </rdf:Description>
      <rdf:Description rdf:about=""
        xmlns:exif="http://ns.adobe.com/exif/1.0/">
       <exif:ExifVersion>0221</exif:ExifVersion>
       <exif:ExposureTime>1/20</exif:ExposureTime>
       <exif:ShutterSpeedValue>4321928/1000000</exif:ShutterSpeedValue>
       <exif:FNumber>35/10</exif:FNumber>
       <exif:ApertureValue>361471/100000</exif:ApertureValue>
       <exif:ExposureProgram>4</exif:ExposureProgram>
       <exif:ISOSpeedRatings>
        <rdf:Seq>
         <rdf:li>400</rdf:li>
        </rdf:Seq>
       </exif:ISOSpeedRatings>
       <exif:DateTimeOriginal>2009-10-31T21:02:41.01+09:00</exif:DateTimeOriginal>
       <exif:DateTimeDigitized>2009-10-31T21:02:41.01+09:00</exif:DateTimeDigitized>
       <exif:ExposureBiasValue>0/1</exif:ExposureBiasValue>
       <exif:MaxApertureValue>3/1</exif:MaxApertureValue>
       <exif:MeteringMode>6</exif:MeteringMode>
       <exif:Flash rdf:parseType="Resource">
        <exif:Fired>False</exif:Fired>
        <exif:Return>0</exif:Return>
        <exif:Mode>2</exif:Mode>
        <exif:Function>False</exif:Function>
        <exif:RedEyeMode>False</exif:RedEyeMode>
       </exif:Flash>
       <exif:FocalLength>18/1</exif:FocalLength>
       <exif:CustomRendered>0</exif:CustomRendered>
       <exif:ExposureMode>0</exif:ExposureMode>
       <exif:WhiteBalance>0</exif:WhiteBalance>
       <exif:SceneCaptureType>0</exif:SceneCaptureType>
       <exif:FocalPlaneXResolution>3888000/876</exif:FocalPlaneXResolution>
       <exif:FocalPlaneYResolution>2592000/583</exif:FocalPlaneYResolution>
       <exif:FocalPlaneResolutionUnit>2</exif:FocalPlaneResolutionUnit>
       <exif:PixelXDimension>3888</exif:PixelXDimension>
       <exif:PixelYDimension>2592</exif:PixelYDimension>
      </rdf:Description>
      <rdf:Description rdf:about=""
        xmlns:xap="http://ns.adobe.com/xap/1.0/">
       <xap:ModifyDate>2009-10-31T21:02:41.01+09:00</xap:ModifyDate>
       <xap:CreateDate>2009-10-31T21:02:41.01+09:00</xap:CreateDate>
       <xap:Rating>3</xap:Rating>
       <xap:MetadataDate>2009-11-02T01:39:31.622-09:00</xap:MetadataDate>
      </rdf:Description>
      <rdf:Description rdf:about=""
        xmlns:aux="http://ns.adobe.com/exif/1.0/aux/">
       <aux:SerialNumber>1510805163</aux:SerialNumber>
       <aux:LensInfo>18/1 50/1 0/0 0/0</aux:LensInfo>
       <aux:Lens>18-50mm</aux:Lens>
       <aux:ImageNumber>0</aux:ImageNumber>
       <aux:FlashCompensation>0/1</aux:FlashCompensation>
       <aux:Firmware>1.1.1</aux:Firmware>
      </rdf:Description>
      <rdf:Description rdf:about=""
        xmlns:crss="http://ns.adobe.com/camera-raw-saved-settings/1.0/"
        xmlns:crs="http://ns.adobe.com/camera-raw-settings/1.0/">
       <crss:SavedSettings>
        <rdf:Bag>
         <rdf:li rdf:parseType="Resource">
          <crss:Name>読み込み</crss:Name>
          <crss:Type>Snapshot</crss:Type>
          <crss:Parameters rdf:parseType="Resource">
           <crs:Version>5.3</crs:Version>
           <crs:WhiteBalance>As Shot</crs:WhiteBalance>
           <crs:Exposure>0.00</crs:Exposure>
           <crs:Shadows>5</crs:Shadows>
           <crs:Brightness>+50</crs:Brightness>
           <crs:Contrast>+25</crs:Contrast>
           <crs:Saturation>0</crs:Saturation>
           <crs:Sharpness>25</crs:Sharpness>
           <crs:LuminanceSmoothing>0</crs:LuminanceSmoothing>
           <crs:ColorNoiseReduction>25</crs:ColorNoiseReduction>
           <crs:ChromaticAberrationR>0</crs:ChromaticAberrationR>
           <crs:ChromaticAberrationB>0</crs:ChromaticAberrationB>
           <crs:VignetteAmount>0</crs:VignetteAmount>
           <crs:ShadowTint>0</crs:ShadowTint>
           <crs:RedHue>0</crs:RedHue>
           <crs:RedSaturation>0</crs:RedSaturation>
           <crs:GreenHue>0</crs:GreenHue>
           <crs:GreenSaturation>0</crs:GreenSaturation>
           <crs:BlueHue>0</crs:BlueHue>
           <crs:BlueSaturation>0</crs:BlueSaturation>
           <crs:FillLight>0</crs:FillLight>
           <crs:Vibrance>0</crs:Vibrance>
           <crs:HighlightRecovery>0</crs:HighlightRecovery>
           <crs:Clarity>0</crs:Clarity>
           <crs:Defringe>0</crs:Defringe>
           <crs:HueAdjustmentRed>0</crs:HueAdjustmentRed>
           <crs:HueAdjustmentOrange>0</crs:HueAdjustmentOrange>
           <crs:HueAdjustmentYellow>0</crs:HueAdjustmentYellow>
           <crs:HueAdjustmentGreen>0</crs:HueAdjustmentGreen>
           <crs:HueAdjustmentAqua>0</crs:HueAdjustmentAqua>
           <crs:HueAdjustmentBlue>0</crs:HueAdjustmentBlue>
           <crs:HueAdjustmentPurple>0</crs:HueAdjustmentPurple>
           <crs:HueAdjustmentMagenta>0</crs:HueAdjustmentMagenta>
           <crs:SaturationAdjustmentRed>0</crs:SaturationAdjustmentRed>
           <crs:SaturationAdjustmentOrange>0</crs:SaturationAdjustmentOrange>
           <crs:SaturationAdjustmentYellow>0</crs:SaturationAdjustmentYellow>
           <crs:SaturationAdjustmentGreen>0</crs:SaturationAdjustmentGreen>
           <crs:SaturationAdjustmentAqua>0</crs:SaturationAdjustmentAqua>
           <crs:SaturationAdjustmentBlue>0</crs:SaturationAdjustmentBlue>
           <crs:SaturationAdjustmentPurple>0</crs:SaturationAdjustmentPurple>
           <crs:SaturationAdjustmentMagenta>0</crs:SaturationAdjustmentMagenta>
           <crs:LuminanceAdjustmentRed>0</crs:LuminanceAdjustmentRed>
           <crs:LuminanceAdjustmentOrange>0</crs:LuminanceAdjustmentOrange>
           <crs:LuminanceAdjustmentYellow>0</crs:LuminanceAdjustmentYellow>
           <crs:LuminanceAdjustmentGreen>0</crs:LuminanceAdjustmentGreen>
           <crs:LuminanceAdjustmentAqua>0</crs:LuminanceAdjustmentAqua>
           <crs:LuminanceAdjustmentBlue>0</crs:LuminanceAdjustmentBlue>
           <crs:LuminanceAdjustmentPurple>0</crs:LuminanceAdjustmentPurple>
           <crs:LuminanceAdjustmentMagenta>0</crs:LuminanceAdjustmentMagenta>
           <crs:SplitToningShadowHue>0</crs:SplitToningShadowHue>
           <crs:SplitToningShadowSaturation>0</crs:SplitToningShadowSaturation>
           <crs:SplitToningHighlightHue>0</crs:SplitToningHighlightHue>
           <crs:SplitToningHighlightSaturation>0</crs:SplitToningHighlightSaturation>
           <crs:SplitToningBalance>0</crs:SplitToningBalance>
           <crs:ParametricShadows>0</crs:ParametricShadows>
           <crs:ParametricDarks>0</crs:ParametricDarks>
           <crs:ParametricLights>0</crs:ParametricLights>
           <crs:ParametricHighlights>0</crs:ParametricHighlights>
           <crs:ParametricShadowSplit>25</crs:ParametricShadowSplit>
           <crs:ParametricMidtoneSplit>50</crs:ParametricMidtoneSplit>
           <crs:ParametricHighlightSplit>75</crs:ParametricHighlightSplit>
           <crs:SharpenRadius>+1.0</crs:SharpenRadius>
           <crs:SharpenDetail>25</crs:SharpenDetail>
           <crs:SharpenEdgeMasking>0</crs:SharpenEdgeMasking>
           <crs:PostCropVignetteAmount>0</crs:PostCropVignetteAmount>
           <crs:ConvertToGrayscale>False</crs:ConvertToGrayscale>
           <crs:ToneCurveName>Medium Contrast</crs:ToneCurveName>
           <crs:ToneCurve>
            <rdf:Seq>
             <rdf:li>0, 0</rdf:li>
             <rdf:li>32, 22</rdf:li>
             <rdf:li>64, 56</rdf:li>
             <rdf:li>128, 128</rdf:li>
             <rdf:li>192, 196</rdf:li>
             <rdf:li>255, 255</rdf:li>
            </rdf:Seq>
           </crs:ToneCurve>
           <crs:CameraProfile>Adobe Standard</crs:CameraProfile>
           <crs:CameraProfileDigest>730B5111DF7449A8EE0790633B8D3861</crs:CameraProfileDigest>
          </crss:Parameters>
         </rdf:li>
        </rdf:Bag>
       </crss:SavedSettings>
      </rdf:Description>
    </rdf:RDF>
    </x:xmpmeta>

Maybe you are looking for

  • File Connection path problem

    Hi friends, I have developed an application which send image from client to server using http...I have used PDADemo of wtk and jsr 75 API to take image from the gallery and send it to the server.....my problem is when i open the application..its taki

  • Non-existant photo links?

    Hi all I have an N96 (firmware version 12.043) and I have a weird problem with it. When I go into the photo gallery, I have loads of boken links to photos that don't actually exist on the phone (they were on the memory card previously, but I have sin

  • How to avoid the change of url in browser window

    Hi all, i have created 2 portal component and created as a anonymous iView and assigned in framework page(duplicated default framework page).And also master rule collection i added my framework page for anonymous, while i type the url /irj/portal/ano

  • [SOLVED] texlive2k8 -- how to install omega into $HOME?

    Hi folks! Because the omega-collection is declared obsolete and therefor no more provided in texlive2008. That's bad, because I used it with tl2k7, and though I appreciate xelatex and cjklatex, I still need lambda very badly. So I want to have it ins

  • ID and UID

    hi doing a uniuser-request like the following: [~/ocal/bin] ./uniuser -ls -host host.name.ch -n <node-id> -p <sysoppassword> i get the following: S=Muster/G=Susanne/C=CH/P=COMPANY/ID=384/UID=1111/ENABLE=TRUE/LANG=de/ + NODE-ID=<node-id>/O=COMPANY is