Making file desin with elements and attributes implementation

hello
this is an FILE to IDOC
I have an xml file that need to be enter to the XI. the XML has attributes and elements.
I would like to know how can I make an element with some attributes and below there should be a subelement.
for example, in delivery there will be all the attributes, and I would like to make it an array so there will be below subelemnt in the name of carrier for example.
(if any one has other ways to implement this file feel free to suggest.)
- <delivery number="1234567890" shipment-type="Y014" shipping-point="1910" ifm-reference="125" status="final">
- <!-- status initial, change or final
  -->
  <carrier>123456</carrier>
- <!--  This will be the SAP vendor code
  -->
  <scheduled-departure>200810011000</scheduled-departure>
- <!--  Precalculated departure date and time format YYYYMMDDHH24MI
  -->
  <scheduled-arrival>200810031600</scheduled-arrival>
- <!--  Precalculated delivery date and time
  -->
  <actual-departure>200810011015</actual-departure>
- <!--  Actual departure reported by carrier
  -->
  <actual-arrival>200810031545</actual-arrival>
- <!--  Actual arrival reported by carrier
  -->
  </delivery>

>>that what I thought, but after I do the attributes for the element, I dont have the option to write for the element sub-element.
I guess the current row that is selected would be an attribute thus the option insert subelement is disabled. Always select the element and insert either attribute or subelement to it.
Thanks
SaNv...

Similar Messages

  • Generate XML file with Elements and attributes from Oracle table

    Hi,
    I have the following table structure.
    CREATE TABLE COIL
    COIL_ID                         NUMBER(10),
    COIL_NUMBER                    VARCHAR2(40),
    COIL_PO_OPERATING_UNIT     VARCHAR2(20),
    COIL_PO_NUMBER               VARCHAR2(40),
    MILL_NUMBER                    VARCHAR2(2),
    MILL_COIL_STATUS          VARCHAR2(15),
    ITEM_NUMBER                    VARCHAR2(40),
    COIL_WEIGHT                    NUMBER(38),
    WEIGHT_UOM                    VARCHAR2(10),
    DOCUMENT_NUMBER               VARCHAR2(40),
    DOCUMENT_DATE               DATE,
    DOCUMENT_STATUS               VARCHAR2(15),
    DOCUMENT_TYPE               VARCHAR2(20),
    DOCUMENT_SOURCE               VARCHAR2(20),
    TEST_ID                         NUMBER(38),
    VALUE                         NUMBER,
    TEST_UOM                    VARCHAR2(20),
    TEST_STATUS               VARCHAR2(70),
    TESTER_LOGIN               VARCHAR2(20),
    EQUIPMENT_CODE               VARCHAR2(50),
    DOC_STS_MSG               VARCHAR2(600)
    For each COILID record, there could be multiple records baased on TEST_ID/VALUE/TEST_UOM etc.
    And I would like to prepare xml file in the following format by selecting data from COIL?
    <?xml version="1.0"?>
    -<Coil xsi:noNamespaceSchemaLocation="www.tempel.com/COIL.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xdb="http://xmlns.oracle.com/xdb">
    <CoilId>1419532</CoilId>
    <CoilNo>D2221050010A0</CoilNo>
    <CoilPOOperatingUnit>Changzhou</CoilPOOperatingUnit>
    <CoilPONo>4619</CoilPONo>
    <MillNo>86</MillNo>
    <MillCoilStatus>Test</MillCoilStatus>
    <ItemNo>050FP800 C5</ItemNo>
    <Weight>7076</Weight>
    <UOM>KILOGRAM</UOM>
    <DocumentNo>0</DocumentNo>
    <DocumentDate>2013-01-11</DocumentDate>
    <DocumentStatus>NonProcessed</DocumentStatus>
    <DocumentType>Tests</DocumentType>
    <DocumentSource>CHIGMA1</DocumentSource>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.4992" TestUnit="mm" Status="NonProcessed" TestId="135"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.0128" TestUnit="mm" Status="NonProcessed" TestId="124"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="12" TestUnit="mm" Status="NonProcessed" TestId="125"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.5095" TestUnit="mm" Status="NonProcessed" TestId="127"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.5042" TestUnit="mm" Status="NonProcessed" TestId="128"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.5058" TestUnit="mm" Status="NonProcessed" TestId="129"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.4967" TestUnit="mm" Status="NonProcessed" TestId="130"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.5049" TestUnit="mm" Status="NonProcessed" TestId="131"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.4972" TestUnit="mm" Status="NonProcessed" TestId="132"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.4960" TestUnit="mm" Status="NonProcessed" TestId="133"/>
    <Tests DocStsMsg="0" EquipmentCode="CHIGMA1" TesterLogin="dpkrueger" Value="0.4996" TestUnit="mm" Status="NonProcessed" TestId="134"/>
    </Coil>
    Can you please guide me how to do it in a single query?
    Thanks in advance.

    Hi Odie,
    Thanks for the quick offer.Sure,No problem.I expect the format to be as follows
    <Coil xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="www.tempel.com/COIL.xsd">
    <CoilId>97239</CoilId>
    <CoilNo>777078</CoilNo>
    <CoilPOOperatingUnit>TSUSA</CoilPOOperatingUnit>
    <CoilPONo>3407</CoilPONo>
    <MillNo>31</MillNo>
    <MillCoilStatus>Test</MillCoilStatus>
    <ItemNo>0140SP150 C5A</ItemNo>
    <Weight>17365</Weight>
    <UOM>POUNDS</UOM>
    <DocumentNo>0</DocumentNo>
    <DocumentDate>2008-10-13</DocumentDate>
    <DocumentStatus>Processed</DocumentStatus>
    <DocumentType>Tests</DocumentType>
    <DocumentSource>MILL</DocumentSource>
    <Tests EquipmentCode="MILLEDI" TesterLogin="MILLEDI" Value="84" TestUnit="15T" Status="Processed" TestId="65"></Tests>
    <Tests EquipmentCode="MILLEDI" TesterLogin="MILLEDI" Value="1.39" TestUnit="W/Lb" Status="Processed" TestId="48"></Tests>
    <Tests EquipmentCode="MILLEDI" TesterLogin="MILLEDI" Value="1979" TestUnit="W/Lb" Status="Processed" TestId="49"></Tests>
    </Coil>
    But instead it came with below format
    <Coil xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSch
    emaLocation="www.tempel.com/COIL.xsd"><CoilId>97239</CoilId><CoilNo>777078</Co
    ilNo><CoilPOOperatingUnit>TSUSA</CoilPOOperatingUnit><CoilPONo>3407</CoilPONo>
    <MillNo>31</MillNo><MillCoilStatus>Test</MillCoilStatus><ItemNo>0140SP150 C5A<
    /ItemNo><Weight>17365</Weight><UOM>POUNDS</UOM><DocumentNo>0</DocumentNo><Docu
    mentDate>2008-10-13</DocumentDate><DocumentStatus>Processed</DocumentStatus><Do
    cumentType>Tests</DocumentType><DocumentSource>MILL</DocumentSource><Tests Equ
    ipmentCode="MILLEDI" TesterLogin="MILLEDI" Value="84" TestUnit="15T" Status="P
    rocessed" TestId="65"></Tests><Tests EquipmentCode="MILLEDI" TesterLogin="MILL
    EDI" Value="1.39" TestUnit="W/Lb" St atus="Processed" TestId="48"></Tests><Tes
    ts EquipmentCode="MILLEDI" TesterLog in="MILLEDI" Value="1979" TestUnit="W/Lb"
    Status="Processed" TestId="49"></Tests></Coil>
    The sample insert records are as follows
    insert into COIL (coil_id, coil_number, coil_po_operating_unit, coil_po_number, mill_number, mill_coil_status, item_number, coil_weight, weight_uom, document_number, document_date, document_status, document_type, document_source, test_id, value, test_uom, test_status, tester_login, equipment_code, doc_sts_msg)
    values (97239, '777078', 'USA', '3407', '31', 'Test', '0140SP150 C5A', 17365, 'POUNDS', '0', to_date('13-10-2008', 'dd-mm-yyyy'), 'Processed', 'Tests', 'MILL', 65, 84, '15T', 'Processed', 'MILLEDI', 'MILLEDI', null);
    insert into COIL (coil_id, coil_number, coil_po_operating_unit, coil_po_number, mill_number, mill_coil_status, item_number, coil_weight, weight_uom, document_number, document_date, document_status, document_type, document_source, test_id, value, test_uom, test_status, tester_login, equipment_code, doc_sts_msg)
    values (97239, '777078', 'USA', '3407', '31', 'Test', '0140SP150 C5A', 17365, 'POUNDS', '0', to_date('13-10-2008', 'dd-mm-yyyy'), 'Processed', 'Tests', 'MILL', 48, 1.39, 'W/Lb', 'Processed', 'MILLEDI', 'MILLEDI', null);
    insert into COIL (coil_id, coil_number, coil_po_operating_unit, coil_po_number, mill_number, mill_coil_status, item_number, coil_weight, weight_uom, document_number, document_date, document_status, document_type, document_source, test_id, value, test_uom, test_status, tester_login, equipment_code, doc_sts_msg)
    values (97239, '777078', 'USA', '3407', '31', 'Test', '0140SP150 C5A', 17365, 'POUNDS', '0', to_date('13-10-2008', 'dd-mm-yyyy'), 'Processed', 'Tests', 'MILL', 49, 1979, 'W/Lb', 'Processed', 'MILLEDI', 'MILLEDI', null);
    commit;
    Thanks in Advance.

  • Check Required Elements and Attributes in JAXB

    Hi
    I need check required elements and attributes in JAXB java classes , if there are any value for them place it , otherwise place default value in xml file , because of it I upgrade JAXB2.0 to JAXB 2.1 to support "required" in "XmlElement" , I read in "JavaWS(JAXB)Tutorial.pdf" that JAXB itself check required elements and attributes , if there are any value for them place it , otherwise place default value in xml file , the exact part of document is :
    << A property is said to have a set value if that value was assigned to it during unmarshalling or by invoking its mutation method. The value of a property is
    its set value, if defined; otherwise, it is the property’s schema specified default value, if any; otherwise, it is the default initial value for the property’s base type as it would be assigned for an uninitialized field within a Java class. >>
    I want to know , dose JAXB do this task ? (now I work with JAXB2.1 but it doesnt do this task.Maybe I must set some configuration)
    and if JAXB doesnt do it , how I can check required elements and attributes in JAXB ?
    Please help me.
    Shariat

    its all on Apple's Developer site
    http://developer.apple.com/DOCUMENTATION/AppleApplications/Reference/FinalCutPro _XML/index.html

  • Parsing (COunting Elements and Attributes)

    Can anyone point me to the method sfor counting elements and attributes in a parsed XML document. For example, I have a XML document that contains a number of 'word' files, I need to produce a printout that gives the total number. The files have a size attribute and I need to calculate and printout the total size of all the files together

    ChuckBing,
    Thanks for the pointers. I now have the following method:
    }  public void startElement(String elementName, AttributeList al) throws SAXException
          String attributeValue;
          if (elementName.equals("PRICE"))
          if(al.getLength()>0)
          for(int j = 0;j<al.getLength();j++)
            attributeValue = al.getValue(j);
            System.out.println("Total Attribute value is " + attributeValue);
          }This obviously allows me to extract the detail from "PRICE" but "PRICE" actually has two attributes. I can't find another method that allows me to extract out the detail for a specific attribute.
    Can you suggest anything?

  • I am making an album with Snapfish and would like to download ome of my photos from iphoto to snapfish, is this possible?

    I am making an album with Snapfish and would like to download some of my photos from iphoto to Snapfish, is this possible?

    You mean "upload"?
    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • How to remove duplicate photos with Elements and Revel?

    While on vacation this year, I uploaded pictures from my camera to my iPad to Revel.  When I got home, I copied all of the pictures from my camera to my harddrive on my laptop and imported them into Elements 12.  On my laptop I store photos in subdirectories like this:  \Lisa\albums\Pictures201509.  I found duplicates of most of my photos in \Users\Owner\My Pictures\Adobe\Revel\My Catalog Old.  I would like to clean these up so I only have once copy of each photo on my harddrive.
    I have 3 questions:
    Why did this happen?
    How can I clean this up and not complete mess up my Elements and Revel catalogs?
    How can I prevent this in the future?
    thanks,
    Lisa

    The folks at www.overmacs.com/photosweeper told me that they are upgrading their product so it will work with Apple Photos.  It works now with iPhoto and Aperture.  It has many adjustments to detect same name files, and even same or similar content images.  Monitor their website for a future release.  There is a small fee for the pro version, which is well worth the price.

  • Photo file issues with iWeb and Aperture....also too much duplicating!!

    A little background, before I get into my iWeb issue.....
    Years ago I tried iPhoto, but I didn't like how it duplicated all my photo files and I wasn't very fond of the file structure it created. Years later (last month) I got Aperture. Aperture (still has a long way to go) also duplicates all your files and places them in their own file structure. If I can get along with Aperture (and if it will get along with my other programs), I won't mind putting all my files into the file structure it creates. But for now, I still have my original files in the original file structure I have had for many years as a back up.
    On to my issue with iWeb and Aperture....
    To add photos to iWeb, you can either go into the iWeb media center or you can drag and drop photos from other locations.
    1st: iWeb media center
    To get my photos into the media center, I would have to load them into iPhoto (iP 6 does allow you to keep your original file structure, but it still creates .jpg files, which fills up your hard-drive. More duplicates I don't need or want). So that is out for me. iP6 will let you view and use your Raw files.
    Another way is to drag and drop your file structure directly into the media center window. I don't think this duplicates any files (at least I haven't been able to find any), but it takes an awfully long time to thumbnail all your photos (several hours and still waiting for 22K + files). Also, it won't show any Raw files. Again, out for me.
    Aperture won't let you drag and drop its library into the media center at all. So if I was to move all my files into the Aperture Library, I wouldn't be able to access them for iWeb at all.....Out for me.
    2nd: Drag and Drop
    I was able to drag and drop Raw files directly into iWeb from C1 Pro, Adobe Bridge and Adobe Lightroom.
    As I said before, I am trying to move over to Aperture. However, Aperture won't let me drag and drop photos. What is the deal here??? These are both Apple programs and they won't play nice with each other. Very annoying.
    Anyway, I put a link below to my iWeb test webpage I made. All the photos were Raw files that I did a drag and drop from C1 Pro, Adobe Bridge and Lightroom. There were no problems with the publishing.
    http://web.mac.com/phil_navarro/iWeb/Site%202/Drag%20and%20Drop%20test.html
    So, does anyone know if they can get photos from Aperture to work?? Thanks for any responses.
    Phil
    G5 Desktop   Mac OS X (10.4.4)  

    Jedi,
    Perhaps you are right.
    I am not a web developer and I will never be. I don't feel like spending countless hours learning how to use Dreamweaver or some other Pro web app. iWeb looked like a way to start making websites of my photos for my friends and family (much easier and better than Home Page on .Mac). All I was asking was for a way to drag and drop my photos (especially Raw files) with Aperture. Which I can do with Lightroom, Adobe Bridge and C1 Pro, and without using iPhoto.
    I am not a Pro photographer either, but I purchased Aperture based on what was advertised on the Apple website. From that ad, Aperture fit my photo needs almost to a tee. I am looking to adjust Raw files, Crop, Archive and keep my use of Hard Disk space down to a minimum. I can use Photoshop for the other 5% of things I do. However, Aperture has some issues (if you own it, then you already know. If you don't, you can read the Aperture Forum) This is one of the reasons I never went to iPhoto for archiving. I didn't like the way it duplicated all my files, taking up more disk space and its file structure. So even though Aperture won't play nice with other programs, I was surprised that it wouldn't play nice with any Apple programs.
    After reading your post and based on what you are saying, everyone either needs to have/learn/use Pro apps only or have/learn/use iApps only. Don't Cross the Streams!!
    I guess that means Apple will need to fix DVD Studio Pro. It uses photos that are in your iPhoto library and music from iTunes (iApps in a Pro app??....for shame...."it was never intended"). Also, DVD SP won't read the Aperture library. Does that mean there are 3 platforms? Pro, iApp and Mediocre??
    Now I have 2 questions:
    1. Can someone please tell me which apps are Pro and iApp, or if there is Mediocre? I don't want to mix them up and "Cross the Streams".
    2. Again....is there anyway to use Aperture with iWeb?
    TIA,
    Narvon

  • Making custom icons with transparency, and Cover View mode

    I tried making a new icon for a folder, and transparency doesn't seem to be treated the same in Leopard as it was in Tiger.
    Trying to get an object to float onscreen, without a square white background, I tried pasting the following onto the folder's icon at the top of a Get Info window:
    1. one layer of a .psd file
    2. the image Saved For Web in Photoshop (as a GIF), open in Photoshop
    3. the same image saved as a .png, opened in Photoshop
    4. a Photoshop EPS with a clipping path, opened in Photoshop
    5. the GIF file opened in Preview
    6. the .png file opened in Preview
    the results:
    1. the transparency surrounding the object comes out as white
    2. a speckled, purple image with a white background
    3. the same as 2
    4. the same as 1
    5 and 6: the transparency seems to work: the icon on the
    Get Info window loses its white background and the icon floats correctly on the Desktop. But in Cover Flow viewing mode, it completely disappears.
    What am I missing? By the way, the icons for the image files, in Cover Flow, show the white background for the .psd and .png files, but not for the .gif, where the transparency shows correctly. The .gif's icon seems to show the image with a white background in List and Icon view, but only the generic GIF icon in Column view. This all seems strange to me.

    I think you probably discovered the Cover Flow Bug. See this thread and the older one referenced in it as well:
    http://discussions.apple.com/thread.jspa?messageID=6846850
    As for the rest, well, at least you can copy something with a transparency out of Preview and paste it as an icon. Preview and Photoshop seem to me to not play well together with transparencies. I've gotten some VERY strange looking things, going back and forth between them with pngs and tiffs. Don't use gifs, or eps files, but I did notice that Finder does a rotten job coping with Photoshop's alpha channel (especially weird since once upon a time it worked fine, ditto for being able to show thumbs for eps files).
    Francine
    Francine
    Schwieder

  • RAW file processing with Elements 9

    When I open a RAW image taken with a EOS 5D Mk III with Elements 9, I receive a message saying - cannot process file as it is the wrong file type?
    When I attempt to re-open the same file, I receive a message - Could not complete your request because of a program error
    The file size is 24 mb
    Any help wopuld be appreciated.
    Many thanks

    Hi,
    The 5D MK III is not supported by PSE 9. It requires ACR 6.7 or 7.1 which will not apply to PSE 9.
    You can either :-
    1) Update to a newer version of elements
    2) Use the Canon software to covert the raw files to TIF files and then import the TIF files
    3) Download and install the free Adobe DNG Converter. Convert the raw files to DNG files and then import the DNG files into elements.
    Brian

  • Printing problems with Elements and iPhoto on OSX 10.5.7

    I am having problems with printing photos on my printer (Canon iP4000) since getting the new iMac with OSX (10.5.7) and using Photoshop Elements 6 and iPhoto. The Canon printer driver (and all my other data) were copied to my Mac by the techs at the Apple store from which I purchased the iMac. (I previously had a Mac G4 with OSX 10.4.11 Panther.)
    Photos that used to come out crystal clear and brilliant on the printer from the G4, now are faint with kind of a white veil. When I try to print in Elements, I get a message that says "Some PostScript specific print settings (Interpolation, Calibration, Encoding) will be ignored since you are printing to a non-PostScript printer." I really have no idea what that means. Anybody?
    Text printing comes out fine, both from word processing documents and web pages. I am using the latest printer driver (4.8.3) for the iP4000 (probably 4 years old or so), and there are no new driver downloads available for it. I trashed the Canon software/drivers and reinstalled, to no avail.
    Canon Support has been helpful and have made many suggestions, but none has worked. I tried printing with Canon's EasyPhotoPrint app, and the photos print fine. So the problem appears to be a compatibility of the printer with Elements 6 and iPhoto.
    Has anyone else had this experience? Does anyone have an opinion if this means I need to get a new printer? If so, any suggestions on a good, moderately priced one for Leopard on the iMac that will definitely work with Elements 6 and iPhoto?

    The v4.8.3 driver she has is the latest version Canon has supplied.
    Given the driver is working okay from some other applications, there has to be something amiss with the colour management of iPhoto and PSE6.
    For iPhoto, as a test I would suggest the Color Options > Color Correction is set to None to see how this impacts the printed image. Then I would try the BJ Standard and ColrSync settings to see how the output is affected.
    During the Color Options trial, ensure the Quality & Media > Media Type is set to the appropriate paper type, such as Photo Paper and the Print Mode be set to Top Quality Photo. With regards to the Media Type setting, some of the paper stocks have a profile associated with them. If you use Photo paper but use the Plain setting, then you will get a washed out print.
    Pahu

  • Making a PDF with "Outline" and Bookmarks Using Pages

    Hi, I'm using Pages 1 and I have tried making a PDF with outline breaks but I failed. I thought using paragraph styles for my document would work but when I exported my document to PDF, all I got was a PDF that only has the thumbnails view but not the outline view. Also, when I exported my document that has bookmarks to PDF, all the bookmarks don't work anymore. How can I make a PDF document using Pages with all the bookmarks and the organization just like other PDFs that I encounter? Thanks

    Hello LadyinStilettos,
    welcome to the Pages Discussions. If I remember correct, in Pages 1.x there is no way to export text links to PDF. An outline view creation doesn't exist.
    If you want to have links in PDF (of the TOC, too), then you should upgrade to iWork'06. But outline view doesn't exist here like it doesn't in version 1.x.

  • File sharing with leopard and lion

    Can OS X Lion (10.7.5) able to file share with leopard OS X (10.5.8)?
    Kappy and I tried to get it to work with file sharing from my macbook air to g5-  vice versa
    Apparently finder wont work when we attempted to file share.

    Anyone???
    how do i get my friend to set up  to access my mac from other state on his mac??
    so he can access to my info anytime without asking me.
    how do i create user name and password for him?
    PLEASE PLEASE HELP!! ITS IMPORTANT!!!

  • Pdf files print with horizontal and vertical lines

    All of a sudden, today, when I print pdf files, they print with horizontal and vertical lines.  I thaught it was the computer or printer. So I printed from another computer on the network, and printed to a different printer with the same result.  It is not just that one pdf file either, I have tried multiple files.  HELP.  Does anyone have any ideas?

    It is not clear how you are creating the files. It appears that they were created by Distiller from PS files that were created in some way. I also noted that you are using AA8.1.0. You may want to try to update (do all the updates in order) as a possible fix. It may be in the creation process also. Several packages will split large graphics into parts and create the image. I think this is a characteristic of OFFICE 2007 (docx) files - but I am not sure yet. Tell us how you created the files - step by step, including the scan.
    If you have the original documents, why not simply print to the Adobe PDF printer. The result would be smaller and a lot cleaner.

  • Making a DVD with HD and SD assets

    How can I make a SD DVD with HD and SD assets and retain the highest quality on the HD material? I have tried mixing the short vidoes on an SD timeline in Final Cut Pro, then rendering out the HD and export using Best Quality 90 min DVD settings in Compressor. I then import that file into a DVDSP project, and then chapter out that track and make stories to create separate play buttons for each video and a Play All button as well. The quality of the HD material seems worse than that of the SD material. Any advice is much appreciated. Thanks. Robin.

    Do you know how to best compress HD for optimal play on standard DVD players?
    If I am just dealing with HD material, I will send out the timeline as a self-contained .mov in ProRes (I like self-contained, saves some time on re-encoding) then use Compressor to make a SD m2v. You can start with the preset but then go in and change the frame controls to “Better” and also change the encoding rate if there is room to increase the rate.
    Calculating rates [information here|http://dvdstepbystep.com/faqs_7.php]
    Can get very good results from HD material delivered as SD format.
    When mixing things, it becomes more challenging. Depending on the material (is most of the material HD or SD in original format, can they be edited separately or do they need to go from one to the other to make the movie, etc.) I may try various approaches. If the majority of the footage is HD, I may just go with an HD timeline (though the SD material will not look as good.)
    When you say the quality of the HD material is worse, what is worse? Given all things being equal, camera quality (in other words you are not using an extremely high end SD camera and a $300 consumer HD cam, one is really good lighting with little movement, while the other is high speed race cars in streelights at night) the HD footage shouldn't look worse than the SD material...

  • File association with JWS and windows

    Hi,
    We are moving all our applications over to JWS from install anywhere. One final hurdle we have is the requirement to associate a file extension with a given JWS application.
    e.g a double clicking a .foo file will launch JWS application MYJWSFooApp.
    As install anywhere defines the install directory and exe file this is possible. Has anyone managed it with JWS ?
    Thanks
    Chris

    Yes - you can do so with the new association feature in Java Web Start 1.5
    Basically you specific the file ext and/or mime-type that you want to associate with in the jnlp file; and when javawebstart launch the application, it will prompt you to see if you want to create the association.
    Refer to the JNLP spec changes in Java Web Start 1.5 for more details:
    http://jcp.org/aboutJava/communityprocess/maintenance/jsr056/jnlp_spec.html#4756982
    You can download J2SE 1.5-beta (which includes javawebstart) now and give it a try!
    http://java.sun.com/j2se/1.5.0/

Maybe you are looking for