Rename buttons or embedded links in iWeb - another language?

Hi, need to change the embedded, default links in iweb to another language. Fora example, rename the play slideshow, subscribe, or download options found on many of the iWeb templates. How can I do this?
Thanks

. How can I change the language in OS?
You go to system prefs/internationa/languages and move your language to the top of the list, using the Edit button if necessary. But there is no Greek localization for the OS, unless you have perhaps bought your machine in Greece, where a seller like Rainbow might have added his own software for that.
The 18 localizations that come with OS X are listed in its tech specs:
http://www.apple.com/macosx/techspecs/

Similar Messages

  • Hi, I have a subscribe button on one of me iWeb pages which is linked to my iPhoto. I don't know how I put it on and I can't find out how to delete it. Help please.....

    Hi, how can I delete a Subscribe button from one of my iWeb pages. I don't remember adding it but it is linked to all of my iphotos and I can't find out how to delete it. Help please...

    I have now sorted my problem thank you

  • Using a button for my link on a page

    Hello.
    I am probably asking a very simple question, but I can't figure it out.
    I have a simple link on my page in the form of:
    click here
    When the page displays, the "click here" text shows as underlined hyperlink that a user can click on and go to another page.
    The problem is that most of my ApEx generated pages have template buttons for navigation between pages and I would like to stay consistent when I create links within my html text and use buttons too, not underlined hypertext.
    Is there a way to display a button that says "click here" instead of a hyperlink text that says the same?
    I am tricking it by creating an image of a button and embedding the image with the <img> tag in between my <a></a> tags. But that's ugly because it's not a real button that changes its text color when you hover the mouse over it and gets sunk in when you press on it giving it that real look and feel, but just an image of it.
    Thank You
    Boris

    Great. This is really helpful. I am one step ahead now.
    I set up a button in my link as follows:
    <input type="button" name="Claim Sample" value="Claim Sample" style="background-color: green; color: #ffffff; font-weight: bold; font-size: 120%; font-family: verdana;">
    The only thing is that if I were to try to make my button consistent with the template based buttons I use throughout the app, and if I know my template is:
    template:117972528606699234
    isn't there a way to do something like this for my button to pick up the template format?
    Hypothetical code:
    <input type="button" name="Claim Sample" value="Claim Sample" style="template:117972528606699234;">
    Thank You
    Boris

  • Embedded Links that can't be deleted.

    I have several embedded links of an old image added onto my work, however several of the links could not be deleted and are invisible on the artwork. I can select them by using Go to Link but I cannot move them or delete them only resize it.
    How can I get rid of this as I don't want to risk it appearing when coming up for print?
    Thanks

    Turn off the preview to see where the images are. (You should see rectangles. You should also find them somewhere in the Layers stack)
    Check if anything is locked. (Object > Unlock All.)
    Check whether layers are locked, if so unlock them.
    Select the images (Links panel, click on link and then Go to Link button) and delete them.

  • How to create an embedded link with VBScript that references user website from Active Directory?

    I have scoured the web for days and have not been able to quite come up with exactly what I need for this. I have created an Outlook signature deployment using VBScript which sets information in an already formatted Word doc using placeholders. (Ex. [Displayname],
    [Initial], [City])
    All of that works as expected, but now marketing would like to have an embedded link reference some of our users personal web pages. So the link would display some kind of standard text like "Click Here". Once clicked on the user would be redirected
    to the personal web page of the person who sent the email. My problem is, I have no idea how to get the hyperlink to pull in the information from Active Directory...another problem is I know only enough coding to be dangerous so I am stuck. 
    Here is a sample of what I am working with, I am hoping someone can point me in the right direction. Thanks!
    '----- Connect to AD and get user info -----'
    Set objSysInfo = CreateObject("ADSystemInfo")
    Set WshShell = CreateObject("WScript.Shell")
    strUser = objSysInfo.UserName
    Set objUser = GetObject("LDAP://" & strUser)
    strDisplayName = objUser.displayName
    strFirstname = objUser.FirstName
    strLastName = objUser.givenName
    strInitials = objUser.initials
    strName = objUser.FullName
    strTitle = objUser.Title
    strDescription = objUser.Description
    strOffice = objUser.physicalDeliveryOfficeName
    strCred = objUser.info
    strPOBox = objUser.postOfficeBox
    strStreet = objUser.StreetAddress
    strCity = objUser.l
    strPostCode = objUser.PostalCode
    strPhone = objUser.TelephoneNumber
    strMobile = objUser.Mobile
    strFax = objUser.FacsimileTelephoneNumber
    strEmail = objUser.mail
    strWeb = objuser.wWWHomePage
    '----- Apply any modifications to Active Directory fields -----
    'Use company info page if user does not have a Linked-In account specified
     if strweb = "" Then strweb = "http://www.linkedin.com/company/58654"
    '----- Open Word template in read-only mode {..Open(filename,conversion,readonly)} -----
    Set objWord = CreateObject("Word.Application")
    Set objDoc = objWord.Documents.Open(strTemplatePath & strTemplateName,,True)
    Set objEmailOptions = objWord.EmailOptions
    Set objSignatureObject = objEmailOptions.EmailSignature
    Set objSignatureEntries = objSignatureObject.EmailSignatureEntries
    '----- Replace template text placeholders with user specific info -----
    SearchAndRep "[DisplayName]", strDisplayName, objWord
    SearchAndRep "[Name]", strName, objWord
    SearchAndRep "[Description]", strDescription, objWord
    SearchAndRep "[Title]", strTitle, objWord
    SearchAndRep "[Street]", strStreet, objWord
    SearchAndRep "[POBox]", strPOBox, objword
    SearchAndRep "[City]", strCity, objWord
    SearchAndRep "[State]", strState, objWord
    SearchAndRep "[PostCode]", strPostCode, objWord
    SearchAndRep "[Phone]", strPhone, objWord
    SearchAndRep "[Mobile]", strMobile, objWord
    SearchAndRep "[Fax]", strFax, objWord
    SearchAndRep "[Email]", strEmail, objWord
    'SearchAndRep "[Web]", strWeb, objWord
    '----- Replace template hyperlink placeholders with user specific info -----
    'SearchAndRepHyperlink "[email]", strWeb, objDoc
    SearchAndRepHyperlink "[Web]", strWeb, objDoc
    '----- Set signature in Outlook -----
    Set objSelection = objDoc.Range()
    objSignatureEntries.Add "NewCBSig", objSelection
    objSignatureObject.NewMessageSignature = "NewCBSig"
    'see note below if a different reply signature is desired
    'objSignatureObject.ReplyMessageSignature = "Full Signature"
    '----- Close signature template document -----
    objDoc.Saved = TRUE
    objDoc.Close
    objWord.Quit

    Can you ask a specific question? You have posted a script and noted you need a link but there is no question.
    ¯\_(ツ)_/¯

  • How do I link an iWeb site to a Yahoo store?

    Hi all,
    I designed an iWeb site for a friend, she is hosted at Yahoo Small Business. She also wanted to use Yahoo ecommerce does anyone know how to link an iWeb site to a Yahoo store? Yahoo uses store tags which they tell me can't be used in iWeb I was hoping to just link the ecommerce store I created in Yahoo to a store link in iWeb like a separate page. But I don't know how or if that will work. Any help would be appreciated.
    Thanks
    Marilyn

    Hi,
    LOL, you are absolutely correct I am moaning and groaning and you are correct about the tech suport the reason I am so frustrated.
    The website is www.papeteriecollections.com (iWeb)
    The Yahoo store is store.papeteriecollections.com
    The yahoo store is set up to the point of store tags. I was able to link the store to the site itself but not the items in the store to the items in the website. That's where the tags come in. From yahoo I copied their code from the item and then pasted it into iWeb. The link worked from iWeb back to the yahoo store, but not after publishing it. So then I tried the (html snippet) in iWeb and pasted the store tag code in there at the bottom of one of the items in my site, and order button appeared. (good thing) but it didn't work either. please see below:
    I hope this makes better sense and I apologize for being a baby!
    Thanks
    Marilyn

  • Embedding linked PSD's in AI using AS/JS

    Hi,
    I am looking at a way of embedding linked PSD files into an AI doc using either Applescript or Javascript. The AI docs I work with already have the PSD's placed as linked images. I am using Illustrator CS2 (12.0.1) on a Mac, running OS 10.4.10.
    I need to ensure that the PSD files are embedded with the "Convert Photoshop layers to options" option set, so that the blending options set on the PSD layers are honoured when brought into Illustrator. This works fine when done manually, as the "Photoshop Import Options" window appears for each PSD I embed.
    I encounter a problem when trying to embed a PSD using AS/JS though. In both cases, there are no options available to be used in conjunction with the 'embed' command. 'Embed' seems to assume and use the "Flatten Photoshop layers to a single image" option, which does not honour the PSD layer blending settings.
    i Things tried:
    *tried setting the Photoshop options to preserve layers in AS prior to running 'embed' i.e.
    >set photoshopOptions to {class:Photoshop options, preserve layers:true, pixel aspect ratio correction:false}
    >set IllustratorPreferences to {class:Illustrator preferences, Photoshop file options:photoshopOptions}
    I have tried the equivalent in JS too.
    I can see that the preference is being set, but this still has no effect on the 'embed' command as these prefs relate to opening PSD files in AI only (same "Photoshop Import Options" window though?!)
    *have looked at UI Scripting in AS - I am able to select and press the "Embed" button in the Control Palette in AI, but AI does not respond at all, i.e. I can see the "Embed" button change colour when clicked but nothing else. Other UI elements in AI respond correctly to being clicked, just not the buttons in the Control Palette.
    So any help/guidance/suggestions etc would be greatly appreciated.

    You need to expand and ungroup after the trace. Then delete the white you do not want. I missed a little piece in the last screen shot. But you get the idea. I put a black background behind the trace.
    Traced:
    Expanded and ungrouped:
    White selected:
    White deleted:

  • Can i make a button change anchor link when you scroll down the site?

    I am trying to make a scroll site.. and i have navigation buttons on the right, a full menu, but also a "1 topic up" button and "1 topic down" button.
    Is there any way that i can have those buttons change anchor link when you scroll down the site.
    Example:
    I am at home, then i press "1 topic down" and gets scrolled to the next topic on the website, but then i cant make the button change to link to the anchor below that, so the button becomes useless after that 1 press.
    Is that in any way possible in Muse to make it change link?

    Hi
    You can try to create different buttons on page positions where down scrolling will be active with separate button actions. For example you click on "I topic down" , page scrolls and there is another button placed with "Next Topic down" , on click this would scroll the page more and similarly along the length of page.
    Button with anchor link scrolling down the page cannot be used for different anchor links, creating different buttons with anchors is the solution.
    Thanks,
    Sanjit

  • Re deleting Play Movie button and associated links.

    Hi - thanks in advance for any help to a newbie.
    I have created an iDVD5 file from iMovie5. All went well with Chapter markers etc all coming through into my chosen theme. I started to customise the theme to my liking and noticed in the map area a file called 'Beginning' which was not one of my chapters. I saw that it was the start of the movie which I already had created a chapter marker for, and so I deleted it, thinking it superfluous. Subsequently, I noticed that the 'Play Movie" button had disappeared from the opening screen. The chapters are all intact and I can access and play these in the usual way. I can't, however, opt to play the full movie from the start because of no button or underlying link. Is there a solution?

    Hi, Laureid,
    Welcome to the discussions!
    Glad you are using iDVD and making your project from iMovie! You have made an error with your chapter markers, and unfortunately, you would have had no way of knowing that.
    You will have to recreate your DVD project. Go back into iMovie and delete your beginning chapter marker. As you have seen, iDVD makes the beginning chapter marker for you. Your movie will not play correctly if you do not let iDVD do this for you.
    Relaunch iDVD and create the project again, then import your movie into the new iDVD....or you can use the "Create DVD" button in iMovie if that is what you did the first time and it worked for you. This time you should have all your chapter markers as well as the beginning one. You can easily rename that first marker in iDVD's scene selection menu, so that you can have it the name you wish instead of 'Beginning.'
    Your movie should play and burn to DVD just fine now.
    Good luck, and post back if this doesn't work.

  • CANNOT SEE EMAILS WITH EMBEDDED LINKS ON MY HTC INCREDIBLE

    I recently linked my Outlook account through a POP3 on my HTC Incredible.  For some reason I'm not able to view messages with embedded links in the body of the email or the senders signature.  For example - If someone sends me an email and they have a FB icon embeded in their signature, I'm unable to view the email.  I can see who it's coming from but cannot see the text in the body of the email.  Does anyone have any work throughs for this issue?  Thanks!

    Hello,
    Please try the troubleshooting step provided below:
    Touch the Email icon from the Home Screen.
    Touch Mail size limit option.
    Touch No limit.
    Another tool that you may find useful, is the HTC Simulator that can be found at the link below:
    HTC Incredible Simulator
    Thank you.
    KellyW@VZWSupport

  • After upgrading I get comerical tabs opening when I click on embedded links.

    I installed firefox 28 over my existing installation. Now when I click on embedded links half the time an additional tap will open for some commercial site. Any suggestions on stopping this.

    Can you check your download history to see whether you got an unofficial installer bundle with some unwanted extras from a strange site?
    To tame the ads, try this: Disable ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable.
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Does that flush the extra tabs?
    If unwanted extensions lack a Remove button, this usually indicates it was installed by other software on your computer. Time to visit the Windows Control Panel, Uninstall a Program, and click "Installed on" to group by date and reveal secret bundled items you may have accepted. Probably best to remove everything recently added that you do not actually know to be useful.
    Finally, you may want to run some extra scans to mop up any lurking crap. This article lists tools other Firefox users have found helpful: [[Troubleshoot Firefox issues caused by malware]].
    Any luck?

  • How can I rename buttons in dialog popup ?

    Hello.
    I want rename buttons "OK", "Cancel" with my names in popups.
    I create new values in domen WDR_POPUP_BUTTON_KIND
    Next enhance interface IF_WD_WINDOW with new attributes:
    CO_BUTTON_CP type WDR_POPUP_BUTTON_KIND
    But i have problem in CL_WDR_INTERNAL_WINDOW->IF_WD_WINDOW~SET_BUTTON_KIND:
      case me->buttons-button_kind.
        when co_buttons_abortretryignore.
          wa_button-button      = co_button_abort.
          wa_button-button_text = cl_wdr_texts=>get_text( '201' ).
          wa_button-tooltip     = cl_wdr_texts=>get_text( '201' ).
          wa_button-is_enabled  = abap_true.
    This code show only predefined type of buttons can use. 
    How can I rename buttons in dialog popup ?

    When you subscribe to button event  you can rename the button
    * Popup
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component  TYPE REF TO if_wd_component.
      DATA lo_window         TYPE REF TO if_wd_window.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      lo_window         = lo_window_manager->create_window(
        window_name          = 'W_POPUP'
        message_display_mode = if_wd_window=>co_msg_display_mode_selected
        button_kind          = if_wd_window=>co_buttons_ok
        message_type         = if_wd_window=>co_msg_type_none
        default_button       = if_wd_window=>co_button_ok
      DATA:  l_api TYPE REF TO if_wd_view_controller.
      l_api = wd_this->wd_get_api( ).
    " subscribe to button event
      lo_window->subscribe_to_button_event(
                   button            = if_wd_window=>co_button_ok
                   BUTTON_TEXT       = u2018Approveu2019 " renaming the button text
                   action_name       = 'ON_OK_POPUP'
                   action_view       = l_api
                   is_default_button = abap_true ).
      lo_window->open( ).
    Radhika

  • How can I send a ThinkLink image with all the embedded links in Thunderword Email?

    As you are aware, ThinkLink images have embedded links (word files, images, videos etc.). I am, however, not able to send these images through Thunderword emails. I have tried both Inset Image and Insert HTML but nothing works. Of course, I can understand that ThinkLink is a new concept and most of the email clients don't support it.
    Thanks,

    No I am not aware. I have now googled thinklink, joined their site and found that they do not create images. Only Javascript.
    So no email client such as Thunderbird, which does not allow javascript, or any person disabling it in their browser for security reasons, will see your interactive images because they are not images they are interactive programs written in Javascript.
    Now how to get unsubscribed from these folk, they already tried spamming my whole Google Plusfriends list.

  • How can I change an embedded link to a website in a pdf in Pro XI

    How can I change an embedded link to a website in a pdf in Pro XI for Mac?

    Hi leee4227078,
    Please refer this blog post as this could help you on how to remove embedded hyperlinks:
    Removing Hyperlinks from a PDF and Feature/Gotcha
    Let me know.
    Regards,
    Anubha

  • How can I change an embedded link to a website in a pdf

    How can I change an embedded link to a website in a pdf in Pro XI for Mac?

    You can use the Select Object tool to select the link object and then right-click it and edit it via Properties.

Maybe you are looking for