Html-codeproblems with Muse

When inserting following code as "Insert as html" in Muse,
<audio id="spa" title="harmonysounds" preload="auto" controls="controls" autoplay="autoplay" loop="loop" >
  <source src="blablabla.mp3" type="audio/mp3" />
  <p>harmonysounds</p> it wont play the music on a webpage as wanted.
This code embeds when looking inside exported html-page from Muse to Dreamweaver:
<div class="colelem" id="u80"><!-- custom html -->
     <audio id="spa" title="harmonysounds" preload="auto" controls autoplay="autoplay" loop >
  <source src="Golden Light (Excerpt).mp3" type="audio/mp3" />
  <p>harmonysounds</p>
So i have to clean the code in order for make it work!!!!!
Why
best Mikael

Hi Mikael
I'd try posting your question in the general Muse forum: http://forums.adobe.com/community/muse
The folks over there are Muse experts who will be able to give you more specialized help.
Good luck!

Similar Messages

  • HTML page with MUSE

    Hi everyone,
    I created a HTLM page with Adobe Muse to make parallax effect scrolling.
    I have imported that page, like folio, in to my DPS project.
    All page is working but the swipe to change the page are disabled.
    Why?
    There are some functions to resolve this?
    Thanx!

    This is because your parallax scrolling effect is taking all the gestures on the page. If you have an event handler for touch/mouse movements on the page then you get the movements and there's no way for us to know about them to do a change to the next page.
    Your options are:
    1) Add a region to your HTML page that doesn't have an event handler for mouse/touch movements on it and say "swipe here to change page"
    2) Add some UI in the HTML for page navigation and have it hyperlink to navto://relative/prev (or is it previous? I can never remember) and navto://relative/next
    Neil

  • When I design with Muse and export as HTML Dreamweaver doesn't attach the style sheets. Any answers?

    When I design with Muse and export as HTML Dreamweaver doesn't attach the style sheets when I open the files with Dreamweaver. Essentially when I design with Muse the files don't render the same with Dreamweaver. Is this a bug? Any work arounds?

    Then you will have to install a local server and use live view.  It's not that DW isn't rendering it or isn't attaching it, it's that Muse decided to use server-side processing to include it which is ok for a CMS practice when you are combining stylesheets for better caching, but it really isn't ideal for a single style sheet.  This is a shortcoming of Muse and one of the reasons many professionals don't back the product at the moment.  That and you can't actually buy Muse, so unless you are on a subscription you don't have it.  It's trying to fill a void for those who don't want to invest in the professional design tools like Fireworks or Photoshop or Dreamweaver, but want a cross between them to make designs.  If you have invested in the subscription though and want a better way to make layouts I highly recommend coding it yourself and using Fireworks or Photoshop to do the layout for you.  There is an excellent tutorial on the devnet (3 parts) to show you how its done ( http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html ).  Once you start using Fireworks or Photoshop you will realize just how limited Muse is in design.

  • How do I use Edge Web Fonts with Muse?

    How do I use Edge Web Fonts with Muse - is it an update to load, a stand alone, how does it interface with Muse? I've updated to CC but have no info on this.

    Hello,
    Is there a reason why you want to use Edge Web Fonts with Adobe Muse?
    Assuming you wish to improve typography of your web pages, you should know that Muse is fully integrated with Typekit. This allows you to access and apply over 500 web fonts from within Muse. Here's how you do it:
    Select a text component within Muse, and click the Text drop-down.
    Select Add Web Fonts option, to pop-open the Add Web Fonts dialog.
    Browse and apply fonts per your design needs.
    Muse also allows you to create paragraph styles that you can save and apply to chunks of text, a la InDesign. Watch this video for more information: http://tv.adobe.com/watch/muse-feature-tour/using-typekit-with-adobe-muse/
    Also take a look at these help files to see if they help you:
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-1.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-2.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-3.html
    Hope this helps!
    Regards,
    Suhas Yogin

  • How do I upload a website created with Muse using FileZilla?

    Hi,
    I created a website using Muse.  Everytime I try to upload the website through Muse, the uploading crashes.  The assets folder contains many large pdf files, so I think that is part of the problem.  I was able to upload the large pdf for the Muse website using FileZilla.  So, my question is:  How can I upload the necessary files created with Muse (html, scripts, etc...)  using FileZilla?  Any help would be appreciated.
    Thanks:)
    Derek

    Hello,
    Please use the option of Export as HTML in Muse and then try to Upload it to hosting server using filezilla.
    You can find this option in File > Export as HTML.
    Regards
    Vivek

  • Do we have any method to input data and store it in a variable with Muse?

    Hi, I know we can create contact forms, but I am not interested in that. Let's imagine I want to create an input for example:
    What's your name? ________________
    The user enter a reply: JOE
    And then I grab that data from a variable and I write:
    Nice to meet you JOE
    Could we make this in Muse?
    How?
    Cheers

    Hi Mr Mister,
    I will recommend that you use JavaScript. In fact, the easiest way that I can think of achieving this is via AngularJS
    I implemented the first basic example, which is what you requested, from the AngularJS's web site on this muse page - Demo - Angularjs, to demonstrate how it can be integrated with Muse.
    Screen cast of the demo page(, in case I accidentally break the Demo page above in future) -->
    This is how I implemented it. This code snippet goes into the 'Page Properties -> Metadata -> HTML for Head' -->
    <script>
      window.onload = function() {
      document.getElementsByTagName("html")[0].setAttribute("ng-app","");
      var scr = document.createElement('script');
      scr.src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js";
      document.getElementsByTagName('body')[0].appendChild(scr);
    </script>
    This is the code that you insert via 'Object -> Insert HTML' to place the input box on the page -->
    Name here - <input type="text" ng-model="yourName" placeholder="Enter a name here"> will auto update :
    And finally, this is the code that is repeated on the page to display the name, inserted via 'Object -> Insert HTML' -->
    <h1>Here - {{yourName}}!</h1>
    To explain this briefly, 'yourName' is the variable that you were talking about capturing via the input so that you can display that anywhere on the site. Let me know if you need more clarification on this.
    Recommended Watching: This small video here demonstrate how this can be achieved using Jquery as well as AngularJS - AngularJS Hello World - YouTube
    - Abhishek Maurya

  • With Muse, can you use In-browser editing of websites using Third-party Hosting Service Providers or not?

    On this page:http://www.adobe.com/inspire/2013/12/in-browser-editing-muse.html, it says you must use Adobes hosting. On this page: https://helpx.adobe.com/muse/using/in-browser-editing-websites-third-party-hosting.html, it indicates you can purely from the title. Which is it?

    Hi Bob,
    I found out how to do it, you drag the bounding box of the image container or rectangle to the edge of the browser boundary - as in the gray area around the edge - it snaps to it and the edges of the container go red to show this, and when its previewed it spans 100% of browser width. This video from Lynda explains how:
    Creating the header and the footer (Updated) from the Course Designing a Portfolio Website with Muse
    I can't upgrade as I have windows vista and the new version doesn't run on Vista, don't really want to buy a new computer just to run the latest Muse!
    Cheers!

  • New site created with Muse

    Why does my Muse site seem to "jumpy" when I navigate through it online and why are my navigation tabs larger online then when I view them in "muse"?
    http://www.roserwilliams.com
    Thank you
    Jody

    I don't see where an exact size can be designated in the panel widget for any of the states. And now I have lost the "white" background behind the text on my site. I did not make any changes to the background on the master page. The white background shows up in Muse but not in any web browser. Also how do I get the page to scroll to show the full open panel?
    What am I missing with Muse? Seemed so simple and it is just not doing what I expect it to.
    Please advise...http://www.roserwilliams.com
    http://roserwilliams.com/rose-s-recommendations.html (background scrolls but the page with the open panel does not scroll cuts copy off at the bottom.)
    Thank you
    Jody

  • How to create a table with muse?

    How can I create a table with muse?

    Muse doesn't natively support building tables at this time.
    However, you can add HTML table through Object -> Insert HTML option as a way around that.
    http://www.w3schools.com/html/html_tables.asp
    You could even try aligning a few text boxes with/without Stroke applied to create an editable tabular look in Design mode.
    Thanks,
    Vinayak

  • I have a mobile website and I would like the links to Google Maps, or any Map App, Can I do this with Muse?

    I have a mobile website and I would like the links to Google Maps, or any Map App, Can I do this with Muse?

    Hello,
    Are you talking about placing Google map in Mobile page created in Muse ? If yes you can do this by either using "Google Map Widget" or by placing " Embedded code" created at any map site.
    Here are the detailed steps for the same :
    How to Add a Google Map
    How to add a Google map | Adobe Muse CC tutorials
    Embedding HTMl in Muse
    Adobe Muse Help | Embedding HTML
    Please let me knew if you are willing to do something else.
    Regards
    Vivek

  • Is there any way to connect a mobile site made with Muse to a MySQL database?

    I've began the beginning stages of building a mobile site with the trial version of Muse and am really enjoying the functionality and ease of use. I'm eager to purchase the full version but one question stands in the way at the moment.
    The plan with this mobile site is to have it offer many if not all of the same features and functionalities of the desktop version. In order to achieve this I need to be able to sync the site up with a MySQL database, is there any way to achieve this in Muse? If not is it possible to do this once the site has been exported as HTML or uploaded to an FTP host?
    Thanks all!

    It would take a significant amount of work as you would have to change the pages to PHP. You would also lose any more compatibility with Muse.
    An alternative would be to host with Adobe Business Catalyst and upgrade to the eCommerce hosting plan and do your database functions using Business Catalyst Web Apps. It is a bit of a learning curve but in my opinion the better option than hosting on third party hosting and trying to convert everything.
    Keep in mind that even if you change the pages to php to add mySQL connection this would all have to be done by hand or with Dreamweaver. Muse does not support Database connectivity or dynamic content. The only real practical workaround is to use Business Catalyst along with Muse.

  • Age verification for website built with Muse.

    A site I'm building with muse needs to be able to first verify if the visitor is "18 or older" or "Under 18" only allowing them access to the site if they are 18 or older. I have seen this done on other sites using PHP script. I am a novice when it comes to code, however I with some basic instructions I can figure it out. I plan to host the site with c-panel access and I'm wondering if I can put the PHP script in the PHP fold in c-panel and then paste the HTML code in muse if this will work?? I know someone out there has built a site with Muse that has age verification. Any help would be massively appreciated.

    You can certainly ask people to tell you their birthday… assume they tell the truth and hope they are so dumb that they don’t just reset the script and pick a new date when your script informs them that they aren’t allowed in but there is no way a web site script can restrict people for age because it’s just a machine and can’t think.

  • Can a digital magazine like Flipping Book be embedded into a site designed with Muse? If so how?

    Can a digital magazine like Flipping Book be embedded into a site designed with Muse? If so how?

    I assume you are talking about Flipping Book Publisher software (www.flippingbook.com). I have done this very easily. In the flipping book software you need to make sure that the sharing feature is enabled and export out the .html file. Once you have exported and you have it installed on your website, click on the sharing button on your flip
    catalog software. You can then copy the embed code from this window and paste it into Muse (see attached screen shot).

  • Are people using or incorparating dreamweaver with muse?

    Are people using or incorparating dreamweaver with muse?

    While there is no direct integration between Muse and Dreamweaver, they can be used together. From within Muse, you can both import and export HTML. So you can import HTML created in Dreamweaver, or export HTML to be opened and edited in Dreamweaver.
    The only speedbump is that the code generated by Muse tends to be a bit messy. As a Muse software engineer puts it,
    You can output HTML code from Muse at any time, so if you chose to edit it with Dreamweaver that is possible, though we don't optimize our code for human-readability - we instead focus on performance, SEO, accessibility and compatibility.
    (Source)

  • How do I host sites created with Muse with other hosting providers?

    If my client prefers to use a third-party (non-Business Catalyst) hosting provider, is it still possible for me to build their site using Muse?
    Do my sites have to be hosted on Adobe Business Catalyst servers?
    I would prefer to use the integrated hosting that is included with Muse, but my client has been using a different host providers for a long time (and all of their sites are on the same service). It simplifies their billing process, so they have specifically requested that I configure their site to host with another provider. Is this possible?

    You can use Muse to build a website and then publish the site on a different host provider of your choosing.
    Follow these steps:
    Choose File > Export to HTML to export the entire set of site files to your local machine.
    Once you've exported a copy of all of the site files, you have two options:
    Use the FTP functionality in Dreamweaver to connect to the host provider using your client's account information, and then upload (Site > Put) the entire folder of files to your hosting account.
    Use a third-party FTP client to connect to the host server and upload the files.
    For more information, see the article titled Using a third-party FTP client to upload assets to a hosted Muse site.
    The FTP article is also applicable to this thread in the forum: My site doesn't work when I upload to my own web host, but it's fine in Preview. How do I fix this?

Maybe you are looking for

  • Adobe CS3 Suite -- How to Get InDesign and Acrobat Pro to Install?

    I uninstalled and deactivated my Adobe CS3 Design Premium from my 1st gen Macbook (2006) and installed it on my 3rd gen Macbook Air (2011). When I installed CS3 using the original discs, InDesign and Acrobat did not install properly. How to fix? My q

  • I got error msg while i called the Java Funtion in XI thro XSLT

    Hi, In XI, i need one method/function for getting the current date/time without any parameter, because its only shows the current date/time from getting the system. So,I have been created a simple method/function in java without any parameter for get

  • Problem in displaying loginpage when user press logout

    Hi everyone, I am new to Swing and facing an issue which might appear simple to you people. I have a Login Screen. When user supply credentials and press the login button, the next page is displayed which has a logout button. If user clicks this logo

  • Condition type inactive

    hi all, why condition type is inactive in sales order item level. when i save invoice it shows error in pricing. pls let me know. Regards Rams

  • Accessing on-line backup?

    When I bought PSE9, I received 2GB of on-line backup that promptly filled.  Since then my computer crashed and I need to retrieve the backed-up files from the internet.  I cannot find directions on how to do so.  Can someone help?