How do you add a comment box

how do you add a comment box in iweb?

There are 3rd party comment sites that can be added to an iWeb site for visitors to add comments: Disqus, Intensedebate and Echo are just 3 that are available.
Guestbooks are another way for visitors to make comments primarily for your viewing but you can embed the comment page in a website like in this demo page: Guestbook.
This is an example of the Disqus comments from Roddy's iWeb for Musicians site: Disqus Comment in a Scrolling iFrame
OT

Similar Messages

  • How do you add a combo box into a Jfilechooser?

    how do you add a combo box into a Jfilechooser?
    thanks

    See the API For JFileChooser
    public void setAccessory(JComponent newAccessory)Extend a JPanel or Such like, put your Combo Box on it, fiddle around with event handling code for the ComboBox..
    Set an Instance of that as The Accessory for the JFileChooser.
    Look In Your Docs:-
    <JAVA_HOME>/Demo/jfc/SwingSet2/src , unpack SwingSet2.jar if neccessary
    In there is a demo of using A JFileChooser with an accessory Panel, and Source code that is adaptable...

  • How do you add a Comment when editing document in Word for ipad?

    How do you add a Comment when editing a document in Word for ipad. I've subscribed to Office, so have full editing functions. Can Track changes etc in Review, but can't see how to add a marginal Comment.

    Comments, like they are in Numbers for OS X, are not really supported in iOS. Normally, they rely on a mouse-over to read them. Since there is no mouse on the iPad, it stands to reason they are not there.
    I believe Eric Ross's comments is more geared towards used said Numbers docs on iWork.com.

  • How do you add a combo box item in Forte?

    Okay how do I add items to a JComboBox using the Forte form editor.

    String stuff = new String{"1", "2", "3", "4" };
    I think you ment to make stuff an array of String.
    In component inspector under Code Gneration
    select post creation, select the ... box and type in
    new JComboBox(stuff); or = new JComboBox(stuff);
    might have to put the equal sign in there I forgetI did this and I am not getting any items dropped down.
    >
    >
    Hope that helps
    Jim

  • HT201320 How can you add an email address in your email box in an ipad

    How can you add your e-mail address in you iPad mail box?
    Rita

    Go to settings.app -> mail, contacts, calendars-> click "add account"
    Hope this helped

  • How do you add artwork in itunes 11.0.4.4?It was easy on previous versions by either drop and drag or right clicking the song and pasting the artwork in the box...Is there an easy solution?

    I recentlydownloaded Itunes version 11.0.4.4 and am having difficulty adding artwork to any new folders of music i add to my ipod classic.In prior versions you could either drop and drag or right click on the song,go to "get info" and paste and image into the artwork tab.Can't do either of these now.How do you add artwork in the latest version of Itunes?Any help would be greatly appreciated.

    I had the same problem and i came up with a very simple solution that worked for me.
    Step 1 Look for the folder where your mp3 is stored. (example My Music Folder)
    Step 2 Right Click on the music file and select properties
    Step 3 On the General tab UNCHECK read only and click OK or Apply
    Step 4 Go to itunes and rightclick the music title
    Step 5 Select Get info and paste or drag your Album artwork at the Artwork Tab.
    Hope this helped.

  • How do you add a video clip to a slide show?

    How do you add a video clip to a slide show using elements 12?

    You can import some very short video clips into Photoshop and make gifs.  I can import short (10 second or so) .mvi video clips I've taken with my point and shoot camera.
    Use File ->Import->Video Frames to Layers
    CS3 doesn't recognize .mvi files until you enter *.* in the box, hit load, then find the file you want.
    After the file has been loaded, go to Windows, and check Animation.
    After the Animation bar loads, go to the right side arrow, check Make Frames from Layers.
    Then Save for Web and Devices, and you've got your gif.
    I find it much easier to use the separate software.

  • How do you add an image in the signature

    Hi,
    How do you add an image to the signature area.
    The Insert/edit image is not available when in My Settings | Personnel Info | Signature
    Regards
    Ray Farmer

    You need to link the image.  See the example for the Canada flag below.
    <img src="http://forums.ni.com/ni/attachments/ni/130/6908/1/Canada-small.PNG" border=0>
    Replace with the image you like.  This goes into the signature box within the profile tab of the personal settings.
    RayR

  • How can i add the check box beside the directory?

    how can i add the check box beside the directory? anybody can help?
    tis r the panel of my program :
    // FileTreePanel.java
    // JPanel for displaying file system contents in a JTree
    // using a custom TreeModel.
    package com.deitel.advjhtp1.mvc.tree.filesystem;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    import com.deitel.advjhtp1.mvc.tree.filesystem.FileSystemModel;
    public class FileTreePanel extends JPanel {
    private JTree fileTree;
    private FileSystemModel fileSystemModel;
    private JTextArea fileDetailsTextArea;
    public FileTreePanel( String directory )
    fileDetailsTextArea = new JTextArea();
    fileDetailsTextArea.setEditable( false );
    fileSystemModel = new FileSystemModel(
    new File( directory ) );
    fileTree = new JTree( fileSystemModel );
    fileTree.setEditable( true );
    fileTree.addTreeSelectionListener(
    new TreeSelectionListener() {
    public void valueChanged(
    TreeSelectionEvent event )
    File file = ( File )
    fileTree.getLastSelectedPathComponent();
    fileDetailsTextArea.setText(
    getFileDetails( file ) );
    JSplitPane splitPane = new JSplitPane(
    JSplitPane.HORIZONTAL_SPLIT, true,
    new JScrollPane( fileTree ),
    new JScrollPane( fileDetailsTextArea ) );
    setLayout( new BorderLayout() );
    add( splitPane, BorderLayout.NORTH );
    JCheckBox check = new JCheckBox("Check me");
    add( check, BorderLayout.SOUTH );
    public Dimension getPreferredSize()
    return new Dimension( 400, 200 );
    private String getFileDetails( File file )
    if ( file == null )
    return "";
    StringBuffer buffer = new StringBuffer();
    buffer.append( "Name: " + file.getName() + "\n" );
    buffer.append( "Path: " + file.getPath() + "\n" );
    buffer.append( "Size: " + file.length() + "\n" );
    return buffer.toString();
    public static void main( String args[] )
    if ( args.length != 1 )
    System.err.println(
    "Usage: java FileTreeFrame <path>" );
    else {
    JFrame frame = new JFrame( "JTree FileSystem Viewer" );
    FileTreePanel treePanel = new FileTreePanel( args[ 0 ] );
    frame.getContentPane().add( treePanel );
    frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    frame.pack();
    frame.setVisible( true );
    }

    You can maybe explore button and forms feature in InDesign. It was added in CS6.

  • How do you change the click box properties (line colour and width) in Captivate 7.0?

    How do you change the click box properties (line colour and width) in Captivate 7.0?

    Yes certainly, we can do that, insert a smart shape and use it as a button, then go to the properties pane, change the Alpha to 0, that will make it transparent, and add the stroke color as red and increase the width.
    In case of a button, you have to select button type as transparent and do the same.
    Thanks.

  • How do you add album art in iTunes 12? everything I've tried doesn't work

    how do you add album art in iTunes 12?

    Two methods:
    Right-click on the album, select Get Album Artwork.  iTunes will determine whether this album is available from the iTunes Store and, if so, download the artwork image from the Store and associate it with the media files.
    Right-click on the album, select Get Info and then the Artwork tab,  Then:
    click the Add Artwork button, navigate to and select an image file on your computer, or
    drag and drop an image file from your computer to the Artwork tab, or
    copy an image to the clipboard (for example, from a web page) go to the Artwork tab and press Ctrl-V (there's a bug in iTunes 12.0.1.26 such that right-click > paste does not work here
    For the second method, you can also access the "old style" editor window from iTunes 11 by holding down Shift as you right-click > Get Info.
    Lastly, there are three cases in which you can follow these procedures but artwork is not correctly associated with or embedded in your media files:
    your media are in a format that doesn't accommodate embedded artwork - typically WAV files.  To embed artwork you'll need to convert to another format - Apple Lossless or AIFF if you want to preserve lossless quality, AAC or MP3 otherwise.
    your media files are read only - to fix this, use Windows Explorer to find the folder that contains your files, right-click and select Properties.  On the General tab there's a check box labeled "Read-only" - if this is checked, or is grey (sometimes blue), click the box so that the flag is unchecked and the box is white.  Click OK, and then OK again when the "Apply changes to this folder, subfolders and files" option selected.  Now try adding the artwork again.
    Windows permissions issues are preventing iTunes from updating your media files (there's some anecdotal evidence of a change in this behavior in iTunes 12).  See turingtest2's notes on Repair security permissions for iTunes for Windows for advice on fixing this, then try adding the artwork again.

  • How do you add folders in hotmail on iPad

    How do you add hotmail folders on iPad

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    One of the ways to get around the limitations of POP mail accounts on your iPad is to activate an iCloud account, which is not POP mail, but IMAP mail. Then go into the configuration of your POP mail account and have the account sutomatically forward your email to the iCloud account.
    After you have your iCloud email account it is easy to add and delete email folders.
    Just open the Mail app and tap on iCloud under Accounts on the left of the screen.
    Tap Edit at the top of the screen.
    Tap New Mailbox at the bottom of the screen.
    Name your new Folder and tap Save.
    http://ipadhelp.com/ipad-help/how-to-add-folders-to-email-on-the-ipad/

  • How do you add safari favourites with the new iOS?

    How do you add safari favourites with the new iOS?

    Do you mean you want to sync your desktop Safari bookmarks to iOS? This is done in iTunes when you sync the iOS device. There is a box to check to make this happen.

  • How do you add a Facebook, Twitter and Yelp links?

    How do you add links for Facebook, Twitter and Yelp onto a website created by using iWeb? I'm using a hosting service to get my site on the web.

    Hi 80smetalhead. My first help post, so hope it helps.
    First off choose wether you are using a icon or text.
    For a few free Facebook/twitter/in icons try: http://www.jordankennedy.com/jk/Free_Stuff.html
    Ether way the process is the same. Select the Text/iCon. Then go to "Inspector" in the bottom right hand. (Blue circle with a "i" in it)
    Then select the sixth iCon across. (blue circle with arrow)
    Click "Enable as Hyperlink"
    Then under that Link to: External Page <--this should be selected.. If not select it.
    Under that will be a box with a link already in there. usually a apple link. change that to your Facebook/Twitter address.
    And that hopefully should do the trick

  • How do you create a seach box in MUSE?

    how do you create a seach box in MUSE? - viewer enters a keyword and will be lead to correct product

    Hi there - For questions about individual programs, you're better off posting in their specific forums. Here's the Muse forum: http://forums.adobe.com/community/muse/general_questions_about_adobe_muse
    That being said, there is currently not a search bar widget that can be added to a site directly from within Muse. However, you can add custom HTML code to your page, with a method such as this: http://www.ehow.com/how_6772398_embed-google-search-bar.html. Just add the custom HTML to your Muse page by going to Object > Insert HTML.
    This page might also help you out: http://www.adobe.com/products/muse/embedded-html.edu.html
    Good luck!

Maybe you are looking for

  • IOS 5 Release Notes - Detailed Descriptions

    Hi, Where can I find more detailed descriptions of the iOS5 Software Update?  Below is what I received when I downloaded the update, but this is very vague.  I want to know more about the iMessage. Thank you. iOS5 Software Update Thisupdate contains

  • Recording audio from rtp session

    Dear all; I am not sure that this is the right forum to post my question. I am new in jmf and i want to record calls from nortel Pbx for example and others like asterisk PBX which records all in and out calls.first of all is it possible to use jmf fo

  • Connectivity between MacPro and MacBook

    I have a MacPro (bought in 2011) and have just bought a new MacBook Pro. Is there any way I can connect the two so as to sync the work done during the day on my MacBook to the Pro? the guy in the store sold me a Thunderbolt to Thunderbolt cable and t

  • Splitting and renaming clips in FCE4

    How can I split a clip up into smaller clips and rename then? Whenever I try to copy or duplicate them I get the same copy for all. I was trying to change the name as well and it seems I can't make them independent of each other. Does anyone know how

  • Mac OS X 10.4.11 Server gets extremely slow - virtual memory huge.

    Hi there, we use a XServe G5 with Mac OS X Server 10.4.11 installed for Directory and File Services. Since 2004 the server worked without any problems. But now it gets really slow sometimes. Using the keyboard connected directly to the XServe it is e