Adding an iChat button to iWeb?

Has anyone been able to do this? I like the 'email me' button, and have used one for Skype on my website in the past, but I can't figure out how to set up one for iChat... Any help would be much appreciated!

I have this on my site. I have a yahoo & aol status button & you can click it to contact/message me.
You can view this by going to www.UnmeritedFavor.net and click "About". On that page, under "Contact Me" are the buttons.
For iChat, the code is:
replace 'uturnsorg' with your own screen name.

Similar Messages

  • Strange bug -- adding one more button OR page causes Form warning to appear

    I'm building a simple interactive document in InDesign CS4 on the Mac, to be exported/delivered as a PDF. There are a few text-based buttons on the Master Page that are set to Go To a Text Anchor on Release. There are 4 buttons of these buttons on the page, and each one leads to a different page in the document, and they all work fine. They are all built the same way.
    I want to export a PDF that opens cleanly in Reader, meaning no unexpected dialog boxes or warning messages appear. Up until this point, my document opens cleanly in Reader.
    However, when I create a FIFTH button (using the exact same method used to create the other buttons), OR I add ANY more pages to my document (which currently stands at 16 pages, but will need to ultimately be upwards of 40), for some reason, opening the PDF in Reader causes Reader to start displaying the large, distracting pink warning message at the top of the page:
    "Please fill out the following form. You cannot save data typed into this form. Please print your completed form if you would like a copy for your records."
    The fifth button I create (from scratch) causes this message to appear.
    Or, if I add another page (using my Master Page, where the buttons are used), this message appears. Even if the fifth button is not created, and I add another page from the Master, this message appears.
    If I add a blank new page (without using the Master Page), the message does NOT appear.
    So, for some reason, adding ONE more button, or referring to the Master Page in the document ONE more time by adding a 17th (or more) pages, seems to kick InDesign/Acrobat Reader into thinking my document is suddenly a form, and causes Reader to display that obnoxious pink message when opening the document.
    I've tried several troubleshooting steps.
    - I've ensured my buttons have unique names.
    - I've tried creating the fifth button from scratch, and also tried creating it from duplicating one of the existing "good" buttons.
    - I've made sure the button has a destination page/Text Anchor to go to.
    - I've opened the PDF in Acrobat Pro 9, and gone through all of the page and buttons in the Forms Manager, and there is nothing out of the ordinary in that view.
    Why is Reader suddenly thinking my document is a form (that "cannot be edited/saved") when I add one more button, or one more page!? It's bizarre, and quite frustrating.
    Thanks for any insights,
    Robbie

    You can use that same workaround with ID CS4 files. You just have to make the PDF and then go into Acrobat to add the security that doesn't allow editing (Acrobat -> Security -> Encrypt with Password) . That gets rid of the warning about the form. Of course if you actually have a form somewhere in your document, you won't be able to use that......

  • Adding a push button on the report toolbar

    adding a save button on the report toolbar, so that after clicking the button, the data fetched on the report will be stored in the application server.

    Hi
    to automate this process ,best way is to create a Z rport and there u can submit this sap standard report and get its output into an Internal table and then u can write this internal table to application server via following demo code -
    this is code for both (download /upload),u can not use CG3y and CG3z as u want to do it as a background job ..
    *& Report ZGILL_AS *
    REPORT ZGILL_AS message-id rp .
    tables: pa0001,pa0002.
    select-options s_pernr for pa0001-pernr no intervals MODIF ID XYZ.
    parameters: p_dwnld AS CHECKBOX ,
    p_upld AS CHECKBOX DEFAULT 'X'.
    parameters: P_DSNI(75) TYPE C MODIF ID ABG DEFAULT
    '/usr/local/sapdata/amit.dat' LOWER CASE.
    data: begin of itab occurs 0,
    pernr(8),
    sp1(1) value ',',
    werks(4),
    sp2(1) value ',',
    persg(1),
    sp3(1) value ',',
    persk(2),
    end of itab.
    data: s_eof(3).
    start-of-selection.
    if p_upld = 'X'.
    OPEN DATASET P_DSNI FOR OUTPUT IN LEGACY TEXT MODE.
    PERFORM FETCH_DATA.
    STOP.
    elseif p_dwnld = 'X'.
    OPEN DATASET P_DSNI FOR INPUT IN LEGACY TEXT MODE.
    IF SY-SUBRC NE 0.
    MESSAGE E016 WITH
    'Error opening seq. file, RC:' SY-SUBRC.
    EXIT.
    ENDIF.
    CLEAR S_EOF.
    DO.
    PERFORM FETCH_file.
    IF S_EOF EQ 'YES'. stop. ENDIF.
    ENDDO.
    endif.
    END-OF-SELECTION.
    if itab[] is not initial.
    perform print_file1 tables itab.
    else.
    write:/ 'No records exists'.
    endif.
    *& Form FETCH_DATA
    text
    --> p1 text
    <-- p2 text
    FORM FETCH_DATA .
    SELECT * FROM PA0001 WHERE PERNR IN S_PERNR.
    MOVE-CORRESPONDING PA0001 TO ITAB.
    TRANSFER ITAB TO P_DSNI.
    APPEND ITAB.
    ENDSELECT.
    CLOSE DATASET P_DSNI.
    ENDFORM. " FETCH_DATA
    *& Form FETCH_file
    text
    --> p1 text
    <-- p2 text
    FORM FETCH_file .
    READ DATASET P_DSNI INTO itab.
    append itab.
    clear itab.
    IF SY-SUBRC NE 0.
    S_EOF = 'YES'. EXIT.
    ENDIF.
    ENDFORM. " FETCH_file
    *& Form print_file1
    text
    -->P_ITAB text
    FORM print_file1 tables P_ITAB structure itab .
    write:/2 'EmpNo',
    14 'Personnel Area',
    34 'Emp Group',
    47 'Emp SubGroup'.
    skip 1.
    loop at p_itab.
    write:2 p_itab-pernr,
    14 p_itab-werks,
    34 p_itab-persg,
    47 p_itab-persk.
    skip 1.
    endloop.
    ENDFORM. " print_file1
    <b>Reward if usefull</b>

  • MS CRM 2015 Adding Custom RIbbon button in dashboard and Changing Colors

    Hi,
    I am Looking for customization in MS Dynamics CRM 2015 and want to Add Custom Ribbon button in dashboard and Changing Colors of that ribbon using customization.xml i am new to crm 2015 and only know how to import export solutions.
    Regards
    Irfan

    Hello Irfan,
    For adding a custom button please refer this blog
    https://community.dynamics.com/crm/b/aeonnexuscrm/archive/2014/10/21/ms-crm-2013-adding-custom-ribbon-button-in-dashboard.aspx
    And for changing colors in Chart
    https://crmchartguy.wordpress.com/2012/08/23/palette-custom-colors-in-charts/
    Hope this helps!
    Regards, Abhishek Bakshi If you find this post helpful then please Vote as Helpful and Mark As Answer. Check my blog on https://mydynamicscrmblog.wordpress.com/

  • Adding a Glossary button which doesnt move the timeline on !

    I'm using Captivate 3. On each page there is a
    backwards/forwards button. On this one module we've now added a
    'Glossary button'. If the user clicks this it opens up a external
    PDF file in a seperate window. That works fine.
    Say they are at the end of a page , the page is paused as its
    waiting for them to click Back/Forward or Menu.
    However if they click the Glossary button this moves the
    timeline forward as its a kind of 'continue' which is frustrating
    as it then moves to the next page. I just want them to be able to
    click Glossary as many times as they want and the program doesnt
    move on a page.
    Has anyone come across this before ? Just want a button which
    doesnt seem to move on ! Its not set to continue at all. Just set
    to open an external file
    Regards

    Hello P_SJ,
    The way I would tackle this would be to create the button in
    Adobe Flash (including the link to the PDF document) and then
    import this into Captivate as an animation. The reason for me
    suggesting this is because with Images and Animations you can make
    the object persist for the entire project (Options tab > Display
    for > rest of project).
    If you don't need the button to persist then you could just
    disable the Pause after option (Options tab) in the Button dialog
    and set the On success menu option to Open URL or file.
    I guess that even if you did need the button to persist you
    could just copy the button and paste this onto all the relevant
    slides. That might work as well.
    HTH
    Regards - Mark

  • Stop constantly re-adding the smiley button I keep removeing

    Stop constantly re-adding the smiley button I keep removing. I don't want it, I remove it for a reason. It is annoying enough to have to remove it on my own computer but I also have to do this on 20+ business computers every single patch.

    Hi stimpo, :-(
    <sub>Disclaimer: We are only fellow Firefox users here, and so can not discuss development decisions and policies. </sub>
    Sorry it was a mistake and I hope it does not happen on future upgrades.
    * ''Bug 1136300 - Hello (and Share) buttons are returned to the toolbar after latest upgrade despite having previously removed them '' https://bugzilla.mozilla.org/show_bug.cgi?id=1136300#c6 <blockquote>.... So that would have to be re-done by users. This will not be a problem for any subsequent release, like Fx 37. .... </blockquote>
    ** Please do not comment in bugs https://bugzilla.mozilla.org/page.cgi?id=etiquette.html
    As you presumably deploy Firefox you may consider using Firefox ESR. That has a slower release cycle and does not suffer this particular problem. ESR is currently Fx33.1 and does not even support Firefox Hello (The smiley icon VOIP feature was [https://www.mozilla.org/en-US/firefox/34.0/releasenotes/ introduced] in Fx34 )
    * https://www.mozilla.org/en-US/firefox/organizations/faq/

  • Anybody know how to put an "iChat me" button in iWeb?

    You can see from my i-web site http://www.ribblederby.co.uk that I have managed to put a Skype-me button on my News page, which monitors my status and provides a direct link to Skype me. Skype provide the html for the buttons on their website, and I've simply updated the html of my News page directly in my iDisk.
    Does anyone know (or can write) a similar piece of code for a iChat-me button? All of my friends and many of my visitors use iChat - so that would be more useful.
    By the way, my site is running on iWeb 1.1, and seems to be working fine - just had to scrap some archived blogs to get comments to work

    Here's my method:
    1. add ichat image on page
    2. create a file on your computer somewhere convenient (i call it ichat.html)
    3. the "ichat.html" file contains the following:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>thepetricasa chat</title>
    <meta http-equiv="refresh" content="1;url= aim:goim?screenname=whatever"/>
    <script language="JavaScript">
    var time = null
    function move() {
    window.location = 'pagename where ichat link appears'
    //-->
    </script>
    </head>
    <body>
    <body onload="timer=setTimeout('move()',3000)">
    </body>
    </html>
    this file launches the aim app and queries the screenname "whatever" then redirects back to the page from which the link was made
    2. make the ichat image a hyperlink to a file (choose the "ichat.html"
    3. publish and enjoy
    iWeb will copy the file into the "page_files" subdirectory for the site
    http://www.thepetricasa.com

  • Adding Basket Buttons to iweb

    I used a pc and another web host in the past and I had pay pal basket buttons on other pages. I like how easy it is to use iweb, but i really need to know how I can either paste in the language, or somehow add the basket button to my I web. Any suggestions?

    Hi there,
    Using PayPal
    1. Sign up to paypal
    2. In your account go to Merchant Tools
    3. There's a box called "Key Features".
    4. Clicking on the feature you want you will get the code.
    5. Go to iWeb => Web Widgets=> HTML Snippet and paste the code you got from PayPal and click Apply.
    6. You will see the button appear in iWeb
    Regards,
    Cédric

  • Adding images and buttons without a frame appearing

    I would like to add images to some of my pages without having them appear in a frame. I would like to place some transparent gifs on the page to use as buttons for hyperlinks. I would also like to have some photos (with transparent backgrounds that appear on the page and are not surrounded by a picture frame. Any Suggestions

    iWeb seems to default to stroking newly-added images and shapes. Pages (iWeb's close relation) includes a way to change the default appearance, but I can't find anything similar in iWeb. You can, of course, remove the stroke using the Graphic Inspector (just set Stroke to None). Transparency in gifs and photo images is supported. Just drag into iWeb or use Insert > Choose... Again, remove the stroke if this appears.

  • Photoshop rollover buttons in iWeb

    Hi all,
    Has anybody produced a rollover button in Photoshop and then used the button and code in iWeb? If so, can you give me pointers where the code should go.
    Thanks
    G4 Dual 1.25   Mac OS X (10.4.4)  

    Yup, I have, but it is a right chore...and you need "iWeb Enhancer, which you can download here:
    http://web.mac.com/cbrantly/iWeb/Software/iWeb%20Enhancer.html
    (you can get a few free runs out of it before you have to pay)
    Here is how to do it - this assumes that you know the relevant Java Script coding to enable the roll over.
    1) Create your rollover and slices in P/Shop & Image Ready. Export the buttons as slices.
    2) In iWeb, drag / use Insert Menu > Choose... and place your "up" i.e mouse-off button in the position that you want it to be. Repeat for all buttons. Ensure that you "send to front" the rollover images.
    3) Add the hyperlink in the Inspector pane if you want one.
    4) Get you roll over Java script ready in an external HTML editor. Make sure you use the same image names as the files that you added into iWeb.
    5) In iWeb, on the page where you have the roll over, add a rounded box - size is not important. Make sure this has no colour fill and no border. Double click in this box and before you do anything else, type this, exactly as it appears here:
    <!--BeginHTMLData-->
    After that, cut and paste your roll over java script into the box (the script that would normally sit in the header of an html page.) Include all the beginning and end script tags.
    Then send this box to the back.
    6) Save and then choose "Export to Folder".
    7) Once exported, run iWeb Enhancer and select relevant folder.
    8) Once iWeb enhancer is finished, find the P/Shop image that is the "on" or mouse over image of your rollover. Place this in the "Images" folder within the folder that contains your published iWeb site.
    9) Now open the html file of the page with the roll over. You will see a section beginning like this:
    <--Begin Content added by iWeb Enhancer-->
    After this you will find you Java script roll over code. Check that the details of the on and off images are correct in terms of exact name, file type and src. Ensure that the image src, links back to your "Images" file (this is where iWeb will have stored your "off rollover image and you places your "on" rollover images. If in doubt change all links to head back to the root so they all start lime this: "/Images/
    continued in next post...

  • Creating paypal buttons in iWeb

    i have copy and pasted the html code onto my web page in iWeb but when i publish the page the button is not generated...why? what am i doing wrong? It's the same procedure that I used to create a "visa buy now button" before. Also having the same problem using html from another site that want to generate a cartoon on my site. Wassup!?

    If that's the case, then create a simple HTML page with the Paypal code.
    Then paste this line in the HTML snippet:
    +<object width="75" height="50" data="/dotMacID/paypal.html" type="text/html" standby="Paypal" title="Paypal"></object>+
    Instead of object you can also use iframe.
    Added:
    [Here's my PayPal button|http://web.mac.com/wyodor/paypal.html]. Look at the source to see how it's done.
    Save the source and put your own code into it. Otherwise I receive your donations.
    Message was edited by: Wyodor

  • Adding high quality photos to iWEB 08

    Hi folks,
    If I add high quality photos to an iWEB site, will it automatically compress them for the web? Is there any control over the quality?

    Where are you adding them to? If it's to a page rather than a photo page or album resize them to the size you want them to be when in the page, add them to the page, go to the Inspector/Metrics pane and click on Original size button. Also go to the iWeb preferences beforehand and uncheck the option to Optimize images on import.
    If it's photo or album pages again turn off the optimize preferences. That's about all you can do without using different presentations options, like SimpleViewer or Flash Album Export both of which are iPhoto plugins. Those will resize the photos but you can go in and replace the files will higher quality files of the same size.
    This is all predicated on the premise that by higher quality you mean less jpg compression and not larger image size.
    OT

  • ALV grid control, Adding the push Button in the Toolbar

    Hello All,
    I am facing a problem when trying to do calculation based on the button added at the toolbar of interactive ALV list.
    When I click on the toolbar button Compute, the ALV should calculate the
    multiplication of the Qty (manually entered by a user) & price per unit already available in the ALV & show it the Column Total value.
    Presently when I try to do this using
      Method handle_user_command.
       modifying the inetrnal table GT_FINAL_OUTPUT
       with the Total price value .
       & updating the column Total price (Qty * price) in the Internal table
    After doing this  I am agin calling the below function
        CALL METHOD g_grid->set_table_for_first_display
        EXPORTING
        i_structure_name = 'GT_FINAL_OUTPUT'
        is_layout = gs_layout
        CHANGING
        it_fieldcatalog = gt_fieldcat
         it_outtab = GT_FINAL_OUTPUT[].
    At above function it gives  short dump or sometimes it does not update the  ALV screen with the new updated value of Total price .
    The short dump comes states  the error of unassigned field symbol.
    Kindly suggest a program where we can do manipulation at the editable ALV.
    Or solution to above issue .
    Regards,
    Anurag

    You should only be calling the SET_TABLE_FOR_FIRST_DISPLAY one time in the PBO of your screen,  otherwise you should be using the REFRESH_TABLE_DISPLAY method.  IN your PBO, check that the instance of the alv_container is alive, if so, do not call the SET method, rather call the REFRESH method.
    if alv_container is initial.
        create object......
        create object g_grid.....
        call method g_grid->set_table_for_first_display......
    else.
    call method   g_grid->refresh_table_display( ).
    endif.
    Regards,
    Rich HEilman

  • Adding a new button in the PO search summary in SRM 3

    Hello gurus,
    my requirement is to add a new button in the search summary for PO in SRM. Here's the task: every time a search is executed, the result is a list of purchase orders and every item has on the left two icons, "Show PO" and "Modify PO". There are merely a shortcut that brings the user to the PO screen in which the document is shown/can be modified.
    These two buttons are standard... my task is to add a new button in the template, "Copy PO", which should be a shortcut to the omonimous button which is present in the PO view screen. So I think this new button should work as the two standard ones.
    In order to do so, I looked into the proper template: SAPLBBP_PDH_SEARCH, screen 3003, which belongs to the package BBP_PRODOC_C (ITS service BBPSEARCH).
    I tried to "duplicate" the part referring to a standard button (e.g. the "display icon" chunk), obtaining a new chunk which represents the new button in the template.
    And... it works, in the sense that the button is visible and clickable. So far so good. Here's the questions since I'm not absolutely an expert on Jscript... My button, once clicked, triggers my FORM (PO_COPY) which should receive the header GUID of the Puchase Order.
    In debug I've seen that the form fails since it does not receive any parameter, and that's probably related to this section:
    (angle brackets omitted, it gave me an error posting tags in sdn)
    "JavaScript:HyperSubmit('PO_COPY', '`MAINLIST-LINE_NUMBER[j].value`')"
    The problem is I did not understand how to check for possible parameters of this HyperSubmit method. Also, I'd like to check what's the structure of MAINLIST (as far as I've seen,  MAINLIST-LINE_NUMBER[j].value is a parameter passed to the form) but don't know how to see that. Can anyone please direct me through these passages? Thanks in advance.

    Hi Matteo Montalto,
    Please let me know how you added new button.
    Regards,
    neelima

  • Blank row added after cancel button on create page

    Hi All,
    I have a create item page where I insert items into the item table in the database.
    On press of the cancel button on this create page, the control reaches a itemlist page with my old search criteria and result but with a new blank row added to it.
    Anybody know what's wrong?

    Sorry, I misunderstood your previous question. When the cancel button is pressed. I am using pageContext.forwardImmediately with parameters to forward back to my search page. Then in the search page controller I call the AM initQuery method to run the query. My initQuery method has the following code,
    StringBuffer whereClause = new StringBuffer(200);
    Vector parameters = new Vector(3);
    int clauseCount = 0;
    int bindCount = 0;
    setWhereClauseParams(null);
    if ((Program != null) && (!("".equals(Program.trim()))))
    whereClause.append("PROGRAM = :");
    whereClause.append(++bindCount);
    parameters.addElement(Program);
    clauseCount++;
    if ((PId != null) && (!("".equals(PId.trim()))))
    Number PIdNum = null;
    try
    PIdNum = new Number(PId);
    catch(Exception e)
    throw new OAException("AK", "FWK_TBX_INVALID_EMP_NUMBER");
    if (bindCount > 0)
    whereClause.append(" AND (P_ID = :");
    else
    whereClause.append(" (P_ID = :");
    whereClause.append(++bindCount);
    whereClause.append(")");
    parameters.addElement(PIdNum);
    clauseCount++;
    setWhereClause(whereClause.toString());
    if (bindCount > 0)
    Object[] params = new Object[bindCount];
    parameters.copyInto(params);
    setWhereClauseParams(params);
    executeQuery();

Maybe you are looking for

  • Using UDS Server with Java Client

    Has any one used a UDS Server and a Java client. we are trying to do this on a Crucial application and we are facing a problem of passing Objects between the server and client. If the Object being passed has a SO associated then it is possible to get

  • ORA-01031, ORA-01034 and ORA-27101 .....very urgent pls help.

    After I installed Oracle 8i Enterprise Edition on Win XP, default datanase was not creates so i tried manually creating it but it flashed this error while logging. Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Doc

  • Problem with option: enable this distribution point for prestaged content

    Hi, for past few days I have been focused on application deployment with SCCM 2012 R2 (I am learning SCCM 2012 R2 reading books, watching video trainings . . .). Having followed allong book Mastering System Center 2012 R2 Configuration Manager I also

  • End User's List of T.Codes

    Hi All, Can any one send me the FICO End User's list of T.Codes? Thanks & Regards, Mohan.

  • N900 USB Port issues, are they resolved yet?

    Reading various forums regarding this device prior to purchase and I am seeing a lot of complaints about the USB port not being very well designed. IT would seem that these ports fail within a few months and it may take 4+ weeks to get a repaired pho