Look  it........

I want to create a tree structure by the node of a xml..with the help of xslt..
how i will generate the node tree stucture display in a html???
anyone pls help me

as simple html that will come will script to
handle..the tree action..
means from xml node i just need to generate a html
with a navigator structure that will come from the
source xml ..and this generation will be by the help
of xslt.....that is how i know....and i don't know
how to do that....Where is your Java question? How does Java play into this?

Similar Messages

  • Movie rentals that I downloaded onto iMac with Lion to do not show up on ATV 2 in menu for computers.  Purchased movies show up just fine.  What to do or look for?

    I have an imac that is running lion and an Apple TV generation 2.  I have rented a movie from itunes and it shows up on my imac in Itunes under a rental icon, and will play fine on my computer.  However, it does not show up as choice to play on my apple tv.  I have homesharing enabled and everything else works fine including purchased movies that are on my imac, but no where does it show rental movies. 
    What do I look for?  What do I do to play the rental movie on my apple tv 2?

    Answer to my own question:
    Wait until the downloaded rental has completed its download to the imac.  This took a long time for me, since it was part of several things that I was downloading at the same time.
    Finally, it showed up on my apple tv.   Interestingly, I was able to watch much of the movie on my iMac before the movie finished its download and was available to the ATV 2.

  • HT1351 Some of the songs I bought from iTunes will not sync to my iPhone.  They show up on my phone, but the letters look faed and I can't play them.  How do I fix this?  I tried restoring my iPhone and it didn't work.

    Some of the songs I bought from iTunes will not sync to my iPhone.  They show up on my phone, but the letters look faed and I can't play them.  How do I fix this?  I tried restoring my iPhone and it didn't work.

    Sorry, I meant the letters look "faded" not faed.

  • Look Up - Important

    Hello,
    I am loading data from a DSO to Cube. While i do this i have to pick up two fields from another look up DSO and fill these fileds in the Cube fields along with source DSO fields for each record which are same structure.
    I have written some code but not working. Please correct it.
    DATA: LT1_ZCCCHP09 TYPE _ty_t_tg_1,  ( These are internal tables and work areas of result_package which is cube )
             LT2_ZCCCHP09 TYPE _ty_t_tg_1,
             LS1_ZCCCHP09 TYPE _ty_s_tg_1,
             LS2_ZCCCHP09 TYPE _ty_s_tg_1,
             /BIC/ZCCCHP205 TYPE /BIC/OIZCCCHP205.
       LT1_ZCCCHP09 = RESULT_PACKAGE.
       CLEAR: RESULT_PACKAGE[].
           LOOP AT LT1_ZCCCHP09 INTO LS1_ZCCCHP09.
           SELECT single /BIC/ZCCCHP205 /BIC/ZCCCHP206 /BIC/ZCCCHP207
          /BIC/ZCCCHP208 /BIC/ZCCCHP209 /BIC/ZCCCHP210 /BIC/ZCRCHA094
          /BIC/ZCRCHA089
               /BIC/ZCRCHA093 /BIC/ZCRCHA090 /BIC/ZCRCHA091 /BIC/ZPDCHA058
               /BIC/ZPDCHA061 /BIC/ZCCCHP211 /BIC/ZCCCHP212 ( Fields to be picked up from look up DSO /BIC/AZCCCHP0900 )
        FROM /BIC/AZCCCHP0900 INTO CORRESPONDING FIELDS OF  LS2_ZCCCHP09
        WHERE /BIC/ZCCCHP200 = LS1_ZCCCHP09-/BIC/ZCCCHP200.
             IF SY-SUBRC = 0.
             LS2_ZCCCHP09-/bic/ZCCCHP201 = LS1_ZCCCHP09-/bic/ZCCCHP201. ( These fields are source DSO fields to be filled along with above fields in each record )
             LS2_ZCCCHP09-/bic/ZCCCHP202 = LS1_ZCCCHP09-/bic/ZCCCHP202.
             LS2_ZCCCHP09-/bic/ZPDCHA077 = LS1_ZCCCHP09-/bic/ZPDCHA077.
             LS2_ZCCCHP09-/bic/ZCCCHP204 = LS1_ZCCCHP09-/bic/ZCCCHP204.
              LS2_ZCCCHP09-/bic/ZCCCHP203 = LS1_ZCCCHP09-/bic/ZCCCHP203.
              LS2_ZCCCHP09-/bic/ZCCCHP213 = LS1_ZCCCHP09-/bic/ZCCCHP213.
              LS2_ZCCCHP09-/bic/ZCCCHP214 = LS1_ZCCCHP09-/bic/ZCCCHP214.
              LS2_ZCCCHP09-/bic/ZCCCHP215 = LS1_ZCCCHP09-/bic/ZCCCHP215.
              LS2_ZCCCHP09-/bic/ZCCCHP216 = LS1_ZCCCHP09-/bic/ZCCCHP216.
              LS2_ZCCCHP09-/bic/ZCCCHP217 = LS1_ZCCCHP09-/bic/ZCCCHP217.
              LS2_ZCCCHP09-/bic/ZCCCHP218 = LS1_ZCCCHP09-/bic/ZCCCHP218.
             APPEND LS1_ZCCCHP09 TO RESULT_PACKAGE.
             ELSEIF
             SY-SUBRC NE 0.
             CONTINUE.
       ENDIF.
      ENDLOOP.
      CLEAR: LS1_ZCCCHP09, LS2_ZCCCHP09.
      REFRESH LT1_ZCCCHP09[].
    Edited by: Syed786 on Dec 4, 2009 12:23 PM

    Hi,
    Try with following code.
    DATA: LT1_ZCCCHP09 like line of RESULT_PACKAGE,  ( These are internal tables and work areas of result_package which is cube )
             LT2_ZCCCHP09 like line of RESULT_PACKAGE,
             LS2_ZCCCHP09 like line of RESULT_PACKAGE,
             /BIC/ZCCCHP205 TYPE /BIC/OIZCCCHP205.
    DATA: Declare  LS1_ZCCCHP09 itab with required fileds.
       if NOT RESULT_PACKAGE IS INITIAL.
           SELECT single /BIC/ZCCCHP205 /BIC/ZCCCHP206 /BIC/ZCCCHP207
          /BIC/ZCCCHP208 /BIC/ZCCCHP209 /BIC/ZCCCHP210 /BIC/ZCRCHA094
          /BIC/ZCRCHA089
               /BIC/ZCRCHA093 /BIC/ZCRCHA090 /BIC/ZCRCHA091 /BIC/ZPDCHA058
               /BIC/ZPDCHA061 /BIC/ZCCCHP211 /BIC/ZCCCHP212 ( Fields to be picked up from look up DSO /BIC/AZCCCHP0900 )
        FROM /BIC/AZCCCHP0900 INTO CORRESPONDING FIELDS OF  LS1_ZCCCHP09
        WHERE /BIC/ZCCCHP200 = LS1_ZCCCHP09-/BIC/ZCCCHP200.
    endif.
    loop at RESULT_PACKAGE into LS2_ZCCCHP09.
    read table LS1_ZCCCHP09 with key (give key filed names here).
             IF SY-SUBRC = 0.
             LS2_ZCCCHP09-/bic/ZCCCHP201 = LS1_ZCCCHP09-/bic/ZCCCHP201. ( These fields are source DSO fields to be filled along with above fields in each record )
             LS2_ZCCCHP09-/bic/ZCCCHP202 = LS1_ZCCCHP09-/bic/ZCCCHP202.
             LS2_ZCCCHP09-/bic/ZPDCHA077 = LS1_ZCCCHP09-/bic/ZPDCHA077.
             LS2_ZCCCHP09-/bic/ZCCCHP204 = LS1_ZCCCHP09-/bic/ZCCCHP204.
              LS2_ZCCCHP09-/bic/ZCCCHP203 = LS1_ZCCCHP09-/bic/ZCCCHP203.
              LS2_ZCCCHP09-/bic/ZCCCHP213 = LS1_ZCCCHP09-/bic/ZCCCHP213.
              LS2_ZCCCHP09-/bic/ZCCCHP214 = LS1_ZCCCHP09-/bic/ZCCCHP214.
              LS2_ZCCCHP09-/bic/ZCCCHP215 = LS1_ZCCCHP09-/bic/ZCCCHP215.
              LS2_ZCCCHP09-/bic/ZCCCHP216 = LS1_ZCCCHP09-/bic/ZCCCHP216.
              LS2_ZCCCHP09-/bic/ZCCCHP217 = LS1_ZCCCHP09-/bic/ZCCCHP217.
              LS2_ZCCCHP09-/bic/ZCCCHP218 = LS1_ZCCCHP09-/bic/ZCCCHP218.
             modify RESULT_PACKAGE from   LS2_ZCCCHP09.
             ELSEIF
             SY-SUBRC NE 0.
             CONTINUE.
       ENDIF.
      ENDLOOP.
      CLEAR: LS1_ZCCCHP09, LS2_ZCCCHP09.
      REFRESH LT1_ZCCCHP09[].

  • Previewing videos in Quick Look isn't the same in Snow Leopard.

    Does previewing videos on Quick Look in Mac OS 10.6 Snow Leopard no longer allows you to use the two finger gesture to move forward or backwards in the video, or is it just me?

    I can not do that either, then again, I never tried it in Leopard so... hope that helps

  • To Look for Invoice

    Hi Gurus,
    I have Purchase order Line Items with the Delivery Completed Indicator. Now i have to check whether the Invoice has been done for all these Purchase Order Line Items. Can anyone of u help me how to look at the closed invoices for this PO line Items. I can go and verify each line item right?? there is any Tcode in which if i enter the PO line items i shd get the Closed and Open Invoices.
    Plz help me out....
    Thanks
    Balaji

    Hi Bosss...
    Its a Valuable Info for me to clearly see the PO details in detailed view.
    One more doubt how i can lock all these POs at a MassChange. If i goto
    MEMASSPO can i achieve it ...if so which field i have to select since i am
    not able to see for Lock. The Purpose is i have select all the POs which has marked delivery indicator and for which invoice are cleared i should Lock them
    to avoid using them by the end users. To my knowledge POs can have masschange to Lock but SA doesnt have...........
    I am really greateful for ur help provided to me all the time .......i would like to get your email id..if u dont have any probs......If u wish u can send ur email id to my id [email protected] not to make it public.
    I wont trouble so much.........since these reports kind of issue  its my first time,
    thats why....._:)
    Waiting for your reply.....and once again thanks for the support
    Balaji

  • Need help to open and look for file by name

    Hi,
            Im needing help to open a folder and look for a file (.txt) on this directory by his name ... The user ll type the partial name of file , and i need look for this file on the folder , and delete it ....
    How can i look for the file by his name ?
    Thx =)

    Hi ,
        Sry ,, let me explain again ... I ll set the name of the files in the follow order ... Name_Serial_date_chanel.sxc ..
    The user ll type the serial that he wants delete ...
    I already figured out what i need guys .. thx for the help ^^
    I used List Directory on advanced IO , to list all .. the Name is the same for all ... then i used Name_ concateneted with Serial(typed)* .. this command serial* ll list all serials equal the typed , in my case , ll exist only one , cuz its a count this serial .Then i pass the path to the delete , and its done !
    Thx ^^

  • How to print a HTML file in browser look using DocPrintJob

    Hello guys,
    Does anyone know how to print HTML output/file into browser look?
    I'm using DocPrintJob and the DocFlavor set to DocFlavor.INPUT_STREAM.AUTOSENSE.
    posted below is my code :
    public class BasicPrint {
        public static void main(String[] args) {
            try {
                // Open the image file
                String testData = "C:/new_page_1.html";
                InputStream is = new BufferedInputStream(new FileInputStream(testData));
                DocFlavor flavor =  DocFlavor.INPUT_STREAM.AUTOSENSE;
                // Find the default service
                PrintService service = PrintServiceLookup.lookupDefaultPrintService();
                System.out.println(service);
                // Create the print job
                DocPrintJob job = service.createPrintJob();
                Doc doc= new SimpleDoc(is, flavor, null);
                // Monitor print job events; for the implementation of PrintJobWatcher,
                // see e702 Determining When a Print Job Has Finished
                PrintJobWatcher pjDone = new PrintJobWatcher(job);
                // Print it
                job.print(doc, null);
                // Wait for the print job to be done
                pjDone.waitForDone();
                // It is now safe to close the input stream
                is.close();
            } catch (PrintException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
        static class PrintJobWatcher {
            // true iff it is safe to close the print job's input stream
            boolean done = false;
            PrintJobWatcher(DocPrintJob job) {
                // Add a listener to the print job
                job.addPrintJobListener(new PrintJobAdapter() {
                    public void printJobCanceled(PrintJobEvent pje) {
                        allDone();
                    public void printJobCompleted(PrintJobEvent pje) {
                        allDone();
                    public void printJobFailed(PrintJobEvent pje) {
                        allDone();
                    public void printJobNoMoreEvents(PrintJobEvent pje) {
                        allDone();
                    void allDone() {
                        synchronized (PrintJobWatcher.this) {
                            done = true;
                            PrintJobWatcher.this.notify();
            public synchronized void waitForDone() {
                try {
                    while (!done) {
                        wait();
                } catch (InterruptedException e) {
    }the printed ouput for this code will be look like this
    <html>
    <body>
    <div style="page-break-after:'always';
                background-color:#EEEEEE;
                width:400;
                height:70">
         testPrint</div>
    ABCDEFGHIJK<p>
     </p>
    </body>
    </html>however, the output that i want is the HTML in browser look not HTML code itself.
    i've tried to change the DocFlavor into any TEXT_HTML type but it gives error:
    sun.print.PrintJobFlavorException: invalid flavor if you guys has any idea or solution, can you share with me... already search in Google but still not found any solution
    Thanks in advanced.

    hi,
    do the following
    URL url = null;
    try
         url = new URL("http://www.xyz.com");
    catch (MalformedURLException e)
          System.out.println("URL not correct " + e.toString());
    if (url != null)
           getAppletContext().showDocument(url,"_blank"); //shows the page in a new unnamed top level browser instance.
    }hope that helpz
    cheerz
    ynkrish

  • How I want to use iCloud + my PC, help/look for answers here

    Howdy all, I will be updating this if i manage to fix my problems
    So I love my iPad, and I will soon get an iphone. But regardless of those purchases, I still have a PC and I will continue using it.
    But I love my iPad as my main personal organizer, (contacts, calendar, etc). So I want to be able to use my iPad to update stuff and have my contacts, calendar, and purchases apply to my PC as well as my future iPhone. Since apple devices sync my easily, I decided to make this discussion to help others as well as my self set up apple to windows related things.
    And please, back up your device before anything, just incase.
    I am using:
    Windows 7 home edition 64bit
    iTunes 10
    iPad IOS 5
    Outlook 2010
    I don't think I have to list anything else, but if I do, just ask!
    So what I am trying to do -
    PLEASE TELL ME IF I AM WRONG, Thats the point me doing this
    Apps - This part is DONE
    http://support.apple.com/kb/PH1620?viewlocale=en_US
    So, you have to turn the MUSIC, APPs, BOOKS on through iTunes(PC) as well as your devices. So now, buying apps, as long as you devices/PC has your account logged in, it should apply my purchase to all of them at once.
    Book Marks- This part is DONE
    I like to use chrome. But to sync them together, I exported all of my Chrome bookmarks,  and shoved it into Safari, it seemed easier than using IE.
    I then synced my ipad's book marks into Safari. Now Safari, on my PC, contains ALL of my iPad and Chrome book marks. I then exported the bookmarks from safari and imported it into Chrome. A bit longer and annoying, but it worked.
    So from now on, all Chrome bookmarks on my PC will have to be added to Safari. And my iPad bookmarks, will require me to carry it from Safari to Chrome.
    Photos - This part is DONE
    So, in my own opinion, Photo stream is stupid.  All this is, is Dropbox for pictures.
    On a PC, after setting it up, it will give you a Photo Stream Folder. ANY pictures you put into Photo Stream Folder will be on photo stream and sync to all of your devices that have it turned on. But, in order to KEEP this picture, you must save each one or else it will auto delete in 30 days.
    But, any photo that you take SHOULD automatically download into your PC. Which will also require you to save the photos into a different folder.
    My boss at work figured this part out. IN ORDER TO ERASE photos off of photo stream, you will have to reset photo stream, which will kill the cloud distrubution of the pictures to each device, and erase those pictures on the cloud. Then you have to delete it off each device.
    We believe that apple will change this. I mean, its kind of pointless if you can erase the pictures.
    This part is where I had to use Outlook 2010.
    Please note, This is a brand new outlook, I do not care about anything previously inside and there is nothing for me to erase or lose
    eMails - This part is DONE
    So the point of this part is to sync your iPad mails with your Outlook 2010. I don't use this, because I still prefer to go to each of my 3 individual email accounts to send mail. If I were out and about, I would be accessing each email through the website or my iPad, so I do not see the point in setting up the email sync.
    But in order to use eMail, contact, calendar sync with Outlook, I had to make a default account. I HAVE NO CLUE what that means, but the error was this
    "Setup can not continue becuase outlook isnt configured to have a defualt profile. Check your outlook settings and try again."
    So find the settings a set a default account. IF you wanted to set the account to your @me.com account, then you will have to connect that email to outlook. But, it WONT WORK! I used these settings
    p99-imap.mail.me.com  > incoming
    p99-smtp.mail.me.com  > outgoing
    check remember password and SPA
    then go to "more settings" > "Advanced" tab and enter
    For IMAP  Port :"993" or just choose SSL from the encrytion dropdown
    For SMTP Port : "587" and choose Auto from the encrytion dropdown. (do not choose SSL)
    then goto outgoing server tab
    check first box ...SMTP
    Provided by https://discussions.apple.com/message/16351758#16351758
    Calendar - This part is PARTIALLY DONE
    My original Calendar was on Gmail, I synced my calendar from my gmail to my iPad. But with the new iCloud, I want it to all be on the cloud. I think I can sync the iCloud's calendar into outlook, but I cannot push my calendar from Outlook into iCloud.
    So ON my iPad, I did a list view, and clicked on each event (thank god I only had 6 months worth of stuff, and changed it from my gmail calendar to save onto my ipad. So then since the events are now saved onto my iPad, I pushed that into the iCloud.
    Now all that is left to do is to PUSH my iCloud Calendar into my Outlook. So then when I update stuff, it will show up on my PC.
    But with the iCloud Control Panel, I cannot sync my Calendar. I keep getting this error
    "Setup can not continue becuase outlook isnt configured to have a defualt profile. Check your outlook settings and try again."
    I have no clue what to do
    Contacts - This part is PARTIALLY DONE
    I am still working with this, but that error like the one above is still there as well.
    But with the iCloud Control Panel, I cannot sync my Calendar. I keep getting this error
    "Setup can not continue becuase outlook isnt configured to have a defualt profile. Check your outlook settings and try again."

    @Naiks, having suffered through unsuccessful synching attempts for Calendar and Contacts myself, l would suggest you try the following:
    UNINSTALL iCloud control panel from your PC. Seems silly, but do it.
    Go into Outlook, and look at the very top menu. Click FILE, then ACCOUNT SETTINGS, then click the popup box.
    You will see a list of all your email accounts. Make sure that ONE of them has a checkmark against it. If not, select the account your want as your default, and click "set as default.
    Exit out of Outlook and reboot your machine.
    Now reinstall iCloud, check CALENDAR and CONTACTS, and do as instructed when prompted.
    Reboot for good luck and now launch OUTLOOK. All that remains is to locate your iCloud Contacts and Calendar files, and make them your default.
    IMPORTANT: Don't panic if you can't find your contacts -- they're there. Click CONTACTS and you'll see you have several available contact files. Locate the one label "iCloud" in grey type. Right-click on it, select PROPERTIES, then click the Outlook Address Book tab. Check the box that says something like "Make this my default Outlook Address Book." Keep clicking "apply" and "okay" until you've exited out of the dialog box maze.
    You may have to do something similar with your Calendar files. I dd not, but if you need to, do it.
    Everything should now sync pretty seamlessly.
    I didn't have the exact same problem as you, but my dilemma was close enough. Good luck!
    Arthur P. Johnson

  • Using multiple desktops with a 4 finger swipe on a Mac Book Pro running Lion- is there a way that I can allow Safari open on several but not all??  Looks like I can set it for one but not others.  All, one, or nothing

    Using multiple desktops with a 4 finger swipe on a Mac Book Pro running Lion- is there a way that I can allow Safari open on several but not all??  Looks like I can set it for one but not others.  All, one, or nothing

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • How do I make multiple movies look like one?

    I created a demo of 136 slides with mostly screencaps and one
    small flash animation. The final published flash file is
    approximately 30MB. When the demo is run on multiple computers, the
    CPU utilization rises up to almost 100%, this makes the demo run
    very slowly on most computers. I was advised to cut my captivate
    movie in half ( in slides)... however even then the CPU utilization
    is quite high. How can I break my demo into multiple linked movies
    (to bring down the file size) but still have it play smoothly
    without it stopping to load after each new movie? How do I make
    multiple movies look like one?
    Thank you.

    Would it work to make the navigation of the page go to the
    next movie?

  • When in ical monthly view how do I select one day to look at?

    I am doing some work updating a variety of appointments in my diary, when I am in monthly view in ical, and I want to open up a day view in the future to look in more detail at the events for that day I am unable to choose a view for that day, I am automatically given todays view if I click on Day, and if I click on the day in question in the month view I am invited to add an event, which is not what I want.

    roonz,
    What operating system are you using?
    I am using Mavericks Calendar. In "Month" view, when I click once on the day, and then switch to the "Day" view, the day that I clicked on once is displayed.

  • Can you look at my code?

    Ok, Murray was kind enough to help me but then I managed to
    mangle everything so I'm starting from scratch.
    I work in graphics but not in web design, so html and css are
    fairly new to me. I put together a simple set of images and I
    successfully got them centered, but I want them LEFT aligned within
    the center - so that anytime a user expands their web browser, all
    the images remain left aligned relative to each other but as a
    whole centered in the window (see Yahoo home page for an example of
    everything remaining in the center).
    Right now it's centered but not left aligned within the
    center. When I try to manually (or via Dreamweaver) left align
    within the center, everything winds up flush ALL the way left
    instead of centered, OR, more frustratingly, upon expanding the
    window the lower images pop up to the line above them and to the
    right (this isn't happening right now but would if I were take off
    the centering that's on there now).
    Can anyone help? take a look at my code, maybe?...
    http://presentations.patrickmeyers.com/

    Hmmm.
    For some reason this didn't go over to the web forum when I
    first posted it.
    I'll try again.
    Hello,
    The <center> tag is aligning all within it to center,
    including the images.
    It actually isn't centering the div at all, as the div's
    default width is
    100% of the browser window's width if no width is assigned.
    The center element is deprecated, and sholdn't be used.
    A good way to center the content area is to use CSS to center
    the div that
    your content is in.
    First, in code view, delete the <center> and
    </center> tags.
    Next, add the following CC just before the </head> tag:
    <style type="text/css">
    <!--
    #wrapper {
    width: 792px;
    margin: 0px auto;
    -->
    </style>
    Next, change this:
    <body>
    <div>
    To this:
    <body>
    <div ID="wrapper">
    What does this do?
    We use CSS to center the div that contains your images.
    The CSS you added before </head> says that for any
    element with an ID of
    wrapper, in this case the div, make that element 792px wide
    and center it.
    The "center it" part comes from:
    margin: 0px auto;
    This means give the wrapper div a top and bottom margin of
    0px, and a left
    and right margin of "auto".
    Auto tells the browser to take the width of the browser
    window, and subtract
    the width of the wrapper div (the reason the div was given a
    width).
    Then, take what's left and divide it in two, giving each
    value to the left
    and right margin.
    For example:
    Your browser window is 1000px wide.
    1000px (window) minus 792px (wrapper div) = 208px left over.
    The 208px is
    divided by 2, so the left and right margin of the wrapper div
    are each
    assigned a value of 104px.
    The div is now centered.
    The images will automatically align to the left within the
    wrapper div as
    align left is the default if no alignment is set.
    Next, it's a good idea to use CSS to zero out the body margin
    so different
    browsers don't use their default values.
    In other words, you don't want your content to start at
    different distances
    from the top of the page in different browsers.
    Just add this right before #wrapper:
    body {
    margin: 0px;
    padding 0px;
    Lastly, you don't need the <br> tags.
    The page should now look like this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
    margin: 0px;
    padding: 0px;
    #wrapper {
    width: 792px;
    margin: 0px auto;
    -->
    </style>
    </head>
    <body>
    <div ID="wrapper">
    <img src="banner.jpg" alt="image1" width="792"
    height="336" />
    <img src="click-button-purple.jpg" alt="image2"
    width="180" height="46" />
    <img src="lowerbanner.jpg" alt="image3" width="792"
    height="41" />
    </div>
    </body>
    </html>
    Take care,
    Tim
    "patrickpmm" <[email protected]> wrote in
    message
    news:[email protected]...
    > Ok, Murray was kind enough to help me but then I managed
    to mangle
    > everything
    > so I'm starting from scratch.
    >
    > I work in graphics but not in web design, so html and
    css are fairly new
    > to
    > me. I put together a simple set of images and I
    successfully got them
    > centered,
    > but I want them LEFT aligned within the center - so that
    anytime a user
    > expands
    > their web browser, all the images remain left aligned
    relative to each
    > other
    > but as a whole centered in the window (see Yahoo home
    page for an example
    > of
    > everything remaining in the center).
    >
    > Right now it's centered but not left aligned within the
    center. When I try
    > to
    > manually (or via Dreamweaver) left align within the
    center, everything
    > winds up
    > flush ALL the way left instead of centered, OR, more
    frustratingly, upon
    > expanding the window the lower images pop up to the line
    above them and to
    > the
    > right (this isn't happening right now but would if I
    were take off the
    > centering that's on there now).
    >
    > Can anyone help? take a look at my code, maybe?...
    >
    >
    http://presentations.patrickmeyers.com/
    >

  • Can you please take a look at my TM Buddy log and opine on what the problem is?

    Pondini,
    Can you please take a look at my TM Buddy log and opine on what the problem is?  I'm stuck in the "Preparing Backup" phase for what must be hours now.  My last successful backup was this morning at 7:16 am.  I did do a series of Software Update this morning, one of which, a security update I believe, required a restart.
    I'm confused as to what the issue is, and how to get everything back to "it just works".
    Many thanks in advance.
    Starting standard backup
    Backing up to: /Volumes/JDub's Drop Zone/Backups.backupdb
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Event store UUIDs don't match for volume: Area 420
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (5) getxattr for key:com.apple.backupd.SnapshotSt

    Time Machine can't read some data it needs from your backups (each of those date-stamps is one of your backups). 
    That's usually a problem with the drive itself, but could be the directory on it. First be sure all plugs are snug and secure, then see if you can repair it, per #A5 in Time Machine - Troubleshooting. 
    If that doesn't help, post back with the results.  Also either tell us what kind of Mac you have, what version of OSX you're running, or post that to your Profile, so it's accessible.  
    This is unrelated to the original post here, so I'm going to ask the Hosts to split it off into a new thread.  Since you've posted in the Lion forum, I'll assume that's what you're running.  You should get a notice from them

  • When I first am looking at my newly uploaded photos in "Library", a box appears near the bottom of the photo that says "loading" (the photo looks good to me), then it is more "faded" and does not look as good.  Is there some setting on that I am not aware

    When I am first looking at my newly uploaded photos in "Library," a box appears near the bottom of the photo that says "Loading".  While it is loading, I usually think the photo looks "good".  After the photo is done loading, it looks more washed out.  Is there some sort of setting that I might have on (or that I need to turn on) so that this does not happen.  I have Lr4.  Thanks.

    Hi Tracy,
    There used to be a way to see if poster was new to the forum.., anyway - welcome to the forum.
    As I was alluding to, biggest differences in initial display are due to:
    * Camera calibration profile.
    * Auto-exposure/contrast settings (for which compensations have been auto-applied in camera, but not in Lightroom).
    So, choose a matching camera calibration profile (whether that's an option or not depends on your camera model - they're available for many but not all models) if you prefer one of them over "Adobe Standard" (the factory default profile).
    Also, your camera covers for underexposure due to non-optimal auto-exposure/contrast setting, Lightroom doesn't, so your options are:
    * turn it off in camera.
    * learn to compensate manually (or automatically via a plugin) in Lightroom.
    Of course, in addition to preferred defaults (alt-click big "reset" button in dev module), come up with some presets which are appropriate for your druthers and type of photography.. e.g. these will compensate Nikon ADL settings:
    http://www.robcole.com/LrForumSupport/ADL%20Compensations%20%282012%29.zip
    Cheers,
    Rob

  • The latest answer from you to me is that my photos are safe and that I should look in a default folder. I have tried to do this but cannot find it.  How do I find the default folder.

    I received your emai stating that my photos are safe and are present in the folder on your computer that you specified when importing them. If you used Photoshop Album Starter Edition to import your files from the camera without changing the default folder, look in this folder.  I have tried looking in the default folder and there is nothing there to help. Some of these photos were scanned in from my Cannon Printer.  Surely if Adobe are requesting me to register and telling me they will send me a code no. that is all that needs to be done.

    Mann8 wrote:
    How to communicate with Adobe office more direct? I do not want to enter into forum. Are you telling me Elements user not qualify for better services from Adobe?
    Why you relied to my questions partially only? Selective to questions? Or?????
    I repeat my previous questions that you ignored:
    How to compare Elements to CS5 or 6?
    Can I upgrade from Elements to CS?
    Is Elements 13 comes in DVD format?
    I'm interested in upgrading my Elements 10 to????
    Your advise please?
    I'm so sorry, but in today's world, the support of low cost products through personal contact has become very uncommon.  It simply does not pay to sell a product for $50 or $100 and then pay people to sit in cubicles to talk on the phone that may cost $50 or $100 an hour. 
    That said, I'll try to help for free! 
    CS5, CS5.5 and CS6 are products from the past that, as far as I know are not being updated or maintained.  Adobe has replaced them with the "Creative Cloud" or "CC".  So, if you want a current version of "Premier CC", you "rent" it for $20 a month.  For $50 a month, you can rent everything Adobe makes for photogrphers, videographers, designers and graphic artists.
    If "upgrade" means "get a cheaper price", no. 
    The easiest way to buy the DVD version of Elements 13 is to order it from a major retailer like B&H Photo or Amazon.  I've checked and both have it.   The cheapest way to buy it is to wait for holiday season pricing. 

Maybe you are looking for