Help with Sample on Converting an XML string to a byte stream

Hello All,<br /><br />I am sure this is something simple, but I am just not figuring it out right now.<br /><br />I am following the sample - "Converting an XML string to a byte stream" from the developer guide since I want to prepopulate just 1 field in my PDF form.<br /><br />How do I reference my form field within my servlet code properly??<br /><br />I have tried a few things now, my field is within a subform, so I thought it would be <root><subformName><fieldname>My data</fieldname></subformName></root>  I have also tried adding <page1> in there too.<br /><br />I am following everything else exactly as given in the sample code.<br /><br />I do have an embedded schema within the form and the field is bound.<br /><br />Thanks,<br />Jennifer

Well, if you have a schema defined in the form, then the hierarchy of your data must match what is described in the schema. So, can't really tell you what it would look like, but just follow your schema.
Chris
Adobe Enterprise Developer Support

Similar Messages

  • Help with ActionScript 2.0 and XML

    Here  I am trying  to use actionscript to load my content with is an XML file with html formatting. I have the actionscript on only 1 Scene  and i have links that switch between scences. The problem(s) is(are) that when I click the link  for the scene that has the actionscipt all it says is "null" where it should have the text i want to display from the XML file. Here is the code for the AS and XML:
    xml = new XML();
    xml.ignoreWhite = true;
    xml.load("contenido.xml");
    xml.onLoad = function () {
        txt = createTextField("txt",getNextHighestDepth(), 30, 300, 300, 100);
        txt.html = true;
        txt.htmlText = xml.firstChild.nodeValue;
    <?xml version="1.0" encoding="UTF-8"?>
    <htmlData><![CDATA[   Here is my <br/> html text   ]]></htmlData>
    any help is greatly appreciated

    Try...
    xml.onLoad = function () {
         txt = createTextField("txt",getNextHighestDepth(), 30, 300, 300, 100);
         txt.multiline = true;
         txt.html = true;
         txt.htmlText = xml.firstChild.childNodes[0].nodeValue;

  • Help with how to convert a string to a number ??

    Hi All,
    I am having problem converting a string to number.
    Looks like my to_number function is not working.
    Help is very much appreciated.
    My query is below, and I know my problem is in my inner query.
    I am getting the following error:
    what am I doing wrong ? and how should I fix it.
    If there is a better approach, please share it.
    ORA-01722: invalid number
    01722. 00000 -  "invalid number"
    *Cause:   
    *Action:
    SELECT
        A.OBJECT_NAME,
        A.TIMESTAMP,
        A.SESSION_ID,
        A.REQUISITION_ID,
        TO_DATE(CUT(RR_PACE_FUNCTIONS.NAME(A.REQUISITION_ID),3,'.'),'YYYYMMDD') CSD,
        SUBSTR(SUBSTR(RR_PACE_FUNCTIONS.DESCRIPTION(A.REQUISITION_ID),9),1,30) COURSE_ID,
        A.WEEK_GROUP,
        A.APTITUDE_AREA,
        SUM(NVL(GTEP_ASGN,0)) GTEP_ASGN,
        SUM(NVL(AI_ASGN,0)) AI_ASGN,
        SUM(NVL(GTEP_ASGN,0) + NVL(AI_ASGN,0) ) BMT_ASGN
      FROM
        (SELECT OBJECT_NAME,
          SESSION_ID,
          TIMESTAMP,
          TO_NUMBER(FIELD1) REQUISITION_ID,  -- I believe here is the problem
          TO_NUMBER(FIELD2) WEEK_GROUP,     -- here as well
          SUBSTR(FIELD3,1,80) APTITUDE_AREA,
          TO_NUMBER(FIELD4) GTEP_ASGN,  -- here
          TO_NUMBER(FIELD5) AI_ASGN      -- here
        FROM RR_REPORT_QUEUES
        ) A
      GROUP BY OBJECT_NAME,
        TIMESTAMP,
        SESSION_ID,
        WEEK_GROUP,
        APTITUDE_AREA,
        REQUISITION_ID ;Many Thanks,

    Are you sure Field1, Field2, Field4 and Field5 contain a number information in all rows?
    If there is a non numeric String in your Field<x> columns in any row the error will occor.

  • Help with PL/SQL -- converting string to date

    select to_date('19-APR-97', 'DD-MON-YY') from dual
    My machine is running 9i if that matters, I have folks born in 55, 77, their birthdates are all converted to 2055, 2077? Any fixes?

    This is crazy, I created a function:
    CREATE OR REPLACE FUNCTION convert_birthdate(p_string varchar) RETURN date IS
    c_date date;
    BEGIN
    c_date := TO_DATE(p_string, 'DD-MON-RRRR');
    RETURN c_date;
    EXCEPTION
    WHEN OTHERS THEN
    NULL;
    END;
    select birth_date from patient where patientid= 698
    19-APR-77
    select convert_birthdate(birth_date) from patient where patientid = 698
    4/19/1977
    update patient p set p.birth_date = convert_birthdate(p.birth_date) where p.patientid = 698
    It says 1 row updated, commited, but the value is still 19-APR-77, why?
    I even created another function to update all rows in patient table
    DECLARE
    TYPE ID_COLLECTION IS TABLE OF NUMBER;
    TYPE DATE_COLLECTION IS TABLE OF VARCHAR2(10);
    pid ID_COLLECTION;
    birthdate DATE_COLLECTION;
    CURSOR C IS
    SELECT PATIENTID, BIRTH_DATE FROM PATIENT;
    BEGIN
    OPEN C;
    LOOP
    FETCH C BULK COLLECT INTO pid, birthdate;
    EXIT WHEN birthdate.COUNT = 0;
    FORALL I IN pid.FIRST..pid.last
    UPDATE PATIENT
    SET BIRTH_DATE = convert_birthdate(birthdate(I))
    WHERE PATIENTID = pid(I);
    END LOOP;
    END;
    I got an error message saying convert_birthdate(birthdate(I) returned without value.... Can somebody explain this?

  • Imported RFC with problem in converting to XML

    Hello,
    another nice issue:
    I have an aRFC with this import parameter from ABAP:
    data: p_data type tab512 occurs 0.
    Call function.......
    Tables
    DATA = p_data
    This is the XML source from the mapping test in Int.Rep.
    <?xml version="1.0" encoding="UTF-8"?>
    <ns:Z_BI_SEND_DATA_512 xmlns:ns="urn:sap-com:document:sap:rfc:functions">
      <SYSID_HOME>AAA</SYSID_HOME>
      <TARGETSYS>BBB</TARGETSYS>
      <DATA>
        <item>test1</item>
        <item>test2</item>
        <item>test3</item>
      </DATA>
    </ns:Z_BI_SEND_DATA_512>
    This is the payload from SXMB_MONI:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <rfc:Z_BI_SEND_DATA_512 xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
      <SYSID_HOME>AAA</SYSID_HOME>
      <TARGETSYS>BBB</TARGETSYS>
    - <DATA>
    - <item>
      <WA>test1</WA>
      </item>
    - <item>
      <WA>test2</WA>
      </item>
    - <item>
      <WA>test3</WA>
      </item>
      </DATA>
      </rfc:Z_BI_SEND_DATA_512>
    Looks like there is a difference (imported RFC in mapping does not show the work area WA)(so: mapping requires
    <DATA>
        <item>test1</item>
    but RFC generates
    - <DATA>
    - <item>
      <WA>test1</WA>
    which hinders the mapping from moving the item lines into the destination file because in mapping the WA area cannot be linked as it is not recognized in mapping.
    Any ideas are welcome!
    Regards
    Dirk

    Hi everyone
    My problem is related to Dirk's one in that I am using an RFC to send XML data from CRM to XI.
    I am trying to send the following string:
    <TEST>GREG</TEST>
    However on XI the payload looks like this:
    <xml version="1.0" encoding="UTF-8"?>
    <rfc:_-MARS_-CPE_IMPORT_CRM_CATALOG xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
    <IV_CATALOG>&#60;TEST&#62;GREG&#60;/TEST&#62;</IV_CATALOG></rfc:_-MARS_-CPE_IMPORT_CRM_CATALOG>
    As you can see < is converted into &#60;
    Where and how do I specify that the content of the parameter must not be interpreted?
    Thanks
    Greg

  • How to convert a xml string html format

    hi,
    in my jso code i have string with name "content", the value of " content" is a xml format.
    so when i type out.print(content)
    i want display it in html format
    can any one help
    thanks

    Use xml parser to read xml elements... then construct Html elements.
    http://www.devx.com/xml/Article/16921

  • Help with Sample 'Purchase Order' form

    HI Guys,
    Have been playing around with the supplied sample file 'Purchase Order'
    At the bottom of the form is a Part No., Description and Cost field that populate from a PartNoScript routine.
    Have been trying to copy this routine into my own form as its nearly the same.
    Question is  - There is a line 2/3rds down
      -  function getDesc(partNumber, descField, itemPrice)
    Where is the partName, DescField, ItemPrice store or located. I've looked in all the scripts, looked at the form fields and cannot find what these three relate too.
    I'm assume it must be the field name somehow but just cant seem to find them.
    Any help much appreciated.
    Dave
    ( With each passing day my knowlage grows stronger - One day I'll take over the world. !! )
    var partNo = new Array(" ",
                                                         "580463116",
        "25906311C",
                                                         "25129637J",
                                                         "771128",
                                                         "11198262A",
                                                         "57251",
                                                         "25906312A",
                                                         "51615223D",
                                                         "51615224D",
                                                         "516154CAC");
      // Array of part descriptions.
    var partDesc = new Array(null,
                                                                "Electric Fuel Pump",
                                                                "Air Flow Meter",
                                                                "Air Intake Sleeve",
                                                                "Fuel Filter",
                                                                "Fuel Injector Seal Set",
                                                                "Oxygen Sensor",
                                                                "Wiring Harness Upgrade",
                                                                "Brake Caliper left",
                                                                "Brake Caliper right",
                                                                "Brake Master Cylinder right");
    // Array of part prices.
    var partPrice = new Array(null,
                                                                  149.95,
                                                                  145.95,
                                                                  98.95,
                                                                  10.95,
                                                                  5.95,
                                                                  69.95,
                                                                  109.95,
                                                                  59.95,
                                                                  59.95,
                                                                  49.95);
    // Populate the part number Drop-down List.
    function populatePartNo(dropdownField)
          var i;
          for (i=0; i < partNo.length; i++)
             dropdownField.addItem(partNo[i]);
    // Populate the description and unit price fields.
    function getDesc(partNumber, descField, itemPrice)   -------------Where are these items/fields, defined or located. ?
       var i;
       for (i = 0; i < partNo.length; i++)                    // Go through the entire list of part numbers to find the one that is currently selected.
          if (partNo[i] == partNumber)                              // When we find the part number currently selected.
            descField.rawValue = partDesc[i];          // Put the description in the description field
                  itemPrice.rawValue = partPrice[i];          // and put the unit price in the unit price field.
                  break;                                                                                // No need to go further if there is a match.

    Hi Dave,
    Just to recap:
    There is script in the change event of the dropdown that calls the getDesc() function:
    // Populate the description and the unit price when we change the part number.
    partNoScript.getDesc(xfa.event.newText, txtDescription, numUnitPrice);
    This passes three parameters into the function:
    xfa.event.newText is the new item in the list that the user has just selected.
    txtDescription is the name of the Description object in the same Row that the user has selected from the dropdown.
    numUnitPrice is the name of the Unit Price object in the same Row that the user has selected from the dropdown.
    So the function is going to be receiving three pieces of information: the new value of the dropdown; the object deference for Description; and the object reference for Unit Price.
    Now if we look at the first line of the function:
    function getDesc(partNumber, descField, itemPrice)
    You can see that the function assigns the incoming parameters to new variables: partNumber; descField; and itemPrice. These variables only live within the function.
    For the purpose of the script in the function:
    partNumber = the value of the txtPartNum dropdown.
    descField = the object reference for the txtDesciption object in the Row that called the function.
    itemPrice = the object reference for the numUnitPrice object in the Row that called the function.
    Passing the value of the dropdown into the function is fairly straightforward (txtPartNum/partNumber). The clever bit is passing the object reference for the other objects in the Row into the function (eg txtDescription/descField).
    The script in the function includes a loop, which looks at the array. If the selected part number is in the array, then it sets the value of the txtDescription object in the same Row, by referencing the descField variable:
    descField.rawValue = partDesc[i];
    Does that make sense?
    In relation to the dropdowns:
    You can access the scripts in the Script Editor (5), including enter event, exit event, etc.
    You can access most of the dropdown properties in the various palettes (6).
    Hope that helps,
    Niall

  • Need help with ext. SWF and XML

    I'm trying to create an External SWF to load into my main
    site (photography).
    Home | Portfolio | Published Work | Bio | Contact
    The SWF I want to load externally is Portfolio because it has
    5 sections
    Those 5 sections are:
    -Editorial
    -Adventure
    -Fly Fishing
    -Multimedia
    -Weddings
    I'm looking to keep this dynamic as possible, but I'm one of
    those guys who doesn't write code from scratch, but knows AS well
    enough to modify a base or a generic template if ever given. It
    would be easier to use one subsection as an example, which could be
    applied to all others.
    e.g. "Fly Fishing" 1-Main container; 5-10 thumbnails (1
    dyanamic thumbnailcontainer)
    - I don't know XML (but can modify it). basically having an
    ID tag for each image, possibly dynamically generate a thumbnail
    too. Also have a spot for dynamic text to load in (captions with
    multiple text lines for images upon onRelease - maybe this could be
    it's own MC that loads on top of the main photo container)
    - on (release) on a thumbnail: there would be a little
    information icon that would appear. If you mouse over, it would
    overlay a layer over that specific ID photo, and the text appear.
    RollOut it would fade out the layer above that specific ID photo.
    - Transition: FadeOut/Blur/Exposure Blur, something
    interesting to that nature.
    - Thumbnails: is it just easier to create thumbnail images
    manually, and just create a separate container?
    - Image folders: I would imagine each section would have
    it's own watch folder. For example "Fly Fishing" would be a folder
    "/swfImg_flyFishing/", but perhaps having one XML file.
    - XML file details
    id
    location
    caption summary
    title
    As you can see, if I had one template to build off of, I
    could repeat it self for the others. I need help and if there is a
    flash component (free or purchase) that does at least 70% of what I
    need, please share information. thank you!Portfolio

    I know doing a pushback to the client requires Flex Data
    Services, but since I don't use FDS I can't tell you exactly how.
    But look in the documentation about "pushing" data to the client.
    Once you've figured out how to do that, you can trigger that push
    once you've finished editing the xml file. You may want to ask over
    in the FDS forum.

  • Need help with query for converting columns to rows

    Hello,
    I know this is a very common question asked in the forum. I have searched regading this, i did find some threads, but i was not able to achieve what i require from the answers posted. So anybody please help me.
    I have a table which is having multiple columns as follows:
    Insert into table_1 (X,Y,Z,A,B,C,D,E,F,G,H,I) values (0,0,2,0,0,1,3,0,0,0,0,0);I want to convert the result into a two column, multiple rows i.e., I want the result as follows:
    Col1 Col2
    X      0
    Y     0
    Z      2
    A     0
    B     0
    C     1
    D     3
    E     0
    F     0
    G     0
    H     0
    I      0Please anybody help me in writing the query for this..

    Is this what you are expecting:
    SQL> WITH T AS
      2  (
      3  SELECT 0 X, 0 Y, 2 Z, 0 A, 0 B, 1 C, 3 D, 0 E, 0 F, 0 G, 0 H, 0 I FROM DUAL
      4  )
      5  SELECT  'X' col1, X col2 FROM T
      6  UNION ALL
      7  SELECT  'Y' col1, Y col2 FROM T
      8  UNION ALL
      9  SELECT  'Z' col1, Z col2 FROM T
    10  UNION ALL
    11  SELECT  'A' col1, A col2 FROM T
    12  UNION ALL
    13  SELECT  'B' col1, B col2 FROM T
    14  UNION ALL
    15  SELECT  'C' col1, C col2 FROM T
    16  UNION ALL
    17  SELECT  'D' col1, D col2 FROM T
    18  UNION ALL
    19  SELECT  'E' col1, E col2 FROM T
    20  UNION ALL
    21  SELECT  'F' col1, F col2 FROM T
    22  UNION ALL
    23  SELECT  'G' col1, G col2 FROM T
    24  UNION ALL
    25  SELECT  'H' col1, H col2 FROM T
    26  UNION ALL
    27  SELECT  'I' col1, I col2 FROM T
    28  /
    C       COL2                                                                   
    X          0                                                                   
    Y          0                                                                   
    Z          2                                                                   
    A          0                                                                   
    B          0                                                                   
    C          1                                                                   
    D          3                                                                   
    E          0                                                                   
    F          0                                                                   
    G          0                                                                   
    H          0                                                                   
    C       COL2                                                                   
    I          0                                                                   
    12 rows selected.

  • Help with sample schema

    Hello. I am reading a self teaching guide called databases demystified by andy oppel. In the book it says that a sample hr schema is used to demonstrate sql. It then leads the reader to download a free trial version of oracle personal edition from otn.oracle.com. In the sample the release that is being used is 9.2.0.10 it says that once opend to go to orahome92............I am a novice user and tried to download this and it did not work. I have tried to install this many times. Is there something that I am misssing. I read something about metalink. I do not have access to that so how can I use the sample download. Im sure that he would not put that download in the book if it was not readily availible to all to use. Could someone please help me with this. Do I need something special on my computer to make it work properly? Im using a reg household computer to study with and it is running one xp. Thanks

    First of all, metalink is a paid oracle support site. Unless you dont have support from oracle, you can't access it.
    Secondly, you can simply download the oracle software either 9i or 10g from the following link.
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Once you install oracle software and then create database (if you are creating database through wizard, using database configuration assistant, you will have all example schemas, like HR and other). You can also find scripts to create sample schema on the following directory structure:
    oracle\ora92\demo\schema
    Jaffar

  • Help with combination of Ring,Control and String Indicator

    I have a simple task to perform, but I do not know if it is possible or not. I have the list of names in a ring, and I have a digital control that I want to change for each person. The names and person must be displayed on a string. I have attached a picture jof what I want .
    Also, whenever the user changes the value of the ring, the digital control must correspond to the value of the name or defualt of zero.
    Attachments:
    string and ring.jpg ‏86 KB

    I'm not quite sure what you want to do.  It should be a matter of using the ring Properties to get the name.  Sample code (LabVIEW 8.5.1) attached that should help you on your way.
    Attachments:
    RingAndString.vi ‏18 KB

  • FDS Test Drive - help with sample apps

    I'm trying to use the FDS 30 Minute TestDrive sample apps
    inside
    Flex Builder. I downloaded the test drive and all the samples
    work
    just dandy fine, and I can view the source etc. So I wanted
    to load
    some of the sample apps into Flex Builder so that I could
    modify and
    play with them with the debugger so as to learn more.
    I've tried the following:
    create New Project - use Flex Data Services/compile app
    locally
    Root Folder: C:\fds-tomcat\webapps\ROOT
    Root URL:
    http://localhost:8600/ROOT.
    When I click Finish, I get the
    following 3 errors in the Output panel:
    unable to load SWC fds.swc: multiple points
    unable to load SWC fds.swc: multiple points
    The definition of base class Locale was not found
    Could not resolve<mx:Application> to a component
    implementaion
    I am on Flex 2.0.143459.
    I've verified that fds.swc is indeed in the
    C:\fds-tomcat\webapps\ROOT\WEB-INF\flex\libs folder.
    I don't know what the other messages mean or what to do.
    I then stubbornly unzipped one of the sample apps into the
    FlexBuilder project folder (which I named FDS TestDrive
    Samples) and
    tried to run it anyway to see if I could get more info. I
    then get
    a browser window with the following additional errors:
    type Status report
    message /ROOT/FDS%20TestDrive%20Samples/Chat.html
    description The requested resource (/ROOT/FDS%20TestDrive%
    20Samples/Chat.html) is not available.
    So I guess one problem is that it is not making an html
    document.
    But I don't know how to correct that.
    I have no idea what to do. Any help would be GREATLY
    appreciated.

    Someone helped me offlist with this after I got frustrated
    that this forum is essentially dead. But in case anyone else needs
    this info, I thought I'd post. First you need to be on Flex version
    2.0.155577. So I had to redownload all of Flex, uninstall my older
    version, install the new version. Then I did the following
    to create the Flex Builder project for the dashboard sample
    app:
    File - > New -> Flex Project
    Select Flex Data Services
    Select Compile application locally
    Click Next
    Deselect "Use default local Flex Data Services Location"
    Click Browse... and open c:\fds-tomcat\webapps\ROOT
    Root URL:
    http://localhost:8600/
    Context root: /
    Click Next
    Project name: <Whatever you want to name it>;
    Deselect "Use default location"
    Folder: c:\fds-tomcat\webapps\ROOT\dashboard
    Click Next
    Main application file: dashboard.mxml
    Click Finish
    The Context root was really key. Also, to get my old projects
    back into Flex, I used file:import and then had to do a little
    additional fiddling with some of the projects' properties.
    Too bad this Forum is so dead. I've tried to get feedback to
    Adobe about that concern, but so far it hasn't helped. sigh

  • Help With wscompile On A config.xml

    Hello,
    I'm a newbie to Jax-rpc, so please bear with I'm having
    difficulties compiling this config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <service name="GetTenQService"
    targetNamespace="http://localhost/getTenQ.wsdl"
    typeNamespace="http://localhost/getTenQ/types"
    packageName="getTenQ">
    <interface name="getTenQ.JaxRpcGetTenqI"
    servantName="getTenQ.JaxRpcGetTenqImpl"/>
    </service>
    </configuration>
    I tried running >wscompile.sh -gen:both -keep -d classout -model wscmodel.xml.gz config.xml
    and I'm seeing the following error message:
    error: RmiModeler error: java.lang.ClassNotFoundException: getTenQ$JaxRpcGetTenqI
    What am I doing wrong? Any info would be appreciated.
    A.
    P.S Where are the docs for coding the config.xml
    and jaxrpc-ri.xml?

    Thanks for the reply. I was already specifying the
    -cp or -classpath. Turns out when using either
    option they need to be the first arg passed to
    wscompile

  • Help with a store function that takes string array

    Hi All,
    I have a function that takes in two string arrays, status_array, and gender_array. You can see the partial code below. Somehow if the value for the string array is null, the code doesn't execute properly. It should return all employees, but instead it returns nothing. Any thoughts? THANKS.
    for iii in 1 .. status_array.count loop
    v_a_list := v_a_list || '''' || status_array(iii) || ''',';
    end loop;
    v_a_list := substr(v_a_list, 1, length(trim(v_a_list)) - 1);
    for iii in 1 .. gender_array.count loop
    v_b_list := v_b_list || '''' || gender_array(iii) || ''',';
    end loop;
    v_b_list := substr(v_b_list, 1, length(trim(v_b_list)) - 1);
    IF v_a_list IS NOT NULL and v_b_list IS NOT NULL THEN
    v_sql_stmt := 'select distinct full_name from t_employee where status in (' || v_a_list || ') and gender in (' || v_b_list || ')';
    ELSIF v_a_list IS NOT NULL and v_b_list IS NULL THEN
    v_sql_stmt := 'select distinct full_name from t_employee where status in (' || v_a_list || ') ';
    ELSIF v_a_list IS NULL and v_b_list is not null THEN
    v_sql_stmt := 'select distinct full_name from t_employee where gender in (' || v_b_list || ')';
    ELSE
    v_sql_stmt := 'select distinct full_name from t_employee';
    END IF;
    OPEN v_fullname_list FOR v_sql_stmt;
    RETURN v_fullname_list;

    I'd first recommend trying to avoid the dynamic sql.
    use an approach like
    [http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:210612357425] or
    [http://stackoverflow.com/questions/1625649/oracle-parameters-with-in-statement/1655743#1655743] or [http://stackoverflow.com/questions/1715978/how-to-use-an-oracle-associative-array-in-a-sql-query]
    but if that isn't in scope, do a
    dbms_output.putline(v_a_list) ;
    dbms_output.putline(v_b_list) ;
    dbms_output.putline(v_sql_stmt) ;around and see what it emits

  • Help with raw images converted to jpegs on mac

    Hello there. I recently took some photos with my nikon in the raw format by accident and had my brother convert them into jpegs. After trying to upload the images to iphoto, the images aren't there. My brother said I would have to look them up in "my computer" and then I would be able to view them.  I can do this with my old computer but can't seem to find anywhere on my mac where I can look up "my computer" and open the files on my sd card which I thought would be called Drive(e) or mass storage device. I have been impressed with the iphoto capabilities and would love to view the images I took of Hanging Lake in Colorado. Thank you for your time.
    Dwayne Sparks

    There is no "uploading" to iPhoto - you must Import photos to iPhoto
    Exactly what did you do and what issues are you having?
    As with any photo (supported RAW or JPEG) you simply import them into iPhoto and use iPhoto to manage them and access them by the normal iPhoto access methods - <a href="http://web.me.com/larryhn/iPhoto_08_(version_7.x.x)_FAQ/Accessing_iPhoto_Photos. html"> click here for a discussion on the many correct and safe ways to access your iPhoto library photos.</a>
    LN

Maybe you are looking for

  • SQL 2005 Setup on Win7 Ultimate [No SQL Services after installation]

    Win 7 Ultimate (64bit) 4GB RAM New installation of Win 7 Ultimate Re-installation of SQL: Originally SQLExpress which didn't work out so I went to SQL2005 Standard Edition SP1 & updated to SQL2005 SP4.  I installed Visual Studio 2005 during the SP1 i

  • Field REBZG in FI tables

    Hi, We see that field REBZG in table BSAD, which is most of the times empty, sometimes it gets updated with either letter ‘V’ or with the FI document number. In which cases the field is filled with the FI document and why ( related to clearing docume

  • OER Atrifacts Store Setup and Configuration for CVS.

    Hello, My question is related to proper configuration of a CVS based Artifact Store in Oracle Enterprise Repository. I've attempted to configure a CVS Artifact Store from within OER's Asset Editor (as described on page 27 of the OER Configuration Gui

  • Ipad disabled - please help

    I have a new ipad air, i used it for a few hours and switched off, now it is asking for the security number which i didn't set up for it? i tried the security code that i use for my iphone but its not that now my ipad just says ipad is disabled, it h

  • What are my options to transfer photos from my ipad to my mac that are over the 30 day icloud limit?

    What are my options to transfer photos from my ipad to my mac that are over the 30 day icloud limit?