Need help adding live chat into Adobe Muse

Has anyone successfully added a live chat feature into Adobe Muse?
We're in final design stages of creating new site and would like to use a live chat program (Olark, Live Person, etc) -- have received the html embed, attempted to add the html into a page unsuccessfully.   We've added code in other pages. 
Thanks.

Most of those services would have given you a guide on where to place the code. The code mostly would be embedded in the head section. To do that in Muse, right click anywhere on the board-select page properties-metadata-head. Then paste the code there. Publish your site and you would see the chat widget on your site.

Similar Messages

  • Need help with integrating chat into Gui

    Hello Guys,
    I'm fairly new to Java and I have a quick question regarding a simple chat program in java. My problem is that I have a simple chat program that runs from its own JFrame etc. Most of you are probably familiar with the code below, i got it from one of my java books. In any case, what I'm attempting to do is integrate this chat pane into a gui that i have created. I attempted to call an instace of the Client class from my gui program so that I can use the textfield and textarea contained in my app, but it will not allow me to do it. Would I need to integrate this code into the code for my Gui class. I have a simple program that contains chat and a game. The code for the Client is listed below.
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    import javax.swing.*;
    public class Client
    extends JPanel {
    public static void main(String[] args) throws IOException {
    String name = args[0];
    String host = args[1];
    int port = Integer.parseInt(args[2]);
    final Socket s = new Socket(host, port);
    final Client c = new Client(name, s);
    JFrame f = new JFrame("Client : " + name);
    f.addWindowListener(new WindowAdapter() { 
    public void windowClosing(WindowEvent we) { 
    c.shutDown();
    System.exit(0);
    f.setSize(300, 300);
    f.setLocation(100, 100);
    f.setContentPane(c);
    f.setVisible(true);
    private String mName;
    private JTextArea mOutputArea;
    private JTextField mInputField;
    private PrintWriter mOut;
    public Client(final String name, Socket s)
    throws IOException {
    mName = name;
    createUI();
    wireNetwork(s);
    wireEvents();
    public void shutDown() {
    mOut.println("");
    mOut.close();
    protected void createUI() {
    setLayout(new BorderLayout());
    mOutputArea = new JTextArea();
    mOutputArea.setLineWrap(true);
    mOutputArea.setEditable(false);
    add(new JScrollPane(mOutputArea), BorderLayout.CENTER);
    mInputField = new JTextField(20);
    JPanel controls = new JPanel();
    controls.add(mInputField);
    add(controls, BorderLayout.SOUTH);
    mInputField.requestFocus();
    protected void wireNetwork(Socket s) throws IOException {
    mOut = new PrintWriter(s.getOutputStream(), true);
    final String eol = System.getProperty("line.separator");
    new Listener(s.getInputStream()) {
    public void processLine(String line) {
    mOutputArea.append(line + eol);
    mOutputArea.setCaretPosition(
    mOutputArea.getDocument().getLength());
    protected void wireEvents() {
    mInputField.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent ae) {
    String line = mInputField.getText();
    if (line.length() == 0) return;
    mOut.println(mName + " : " + line);
    mInputField.setText("");

    I think the easiest way to do it would be to cut an paste most of that code into your program. Then all you have to do is change some names so that it uses your textfield and textarea.

  • Need help uploading mp4 file into Muse

    Help please!
    I have a very nice quality, short animation I want to add to my Muse website's home page, but am stuck on putting the video file into the site. I have found that I need to change the mp4 into a swf (flash) file, but I couldn't get that to work either. (Flash gives me the error: "One or more files were not imported because there were problems reading them." when trying to import the mp4 and mov file to convert to swf. I have tried HTML5 also, but can't seem to get the code right.
    Can anyone help me get this video file into a Muse site? If that means I just copy a piece of code and put it into Muse that would be great. If it means I just have to drag and drop, that would be even better! (dreaming a little bit!)
    Thank you!

    HI,
    try some  suggestion given in following threads
    Re: Adding HTML5 Video in Adobe Muse
    Re: embedding video in Muse
    A useful video
    Do let me know if you have any question.

  • I just really need to know... After desigining my UX, how do I go about adding the image into ADOBE FLASH BUILDER to script on top of it?

    I just really need to know... After desigining my UX, how do I go about adding the image into ADOBE FLASH BUILDER to script on top of it?
    Any and all advice is welcome.

    Do you have different versions of the graphic novel pages, or is there just one version of the page? If there is one version, can you crop into the page without losing anything important?
    I would guess that there is one version, and that cropping into the page will lose something important. If that's the case, here's how I would handle it:
    Make a stage that is 14:9. The size doesn't matter, but 1400x900 could be a good starting point.
    Put down a background texture that fits well with the look of the other images. Make that fill the 1400x900 stage.
    Place your page graphics so that they are within the center 1200x788 area of the stage.
    Set the stage scalemode to "noBorder".
    You now have a layout that will work on all devices, as narrow as iPad, and as wide as iPhone 5. All without any code. On the widest devices you'll see a bit of your background pattern to the left and right of the page graphic. On the narrowest devices you'll see a bit of background pattern above and below the page graphic. But you won't lose sight of anything important.

  • Need help adding schedule to xcode 4

    I need help adding a tour schedule for an iphone app building an app for 13 djs and they want thier tour schedules added these need to be updated monthly is there a way to add this????

    I don't know if this is the easiest way but it works for me. I connect the DVD player to my camcorder (so it's the 3 plugs yellow/red/white on one end and a single jack into the camera). Then I connect my camcorder to the computer (I think it's through a firewire port). Then I just play the DVD and the footage is digitized via the camcorder and I import it into iMovie 4 as it's playing. I believe the camcorder is just in VCR mode.
    I have also used this method to transfer VHS tapes onto DVDs via the camera by connecting the VCR to the camera.
    I haven't had much luck with movies over about 40 minutes on iMovie. But if it's home movies, there may be a logical break. Do maybe 20 minute segments (it's also really easy on iMovie to add a soundtrack if these are OLD films with no sound.
    As you can see, I'm low tech!
    Good luck!
    Powerbook G4   Mac OS X (10.3.9)  

  • How to import video into adobe muse?

    how to import video into adobe muse?

    If you want to embed videos in your muse site, without using a service like youtube or vimeo, then you will need to manually upload the video files on the server and use them via the video tag available in html5, HTML5 Video
    To insert the video tags in your muse pages, you will need to use the 'Object -> Insert HTML' option.
    Since this option is not available in Muse, out of the box, I will recommend that you post this on our ideas section over here, https://forums.adobe.com/community/muse/ideas, and let our devs team know of this requirement.
    - Abhishek Maurya

  • How does one import an html template into Adobe Muse?

    I have downloaded several templates advertised as Muse templates but they all appear to be html5 templates. Can one import them into Adobe Muse?

    You can't import an HTML template. You need the original .muse file. If they are Muse templates you would have gotten them as a .muse file.

  • I need to contact live chat

    I need to contact live chat but the live chat button the website does not click  through please help thank you 

    how do you contact live chat from the ee website their button doesn't click onto anything! Help please! Thankyou 

  • How do I transfer columns of statistics from an email or QuarkXpress into Adobe Muse?

    How do I transfer columns of statistics from an email or QuarkXpress into Adobe Muse?

    Well, it really depends on the file format your friends are using to send you the video. iTunes will only play certain formats, think of it as........having a car that only takes premium gasoline. If your friends give you a million gallons of regular gasoline, sure it's gasoline, but it won't work in your car. (That's a bad analogy but it's the best I can come up with).
    So, if you open up your mail (are you using the Mail program on your computer, or going to a website such as gmail.com or yahoo.com to access your mail?), you should be able to right click the video and select to download it.
    This should download it to your "downloads" folder, it should be on your dock if you didn't remove it. Click it, and select the "More in finder" button at the very top of the "stack".  If not, click the "Finder" button on your dock, and on the left click the Downloads tab.
    Now, you must find the video. It should have the name of the video with the extension (an example would be...... firstbirthday.mp4). The extension is the ".mp4" part. Yours may be .mov, .mp4, .mkv, .avi, the list goes on and on, but it's very important.
    You can try dragging the movie into iTunes (drag it anywhere over where it says Music, Movies, TV Shows, etc.) and it should hopefully turn to a little green bubble with +1. If the extension is not compatible, then, converting will be needed and that's a bit more tricky. It's also a little more tricky to get them to play on your Apple TV unless you use AirPlay.
    Let us first know what extension these videos are in and we can go from there.

  • I need help adding a mouse motion listner to my game. PLEASE i need it for

    I need help adding a mouse motion listner to my game. PLEASE i need it for a grade.
    i have a basic game that shoots target how can use the motion listner so that paint objects (the aim) move with the mouse.
    i am able to shoot targets but it jus clicks to them ive been using this:
    public void mouse() {
    dotX = mouseX;
    dotY = mouseY;
    int d = Math.abs(dotX - (targetX + 60/2)) + Math.abs(dotY - (targetY + 60/2));
    if(d < 15) {
    score++;
    s1 = "" + score;
    else {
    score--;
    s1 = "" + score;
    and here's my cross hairs used for aiming
    //lines
    page.setStroke(new BasicStroke(1));
    page.setColor(Color.green);
    page.drawLine(dotX-10,dotY,dotX+10,dotY);
    page.drawLine(dotX,dotY-10,dotX,dotY+10);
    //cricle
    page.setColor(new Color(0,168,0,100));
    page.fillOval(dotX-10,dotY-10,20,20);
    please can some1 help me

    please can some1 help meNot when you triple post a question:
    http://forum.java.sun.com/thread.jspa?threadID=5244281
    http://forum.java.sun.com/thread.jspa?threadID=5244277

  • I embedded some HTML code into adobe Muse but not displaying when the pages are Exporting to HTML

    I embedded some HTML code into adobe Muse and when I published the remote site on business catalyst the (Add This widget) HTML code shows up but when I exported the site to HTML pages and view the index page in the browser (Safari, Chrome, Firefox) the (Add this widget) HTML code wouldn't display on any of the pages. I've used this code before on other Muse sites not sure what could have happened. Thnx!!!

    Hi,
    Please take a look at this post for a similar discussion : Re: When i export my muse website my youtube video links stop working. Why is this?
    Regards,
    Aish

  • I need help in re-installing my Adobe Acobat XI Pro

    I need help in re-installing my Adobe Acobat XI Pro

    What is the current situation that says you need to reinstall? What OS?

  • Is it possible to import xml into Adobe Muse to populate content similar to InDesign?

    Is it possible to import xml into Adobe Muse to populate content similar to InDesign?

    The only way I see this would be possible is through using JS that you can insert using the Object -> Insert HTML option, you may grab the XML to HTML code from here - http://www.w3schools.com/xml/xml_to_html.asp
    In order to test this out, simply download the sample XML file from the following location - http://www.w3schools.com/xml/cd_catalog.xml and save it somewhere locally. Now add this file to your Muse project using File -> Add Files for Upload option, it would then appear within the Assets panel.
    Add the code to your page and update the path referencing the file cd_catalog.xml to assets/cd_catalog.xml. Now on previewing the page in browser, you should see the populated HTML from the XML.
    Thanks,
    Vinayak

  • How to bring a website into Adobe muse for editing

    How to bring a website into Adobe muse for editing?

    Adobe Muse only allows .muse files for editing. You can't import a previously created page say in Dreamweaver into Muse.

  • Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Is it installed? If so, go to Applications and choose either Adobe Elements 12 Organizer, or Adobe Photoshop Elements 12>Support Files>Photoshop Elements Editor.

Maybe you are looking for

  • Help with scrollRectToVisible

    Hey, I am having a problem using the scrollRectToVisible method on a JScrollPane. I have an application where the layout is like so: JSplitPane (splitPane) ->JPanel on the right side (rightPanel) (and ignoring the left for now) -->rightPanel contains

  • Please Help: Cannot open Energy Saver on iBook

    When I click on the Energy Saver preference pane on my iBook (dual USB) G3 (running OS 10.3.9, with a 20 GB hard drive with 13 GB of space left), I get the message "Preferences Error, Could not load Energy Saver." This just suddenly started happening

  • Can I add a HTML code in adobe flash CS5 ?

    Hello ! I'm French I'm working in a flash template (like this one http://www.templatemonster.com/flash-templates/22075.html) and I would like add a HTML code. Could I ? If I can, where insert him ? Thank-you, have a good day, Jérôme.

  • Lookout 4.5 Pot Value vs 3.8 Pot Remote

    Problem: When I convert a 3.8 Program to 4.5, I have about 60 Pots (the example below is a basic example of the Pot) that should change to a value of 1 when pb1 is pushed and 2 when pb2 is pushed, otherwise it retains its current value. With 4.5 abou

  • Get rid of these Genius-Mixes in iTunes-Match

    Hi Folks, I'd really like to get rid of These Genius-Mixes in my iTunes-Match library. I've already tried to erase them on my PC via iTunes and synchronisation, but I didn't suceed. And unlike the other lists, you can't touch them until the X-Button