Two languages on one site

i'd like to create a home page that allows the visitor to choose between two languages- how do i do that?

Hello and welcome to the discussion board. I created this site for my brother: http://www.auxbonsplants.fr is this what you are looking for?
If yes, just use a blank page in IWeb, put a title stick two or more flags on that page and use inspector to link your respective flags to a different page (blog, pictures, blank... you name it).
For my brother website I have all my pages duplicated (one in French and the exact one but in English), so it's easier for me not to forget one page to be translated.
To duplicate a page just right click on the page (the one that show on the "tree" on the left and choose duplicate; double click on the duplicate page to change the name.
I even went to the "trouble" to put a flag on the top right corner of all my pages so you can navigate from French to English very easily. Look here for an example: http://www.auxbonsplants.fr/Address.html
Hope this help.
Thierry
PS: you may want to use the Google Translate tool in your site if you prefer, leave a message here and I could explain it to you. Other members of this board can do it too.
+PPS: Disclaimer: I may receive compensation via Google ads if you visits my sites.+

Similar Messages

  • Is Apple fixed layout epub supporting two languages in one ebook

    Hi Everyone,
    Is apple fixed layout epub supporting two languages in one epub file?
    Regards,
    Arun

    As long as you don't try to make your main language one of those which the iBookstore does not yet support, I think there is no limit to the number of languages you can include in a book, regardless of format.
    http://m10lmac.blogspot.com/2014/02/languages-not-yet-supported-in.html
    If you are talking about having different language versions of the same text which the reader can select via some sort of button, I do not think that is possible.

  • Using two templates on one site.

    Im trying to design a website, and due to my lack of experience i have gone down the template route. I have download two adobe muse templates. i am designing my website on one of them (so this is a site) i want to use the second template as a new page for my current website how can i do this?  Thanks. if I've over complicated things, in short how can i use two templates in one site as two separate pages.

    Hi,
    You can setup two different master page, each with a template. See if that works.
    If you are not already aware of Master page, please have a look to this.
    Understanding master pages | Adobe Muse CC tutorials
    Do let me know if you have any question.

  • Two domains with one site

    How do I point two different urls to one site? my index is
    thegreenbulljewelryco.com but when someone types in
    greenbulljewelryco.com need it to go to the same
    page...thanks

    ...or a domain pointer. Also done through your site host or
    domain
    registrar.
    sa123 wrote:
    > How do I point two different urls to one site? my index
    is
    > thegreenbulljewelryco.com but when someone types in
    > greenbulljewelryco.com need it to go to the same
    page...thanks

  • Return two values for one site in single query

    Oracle 10g on Solaris 10
    data:
    value integer
    date timestamp
    This query works as is:
    WITH vals AS
         (SELECT start_date_time,
              value
         FROM     r_base a,
              hdb_site_datatype b,
              hdb_site c,
              hdb_datatype d
         WHERE     a.site_datatype_id = b.site_datatype_id
         AND     a.interval = 'day'
         AND     b.site_id = c.site_id
         AND     c.site_common_name = 'CABALLO'
         AND     b.datatype_id = d.datatype_id
         AND     d.datatype_common_name = 'pool elevation'
         AND     a.start_date_time > a.start_date_time - 367)
         SELECT x.start_date_time,
              x.VALUE,
              y.start_date_time,
              y.VALUE AS valuem1w,
              z.start_date_time,
              z.VALUE AS valuem1dm1y
         FROM     vals x,
              vals y,
              vals z
         WHERE     y.start_date_time(+) = x.start_date_time - 7
         AND     z.start_date_time(+) = ADD_MONTHS (x.start_date_time-1,-12)
         AND     x.start_date_time = TO_DATE('07-JAN-2008','DD-MON-YYYY');
    and this query works:
    WITH vals AS
         (SELECT start_date_time,
              value
         FROM     r_base a,
              hdb_site_datatype b,
              hdb_site c,
              hdb_datatype d
         WHERE     a.site_datatype_id = b.site_datatype_id
         AND     a.interval = 'day'
         AND     b.site_id = c.site_id
         AND     c.site_common_name = 'CABALLO'
         AND     b.datatype_id = d.datatype_id
         AND     d.datatype_common_name = 'storage'
         AND     a.start_date_time > a.start_date_time - 367)
         SELECT x.start_date_time,
              x.VALUE,
              y.start_date_time,
              y.VALUE AS valuem1w,
              z.start_date_time,
              z.VALUE AS valuem1dm1y
         FROM     vals x,
              vals y,
              vals z
         WHERE     y.start_date_time(+) = x.start_date_time - 7
         AND     z.start_date_time(+) = ADD_MONTHS (x.start_date_time-1,-12)
         AND     x.start_date_time = TO_DATE('07-JAN-2008','DD-MON-YYYY');
    I need it to return storage and pool elevation in a single query instead of two queries.
    The results should be:
    current day, elevation_value; current day minus 1 week, elevation_value; current day minus 1 day minus 1 year, elevation_value; current day, storage_value; current day minus 1 week, storage_value; current day minus 1 day minus 1 year, storage_value
    Thanks
    Very, very much appreciate if you can show me how to do this..

    something like this, perhaps? (untested, as I don't have your data):
    WITH date_param as (select TO_DATE('07-JAN-2008','DD-MON-YYYY') p_date from dual),
    SELECT max(nvl(case when d.datatype_common_name = 'pool elevation'
                             and a.start_date_time = p_date then value
                   end)) elevation_curr_day_val,
           max(nvl(case when d.datatype_common_name = 'pool elevation'
                             and a.start_date_time = p_date-7 then value
                   end)) elevation_last_week_val,
           max(nvl(case when d.datatype_common_name = 'pool elevation'
                             and a.start_date_time = add_months(p_date-1, -12) then value
                   end)) elevation_last_year_val,
           max(nvl(case when d.datatype_common_name = 'storage'
                             and a.start_date_time = p_date then value
                   end)) storage_curr_day_val,
           max(nvl(case when d.datatype_common_name = 'storage'
                             and a.start_date_time = p_date-7 then value
                   end)) storage_last_week_val,
           max(nvl(case when d.datatype_common_name = 'storage'
                             and a.start_date_time = add_months(p_date-1, -12) then value
                   end)) storage_last_year_val
    FROM r_base a,
          hdb_site_datatype b,
          hdb_site c,
          hdb_datatype d
    WHERE a.site_datatype_id = b.site_datatype_id
    AND a.interval = 'day'
    AND b.site_id = c.site_id
    AND c.site_common_name = 'CABALLO'
    AND b.datatype_id = d.datatype_id
    AND d.datatype_common_name in ('pool elevation', 'storage')
    AND a.start_date_time in (p_date, p_date-7, add_months(p_date-1, -12));

  • Using IWeb to publish a site in two languages

    I have used IWeb successfully to create my new website and am using mobileme as the domain provider. I want to produce this website in two languages, ideally having a 'button' to press where you can choose your language option if the site appears in a language you cannot read (ie it is published firstly in indonesian language but there are people who want to access it in english).
    Does anyone have nay experience / ideas about this?
    thanks

    See this page...
    http://iwebfaq.org/site/iWebMultilingualsites.html
    The above site is available in more than one language.

  • One site, two separate directories/roots?

    I tried posting this via the newsgroup yesterday, but it
    never showed up on this forum (I know why now after reading a
    little closer). I've been thrown into the role of my department's
    site/server admin at the last freakin' minute, and I'm hoping you
    guys can help me out with a particular situation.
    Here's the short version:
    Is there a way for me to set up Dreamweaver to manage one
    site over two completely separate folders (or perhaps set up as
    separate 'sites'), and have it update links automatically between
    both sites/folders as files are moved/changed just as it would with
    one site? Virtual directories or similar server side items are not
    an option.
    Here the long version:
    We have an in-house server that we've used for several years
    to host both our website and shared directories for various files
    used by our techs and managers. The web server is a mess because
    over the years we've had several versions of our website built on
    top of each other... an ugly mess which I have the pleasure of
    cleaning up (oh joy!). We use IIS on the server (Win2K) to host the
    site, and we have a virtual directory set up. We did this in order
    to allow certain files to be viewable on our website, but actually
    hosted outside of the site's root structure... so our managers
    could update those files without us having to give them access to
    make changes within the site's main file structure.
    At the same time they hand me these new duties, I'm told that
    our server is going bye-bye (lease is up) and instead of re-upping
    the bosses want the site moved to the company's shared hosting. So
    I have to have our site and share folders moved ASAP. This is
    actually a very smart move, but it creates a bit of a dilemma for
    me. We are only being allowed 100MB for our site, and we have a TON
    of job-aids that far exceed the space that we're being given. We
    are also using shared drive space (separate server) to host the
    rest of our center's files, so I can move the bulk of those files
    to the shared drivespace and create new links to them from our
    site. Those that need to see/edit those items will have
    permissions, the rest are out of luck, as it should be.
    What makes this tedious is having to comb through and edit
    each page to repair links to the content being moved to the non-web
    space, not just during this cleanup but as future changes are made.
    If there is a way that I could get Dreamweaver to recognize a
    second 'root' so that as it would update links as I moved things
    around and cleaned things up, that would be a HUGE help.
    Any ideas?

    Bump... anyone have any suggestions?

  • I have created 2 websites one is in english and the other in russian how can i link these 2 so that on each page you can choose to read the page in russian or english??? like how do i put the two language flag toggles?

    like how do i put the two language flag toggles such that you can choose to read the site in russian or english?

    On each of the English pages add a Russian flag and link that flag to the Russian equivalent page with the Inspector/Link/Hyperlind pane.
    On each of the Russian pages add a US or British flag and link that flag to the equivalent English page.
    OT

  • Two different languages in one report

    Hi All ,
    I have a requirement , where i need to show content in Invoice in two language English and Arabic simulataneously.Its not like one invoice in English and other in Arabic.I am fine with numbers being shown in English.
    e.g :
    Name of the Comapny : Acme
    (Name of the company in Arabic) : (Acme in Arabic)
    Can this be done in BI Publisher and if yes then how.
    Thanks in Adavance!!

    use datatemplate
    see the sample here
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e12187/T421739T434255.htm#3547893

  • I have one site but it's got two URLs somehow

    The weirdest thing happened when I finally managed to publish with the 1.01 version of iWeb. While I've only published one site, there is now an old version still on the web that everyone sees when typing the url:
    http://web.mac.com/bradsuchy/iWeb/Site/Welcome.html
    but if they type in the shortened version, they get the updated version:
    http://web.mac.com/bradsuchy
    And with this version, it fills in the rest of the url as:
    http://web.mac.com/bradsuchy/iWeb/326D67D6-88DA-11DA-BDEA-000D93C7D956/Welcome.h tml
    How weird is that?
    iMac G5   Mac OS X (10.3.9)  

    Any idea how I might get it back to normal (one site
    with a normal name)?
    You can, inside iWeb, change the name of your present site from whatever it is to "Site." If you republish (use the Option key to republish all), it should overwrite the current site called "Site". I'm not sure if this will get rid of the site with the long name. If not, just open your iDisk and navigate to Web/Sites/iWeb and trash this folder manually.

  • List aggregate two rows into one

    query :
    select kod_negeri.NAMA kod_negeri_nama,
    hakmilik.id_hakmilik,
    MOHON.PENYERAH_NAMA,
    MOHON.PENYERAH_ALAMAT1, MOHON.PENYERAH_ALAMAT2, MOHON.PENYERAH_ALAMAT3,
    MOHON.PENYERAH_ALAMAT4, MOHON.PENYERAH_POSKOD, MOHON.PENYERAH_KOD_NEGERI,
    MOHON.PENYERAH_NO_RUJ, MOHON.ID_MOHON, HAKMILIK.KOD_HAKMILIK, HAKMILIK.NO_HAKMILIK,
    KOD_LOT.NAMA, HAKMILIK.NO_LOT, KOD_BPM.NAMA, KOD_DAERAH.NAMA,
      LELONG.TMPT, LELONG.DIMASUK, PGUNA.NAMA,
      PIHAK.ALAMAT1, pihak.NAMA ven,
    PIHAK.ALAMAT2, PIHAK.ALAMAT3, PIHAK.ALAMAT4, PIHAK.POSKOD,
    mohon.id_mohon ,
    pguna.NAMA pguna_nama,
    pguna.JAWATAN,
    kod_daerah.NAMA kod_daerah_nama,
    to_char(enkuiri.TRH_enkuiri,'DD')||' '|| to_char(enkuiri.TRH_enkuiri,'MONTH','nls_date_language=malay') ||' '||TO_CHAR (enkuiri.TRH_enkuiri, 'YYYY') trh_enkuiri,
    to_char(lelong.TRH_lelong,'DD')||' '|| to_char(lelong.trh_lelong,'MONTH','nls_date_language=malay') ||' '||TO_CHAR (lelong.TRH_lelong, 'YYYY') trh_le,
    to_char(lelong.trh_lelong, 'Day') day,
    to_char(lelong.TRH_lelong,'HH12:MI ')  hour,
    DECODE(SUBSTR(to_char(lelong.TRH_lelong,'HH12:MI AM'),-2,2),'AM','Petang','pagi')  noon,
    enkuiri.cara_lelong,
    lelong.TMPT,
    lelong.HARGA_RIZAB,
    enkuiri.harga_rizab,
    initcap(pihak.NAMA) pihak_nama,
    initcap(lelong.EJA_RIZAB) er,
    'RM'||enkuiri.TUNGGAK_AMAUN,
    lelong.DEPOSIT,
    convert_number_words(lelong.DEPOSIT) as converted_form,
    to_char(lelong.TRH_AKHIR_BYR,'DD')||' '|| to_char(lelong.TRH_AKHIR_BYR,'MONTH','nls_date_language=malay') ||' '||TO_CHAR (lelong.TRH_AKHIR_BYR, 'YYYY') TRH_AKHIR_BYR,
    to_char(sysdate,'DD') ||' '|| to_char(sysdate,'MONTH','nls_date_language=malay') ||' '||to_char(sysdate,'yyyy') sysd,
    kod_bpm.NAMA kod_bpm_nama,
    kod_lot.NAMA kod_lot_nama,
    hakmilik.NO_LOT,
    hakmilik.KOD_HAKMILIK,
    hakmilik.NO_HAKMILIK
    from
    mohon ,
    mohon_hakmilik ,
    lelong ,
    pguna ,
    pihak ,
    kod_daerah ,
    enkuiri ,
    kod_bpm ,
    hakmilik ,
    kod_lot ,
    kod_negeri,
    mohon_fasa ,
    kod_hakmilik
    WHERE mohon.id_mohon = mohon_hakmilik.id_mohon and
    mohon_hakmilik.id_hakmilik = hakmilik.id_hakmilik and
    hakmilik.kod_hakmilik = kod_hakmilik.kod(+) and
    hakmilik.kod_lot  = kod_lot.kod(+) and
    hakmilik.kod_bpm = kod_bpm.kod(+) and
    hakmilik.kod_daerah = kod_daerah.kod(+) and
    mohon.id_mohon = enkuiri.id_mohon and 
    lelong.id_pihak = pihak.id_pihak and
    lelong.id_mh = mohon_hakmilik.id_mh and
    pihak.kod_negeri = kod_negeri.kod(+) and
    mohon.id_mohon = mohon_fasa.id_mohon and
    mohon_fasa.id_aliran ='semakan' and
    mohon_fasa.id_pguna = pguna.id_pguna and
    mohon.id_mohon = :p_id_mohon
    and enkuiri.KOD_STS='AK'
    and mohon.id_mohon ='0405AUC2010007436'KOD_NEGERI_NAMA,ID_HAKMILIK,PENYERAH_NAMA,PENYERAH_ALAMAT1,PENYERAH_ALAMAT2,PENYERAH_ALAMAT3,PENYERAH_ALAMAT4,PENYERAH_POSKOD,PENYERAH_KOD_NEGERI,PENYERAH_NO_RUJ,ID_MOHON,KOD_HAKMILIK,NO_HAKMILIK,NAMA,NO_LOT,NAMA_1,NAMA_2,TMPT,DIMASUK,NAMA_3,ALAMAT1,VEN,ALAMAT2,ALAMAT3,ALAMAT4,POSKOD,ID_MOHON_1,PGUNA_NAMA,JAWATAN,KOD_DAERAH_NAMA,TRH_ENKUIRI,TRH_LE,DAY,HOUR,NOON,CARA_LELONG,TMPT_1,HARGA_RIZAB,HARGA_RIZAB_1,PIHAK_NAMA,ER,'RM'||ENKUIRI.TUNGGAK_AMAUN,DEPOSIT,CONVERTED_FORM,TRH_AKHIR_BYR,SYSD,KOD_BPM_NAMA,KOD_LOT_NAMA,NO_LOT_1,KOD_HAKMILIK_1,NO_HAKMILIK_1
    Johor,050503PM00000151,HAMZAH DAUD DAROS & SITI NOR,NO 12 1ST FLOOR & 2ND FLOOR,JLN SRI RAHANG,TMN SRI RAHANG,SEREMBAN,58000,05,12345,0405AUC2010007436,PM,151,Lot,6309,Mukim Lenggeng,Seremban,PTG MELAKA,pptlelong1,Puan Nur Faizati,ASDFSAF,AHMAD,DSFDS,FDSFSDF,DSFSDF,12345,0405AUC2010007436,Puan Nur Faizati,Penolong Pegawai Tanah Lelong (PTD),Seremban,08 DISEMBER 2010,27 JANUARI 2011,Thursday ,02:00 ,pagi,A,PTG MELAKA,,,Ahmad,,RM234,,,24 MEI 2011,10 FEBRUARI 2011,Mukim Lenggeng,Lot,6309,PM,151
    ,050540HSD00022923,HAMZAH DAUD DAROS & SITI NOR,NO 12 1ST FLOOR & 2ND FLOOR,JLN SRI RAHANG,TMN SRI RAHANG,SEREMBAN,58000,05,12345,0405AUC2010007436,HSD,22923,Lot,0009838,Mukim Jimah,Seremban,PTG MELAKA,pptlelong1,Puan Nur Faizati,no2,Ali Bin Abudillah,jalan 3,taman permata,lorong mentari,32333,0405AUC2010007436,Puan Nur Faizati,Penolong Pegawai Tanah Lelong (PTD),Seremban,08 DISEMBER 2010,27 JANUARI 2011,Thursday ,02:00 ,pagi,A,PTG MELAKA,,,Ali Bin Abudillah,,RM234,,,24 MEI 2011,10 FEBRUARI 2011,Mukim Jimah,Lot,0009838,HSD,22923
    KOD_NEGERI_NAMA,ID_HAKMILIK,PENYERAH_NAMA,PENYERAH_ALAMAT1,PENYERAH_ALAMAT2,PENYERAH_ALAMAT3,PENYERAH_ALAMAT4,PENYERAH_POSKOD,PENYERAH_KOD_NEGERI,PENYERAH_NO_RUJ,ID_MOHON,KOD_HAKMILIK,NO_HAKMILIK,NAMA,NO_LOT,NAMA_1,NAMA_2,TMPT,DIMASUK,NAMA_3,ALAMAT1,VEN,ALAMAT2,ALAMAT3,ALAMAT4,POSKOD,ID_MOHON_1,PGUNA_NAMA,JAWATAN,KOD_DAERAH_NAMA,TRH_ENKUIRI,TRH_LE,DAY,HOUR,NOON,CARA_LELONG,TMPT_1,HARGA_RIZAB,HARGA_RIZAB_1,PIHAK_NAMA,ER,'RM'||ENKUIRI.TUNGGAK_AMAUN,DEPOSIT,CONVERTED_FORM,TRH_AKHIR_BYR,SYSD,KOD_BPM_NAMA,KOD_LOT_NAMA,NO_LOT_1,KOD_HAKMILIK_1,NO_HAKMILIK_1
    Johor,050503PM00000151,HAMZAH DAUD DAROS & SITI NOR,NO 12 1ST FLOOR & 2ND FLOOR,JLN SRI RAHANG,TMN SRI RAHANG,SEREMBAN,58000,05,12345,0405AUC2010007436,PM and HSD,151 and 22923,Lot,6309,Mukim Lenggeng,Seremban,PTG MELAKA,pptlelong1,Puan Nur Faizati,ASDFSAF,AHMAD,DSFDS,FDSFSDF,DSFSDF,12345,0405AUC2010007436,Puan Nur Faizati,Penolong Pegawai Tanah Lelong (PTD),Seremban,08 DISEMBER 2010,27 JANUARI 2011,Thursday ,02:00 ,pagi,A,PTG MELAKA,,,Ahmad,,RM234,,,24 MEI 2011,10 FEBRUARI 2011,Mukim Lenggeng,Lot,6309,PM,151
    that means i need to list aggregate the two rows into one how to make the changes for the above query in order to do so .
    Edited by: user9093689 on Feb 9, 2011 10:03 PM

    user9093689 wrote:
    now need to bother abt this that line converts date into malay language
    to_char(enkuiri.TRH_enkuiri,'DD')||' '|| to_char(enkuiri.TRH_enkuiri,'MONTH','nls_date_language=malay') ||' '||TO_CHAR (enkuiri.TRH_enkuiri, 'YYYY') trh_enkuiri,iam retriving two rows of output, wat i need is to display one row and the second row values which are not similar should be added to the first row
    for example for column
    kod_hakmilik two rows values are
    PM
    HSD
    but they should be display as
    PM and HSD
    finally my aim is to retrieve only one row as output.
    i dont how exactly the term listaggr . how ever it may be whether using groupby or any other but the output should be as aboveWhat version of Oracle are you on?
    Look up the LISTAGG() function in the documentation for your version (assuming it is there) and see if it can do what you want

  • I have a 3 year old MacBook Pro with MAC OSX 10.6.8, iPhoto '09 version 8.1.2 and have downloaded two software programs: one is Aperture 3.2 and the other is Photoshop Elements 9 (which I got from a friend who didn't need it). I am totally happy with the

    I have a 3 year old MacBook Pro with MAC OSX 10.6.8, iPhoto ’09 version 8.1.2 and have downloaded two software programs: one is Aperture 3.2 and the other is Photoshop Elements 9 (which I got from a friend who didn’t need it).
    I am totally happy with the way iPhoto organizes my photos and how I can work with iMovie to create slide shows with music from iTunes, etc.
    I have been shooting mostly high resolution jpegs and I continue to learn more and more about photography, post processing etc. I realize that the small adjustments I can make in iPhoto are good, and are adequate most of the time. However, a have started to experiment with shooting RAW images and would like to go the next step, ie. post processing.I am totally technically challenged and need SIMPLE, INTUITIVE programs and am certainly NOT anywhere ready for Photoshop CS whatever!
    After having these programs sit on my computer, I decided to try to see if I could figure them out. When I opened Aperture, this is what first comes up.
    “Welcome to Aperture 3.2
    Your library needs to be upgraded to work with this version of Aperture. Once upgraded, you will not be able to use this library with previous versions of Aperture.
    Upgrading a library from previous versions of Aperture 3 generally takes a few minutes or less, though larger libraries will take longer. After that, Aperture 3.2 will upgrade your library's thumbnails, but you can use the application during that time.
    Tip: To open a different library, quit Aperture and hold the Option key down while starting Aperture
    Current Library Location:
    Jadzia (home)   -----Pictures------Aperture Library
                                                      QUIT             UPGRADE”
    I have heard horror stories  about moving your entire library to Aperture, ending up with 2 libraries, etc. etc. hence my previous reluctance in attempting Aperture. In addition, many of my photography friends are saying: Go with Lightroom 3.....you’ll love it!
    So here is my dilemma.  I don’t want to mess around with my iPhoto library. All I want to be able to do, is to isolate a few photos, export them to Aperture, Elements, and work on them there, then bring them back into iPhoto.
    Can I do this? Should I forget about Aperture and Elements and look at purchasing yet another program like Lightroom?

    Export those few photos via the File ➙ Export ➙ File Export menu option with Kind = Original to the Desktop.  Then import them into the Aperture library. That would keep one copy in your iPhoto library and another in your Aperture library to edit, etc.
    You can use Photoshop Elements 9 from within iPhoto as your editor of choice. However, if you edit a raw file in iPhoto with PSE9 the resulting edited version must be saved outside the iPhoto Library and imported back in as a new file.  For editing jpegs just do a Save (not a Save As) and it all will be kept within iPhoto. 
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
    3 - however, if you get the navigation window
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Note:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.
    OT

  • Creating multiple  Spry menu bars in one site

    I've been creating a website and I am required to use multiple templates to manage all the different sections of the site.  To make it much less of a hassle, once I created one template, I simply saved that template as another template so I would not have to start all over again.  On the first template I created a spry menu bar with a certain amount of buttons.  And because I created the other templates with that template, those templates had the same menu bar containing the same settings.  The problem is, because of the specified settings of the spry menu bar, if I change the amount of buttons from the original to one less, the whole bar on that template will get off center and messed up because the settings for the menu bar are not set to that certain amount of buttons, but if I change the settings to suite that amount of buttons, then the settings for all the templates change and that messes up the other menu bars on those templates because they have a different amount of buttons.  Currently my templates all contain 10 buttons and I am wanting to create a new menu bar with only about 4 - 6 buttons.  I thought going up to insert and inserting a brand new menu bar would do the trick but when I did that it inserted a menu bar that had all the settings of the already-created menu bar, (ie same background images, and hovers, etc.) as well as the width which, because the width is suited for 10 buttons, it does not properly make the default 4 button menu bar center correctly.  And if I try to change the settings on this menu bar then the same thing happens with everything changing and getting messed up.
    So after this long explanation, my question is, how can I insert multiple spry menu bars into one site that are not correlated with each other in terms of all the settings so that when changed, will not affect each other?  I am guessing I am having this problem because I created all the templates from one template so they are all interlocked, but the page that I tried to insert the brand new menu bar on was not created from any of the templates and was the first page I made at the very start.
    http://phonytrojanmusic.zxq.net/ Here is the link to the site. The first page that opens up is the page that I tried to insert the brand new menu bar on.  If you click on band choir or elementary you will see the menu bars with 10 buttons that are all interlocked in terms of settings.  Also, I'd like to note that if I delete a button in one template, it does not delete that same button in the other templates, nor does it add a button to the other templates if I add one.  Only the physical appearance changes because the settings are meant for only one amount of buttons.  Sorry for the novel!

    Alright well I just tried to use 2 complete different templates.  I created one brand new template from scratch, added the menu bar, gave it an ID of "band", and configured it to suite 10 buttons accordingly.  Then I started off from scratch again with a starting html page with a different css style sheet and added the menu bar and gave it a different ID of "choir" but the settings of the two different bars still act as one set of settings!  I dont know how to fix this problem.  Please tell me what to post if anything will help you. Im guessing the solution is very simple but I have tried everything.
    here is the code for the two different menu bars (one in each template)
    choir
      <ul id="Choir" class="MenuBarHorizontal">
          <li><a href="#">Programs</a>      </li>
          <li><a href="#">Home</a></li>
          <li><a href="#">Blog</a>      </li>
          <li><a href="#">Directors</a></li>
    <li><a href="#">Gallery</a></li>
    <li><a href="#">Forms</a></li>
          <li><a href="#">Calendar</a></li>
          <li><a href="#">Links</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
    band
    <ul id="Band" class="MenuBarHorizontal">
          <li><a href="http://phonytrojanmusic.zxq.net/index.html">Programs</a>      </li>
          <li><a href="http://phonytrojanmusic.zxq.net/band/bandmain.html">Home</a></li>
          <li><a href="http://centerburgtrojanmusic.blogspot.com/">Blog</a></li>
          <li><a href="http://phonytrojanmusic.zxq.net/band/directors.html" class="MenuBarItemSubmenu">Directors</a>
            <ul>
              <li><a href="http://phonytrojanmusic.zxq.net/band/directors/cooper.html">Cooper</a></li>
              <li><a href="http://phonytrojanmusic.zxq.net/band/directors/teschler.html">Teschler</a></li>
              <li><a href="http://phonytrojanmusic.zxq.net/band/directors/lee.html">Lee</a></li>
            </ul>
          </li>
          <li><a href="http://phonytrojanmusic.zxq.net/band/shows.html" class="MenuBarItemSubmenu">Shows</a>
            <ul>
              <li class="MenuBarHorizontal"><a href="http://phonytrojanmusic.zxq.net/band/shows/field.html">Field</a></li>
              <li><a href="http://phonytrojanmusic.zxq.net/band/shows/concert.html">Concert</a></li>
            </ul>
          </li>
          <li><a href="http://phonytrojanmusic.zxq.net/band/gallery.html">Gallery</a></li>
          <li><a href="http://phonytrojanmusic.zxq.net/band/forms.html">Forms</a></li>
          <li><a href="http://trojanmusic.org/cal.html">Calendar</a></li>
          <li><a href="http://phonytrojanmusic.zxq.net/band/links.html">Links</a>      </li>
          <li><a href="http://phonytrojanmusic.zxq.net/band/contact.html">Contact</a></li>
        </ul>
    I currently do not have any links attached to any of the buttons in the choir bar.  Something went wrong and now I have to make the whole site over again so it is not very accessible.  Please post back asap!

  • More than one site with iweb - now my original site forwards to new one

    Could anybody help me please?!!
    Right. I set up a portfolio website using iweb with a domain from ipage, and that was all fine. Then a few months later, I have set up a website for my Mum's artwork with a new domain bought through the same account on ipage - because ipage allows you to have multiple domains.
    Now that I have set up my Mum's site, my own original site just forwards straight to my Mum's. I have checked loads of times that I've entered the right web addresses etc in the bit for the info so that's all correct. I don't know what else to do now. I don't speak the code lingo and am quite basic in my website building knowledge...
    Please if there is anyone who can tell me what to do, I'm guessing there's probably a simple solution to this!!
    Thankyou!!!
    Josephine
    P.S I don't know if my version is iweb '08 but it was the only iweb one to select in 'product' options..

    Here's how to have multiple sites in a single MMe account with one or more sites having a domain name.
    A. All sites are in the same Domain.sites2 files
    1 - only one site can use the CNAME method of domain name forwarding and it must  the top site in the left hand pane of iWeb.
    Click to view full size
    2 - the other sites must use URL domain name forwarding which directs the domain name to the site's full MMe URL, http://web.me.com/MMe_Username/Site_Name,  or, if there is no domain name, just MobileMe's full URL.
    B. Each site is in its own Domain.sites2 file.
    Again, only one site can use CNAME forwarding.  This presents a problem since CNAME forwarding directs the domain name to the basic MMe account URL: http://web.me.com/MMe_Username/ which uses an index.html file in the root folder of the account, iDisk/Web/Sites. Each time a new site is published or an existing site uses the File->Publish Entire Site a new index.html file is created in that root directory, iDisk/Web/Sites folder, directing the browser to that particular site.  This file is what the CNAME method uses to find the site it represents.  Therefore some steps must be taken to assure that the index.html file in the MMe Accounts root directory always points to the correct site.  This can be accomplished is three ways.
    1 - don't use the CNAME method.  Just use  URL forwarding .  This, IMO, is the simplest method as it doesn't requre any additional effort on the user once the domain name has been set up.
    2 - use the following method suggested by Wyodor in this topic: Is it possible to have multiple sites when using ur Domain name?   
    In iWeb domainfile 1:
    Create a dummy site : _dummy
    with a blank page.
    Create your working site : Whatever
    Add pages
    Publish both Sites to the same same location on the same server.
    Your _dummy site is now the default Site.
    Check.
    In iWeb domainfile 2:
    Create/Use your CurrentSite.
    Move a page to the top of the Site and back. Publish the Site.
    iWeb will create a new index.html file in the root of the server and from now on CurrentSite is the default site.
    Check.
    From now on, never move your Whatever Site to the top of the list in the iWeb sidebar and never change the page in the _dummy site.
    Simply do not touch your _dummy ever again. And never forget that.
    3 - use Ethmoid's suggested method in Using two sites - setting one up with separate domain? or republishing the entire site that uses  CNAME forwarding.  Just making a minor change and publishing the site changes does not create a new index.html file. 
    The entire site must be republsihing in order to get that new site.  
    Or keep a copy of the CNAME site's index.html file on your Mac and replace it manually in the iDisk/Web/Sites fodler when necessary.
    NOTE:  the CNAME method provides a shorter URL:  http://www.Domain_Name.com/Site_Name/Page_Name.  CNAME does not have masking.
    The URL forwarding displays the full MMe URL:   http://web.me.com/MMe_Username/Domain_Name/Page_Name.   With domain name masking that will be shortened to:   http://www.Domain_Name.com for every page of your site.
    However, with masking visitors will only be able to bookmark and enter at the first page of the site.  If a page is refreshed the visitor is taken back to the first page.  Also search engines will only be able to index the first page of the site.
    As you know MobileMe will be discontinued next June 30th.  With at in mind this might be of some interest to you at this time: Life After MobileMe.
    OT

  • Can I use a domain for one site and mobile me for a different site?

    Can I use a domain for one site and mobile me for a different site?
    I have two sites, I would like to have up and I would like to do one through a domain and one through mobileme is this possible?

    Yes you can. You can use the CNAME method of forwarding for the first site (the top site in iWeb) and use the MMe URL for your account for the other site: http://web.me.com/YourAccount_Name/SiteName/
    OT

Maybe you are looking for

  • File not found when trying to call a dll on LabVIEW Real Time machine

    I have a dll called "DLLRTTEST" that I've written, and have succesfully called on my host machine.  I'm now attempting to call this dll from a vi that is located on my real time computer.  Currently I get an "Error 7 occurred at Call Library Function

  • Text spacing goes crazy after editing a pdf in Acrobat 9 Pro Extended

    Recently upgraded to Acrobat 9 Pro Extended from 7.  I have old pdf documents that need minor editing.  When I edit text with Text Touchup tool, I get an error that font substitution taking place, usually  TimesNewRoman Postscript to just TimesNewRom

  • Bugs on Update Retriever 2.14 - Cannot get update information correctly

    After clean install update retriever 2.14 (updateretriever214-2008-5-13.exe) in clear install Thinkpad R51, In get new update, after select machine type, operating system, language, and get search for updates for 1st time and successfully download up

  • Can't join my old Airport Express Network, please help!

    Hey, I was running a wireless network without any problems last year in my appartment. I sublet for the summer, and when I came back I couldn't join my network even though my Mac was reading the same network name. I had also saved the password in the

  • FindPattern and 64 bit

    Hm, as nobody is addressing my 32 - 64 bit issues, I'll keep wondering: The function FindPattern seems not suitable for 64 bit, because the starting index still expects a regular 'int'. The 'number of bytes' is defined as ssize_t, but this seems not