Visual example of SVG bug in Muse

I don't know if any Adobe staff members have seen the comments from me or others about a new bug regarding how Muse imports SVG graphics. I thought I'd provide a visual example of what is happening.
In the example below I created a 500px wide by 100px tall layout within Illustrator CC containing some vector-based lettering.
I saved the .AI file and then exported a .SVG file, in 1.1 format.
When I place the exported SVG image within Muse I get the strange example below:
A white line 4 pixels tall has been added to the bottom of the graphic. The SVG goes from its original 500px X 100px size to 500px X 104px. I added the blue box in the background so the white line would show.
When previewed in Google Chrome the lettering looks like this:
The strange white line visible in Muse is no longer visible.

That video is informative, but that only tells users the various ways how SVG images can be placed into Muse layouts. I already know how to do that. The problem, which I illustrated above, has to do with how Muse displays SVG images once they are placed into a Muse layout. Muse adds a 4 pixel tall white line to the bottom of SVG images. The white line does not show up when previewing the layout withing a web browser like Google Chrome. But it does appear within layouts in Muse itself. Worse, the 4 pixels added create a headache when putting together some intricate designs.

Similar Messages

  • Barcode using flash - Denes, Pavel's examples use SVG, not flash

    Has anyone tried creating barcode using flash charts available in Apex ?
    I came across 2 examples, which are given below. These examples use SVG, but SVG is being retired by Adobe
    Denes Kubicek:
    Barcode ???
    Pavel MAREK:
    Re: Barcodes in HTMLDB - solved
    Ravi

    Ravi,
    I would be interested to see how you would utilize flash charts to generate barcodes in
    apex. Where does this idea come from?
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Could I use graphics svg in Adobe Muse?

    Hello, I'm looking for is it posible import graphics svg in Adobe Muse.
    Thanks and regards

    @Nathan – I'm relative new to Muse so bear with me…
    I also tried using the width and height controls in Muse to resize after pasting in the SVG code. Didn't work as expected. Rotating the SVG was no problem, scaling was. Maybe there is something in the code I'm using from Illustrator, that is preventing this.
    Here some SVG code from Illustrator that is defining width, height, viewBox etc.pp.:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
    <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
        width="54px" height="50px" viewBox="0 0 54 50" enable-background="new 0 0 54 50" xml:space="preserve">
    However, I looked up the SVG documentation at:
    Coordinate Systems, Transformations and Units – SVG 1.1 (Second Edition)
    and found some ways to scale the SVG. I'm not through with my testing, but it seems, that changing the viewBox parameters could be sufficient to scale the whole SVG graphic.
    Or we could use the transform property to get scaling properly. If we enclose the pure graphic code with the g tag, we could use transform like this:
    <svg>
    <desc>Scales the element enclosed with g to 200% (uniform scaling in x and y)</desc>
    <g transform="scale(2)">
    <desc>Include the code for the graphic here</desc>
    </g>
    </svg>
    For none-uniform scaling (x and y scaled differently) you could use a second argument in scale() :
    <svg>
    <desc>Scales the element enclosed with g to 250% in x direction and 300% in y direction</desc>
    <g transform="scale(2.5 3)">
    <desc>Include the code for the graphic here</desc>
    </g>
    </svg>
    Also possible is the insertion of the title tag like this:
    <svg>
    <desc>Scales the element enclosed with g to 250% in x direction and 300% in y direction</desc>
    <g transform="scale(2.5 3)">
    <desc>Include the code for the graphic here</desc>
    <title>This is my SVG graphic</title>
    </g>
    </svg>
    So if you mouse over the graphic in the browser you'll get a tool tip what the graphic is about.
    Uwe

  • Any fix for the .svg-bug coming up soon?

    Hi,
    please drop a line if you also encounter issues while implementing an .svg in MUSE.
    It’s supposed to work. But the dimensions don’t. At least on my desktop:
    It’s particularly critical in layout-mode, as a clear view is required in order to design the page. Positioning the logo here becomes quite a problem. It’s supposed to display in 400 x 150 px, but MUSE seems to bug.
    I’d like to use sharp vectors instead of pixel-based-workaround-files like .png.
    The fix is on my whish list for Christmas. What about you?
    G

    I just signed up for FIOS and am not experiencing your problem (had enough other ones instead).
    Go to mail preferences ~ click on a mail account ~ click on the advanced tab. The only settings that worked for me were: port 110 SSL OFF, authentication: Authenticated POP (APOP). If I remember correctly when I first set this up another window opened and I typed in my password and never had to do that again.
    Hope this helps.

  • JVidCap example has a bug!!! How to preview capture?

    I tried using the JMF example JVidCap:
    http://java.sun.com/products/java-media/jmf/2.1.1/solutions/JVidCap.html
    I want to implement video capture and be able to monitor the capture and I thought this example would be just what I need. Unfortunately, there is a major bug. When you start the application you can choose the video and audio formats and then you have to press "Start" to begin capturing. However, the monitoring doesn't work, the video does not appear. If you uncheck "Audio", press "Start" and then press "Stop" the monitoring component appears!
    I went through the source and here is what seems to be the problem. The example implements a class MonitorCDS which extends PushBufferDataSource. This class has a method getControl(), which is supposed to return a class called MonitorStream which is implemented in the example as well. The MonitorCDS class is used for the video data source, and the MonitorStream has a method getControlComponent() which returns the monitor component (the capture "preview"). Here is what it does:
    1. The application creates a video and audio datasources, the video being a MonitorCDS.
    2. If there is no audio, only the MonitorCDS is returned. However, if there is audio (and this is the default), the example proceeds by creating a merging data source from the video and audio.
    3. The application uses getControlComponent() to get the preview window. AND THIS IS WHERE THE PROBLEM IS! If there was no audio, the datasource is a MonitorCDS which has the preview component implemented in MonitorStream. If there is audio, the merged data source is of type com.ibm.media.protocol.MergingCDPushBDS and it doesn't provide a preview component!
    Is there a more simple way to implement a preview while capturing? The description of the example mentions 3 other ways to do this, but they all have their drawbacks, although it seems that the default data source implementation would have it's own preview component? Can anybody provide a WORKING example?

    Ok, figured out how to fix it. The mergind data source still exports the controls provided by the audio and video stream, you just can't get them with getControl(). Instead, use getControls() to get all controls and find the one you need. In the source code replace this:
    MonitorControl mc =
       (MonitorControl)datasource.getControl("jmfsample.MonitorStream");with this:
    MonitorControl mc = null;
    Object[] controls = datasource.getControls();
    for (int i=0; i<controls.length; i++) {
       System.out.println("control: " + controls.getClass().getName());
    if (controls[i] instanceof capture.MonitorStream) {
    mc = (MonitorControl)controls[i];

  • Bug for Muse CC

    Hello,In my overview when I click the button to go to another page of my website , it shows me a blank page after you or may come this bug ?

    Thanks you very much i resolved to problem
    Le 12 avr. 2015 à 11:12, VivekPassan <[email protected]> a écrit :
    Are you previewing it in "Preview" tab in Muse or from File > Preview Page In Browser ?
    Please try to preview it by File > Preview Site in Browser  and all the links should work.
    If same happens in the "Preview site in browser " then i would suggest you to share few screenshot or site URL with me.
    You can create a temporary URL from File > Publish to Business catalyst
    Regards
    >

  • Why can't I place svg files in Muse?

    I am running Muse CC 2014 but for some reason I can't place SVG files. Any idea why?

    Hi,
    …because they did not fix it yet.
    I’m also waiting for it to work. On my system, the dimensions set up is buggy, pfff

  • Nice bugs in Muse 2014.2.1.44 - text that moves on hover & failed cropping

    I spent the morning (4 hours) trying to work around Muse bugs - impossible.
    Cropping - The "hold the cmd key and move an image handle to crop" no longer works. The crop tool does allow cropping - that's good. No picture on my site will crop by doing a cmd-drag on a image side or top handle - it resizes the entire image. I used to do this fine... never a problem.
    Text Moving on Hover - I wanted to use a hover on text where the bottom border appears on hover -  a nice 3px line with color. (Just doing this for a standalone link - not inline text) You can do it using states with the text box, or a regular box around text;  but everything below it, including the footer, moves when your cursor enters the box to initiate hover. It actually moves up a pixel or two. UGH. I even put a 3px bottom border on in the normal state (and matched background color on the border) so that the box size would not change on hover - it still moves the entire page below it. (I can post a page if needed.)
    And a I have a home page with a composition widget that will no longer will click through to the components inside it - only the widget borders can be clicked. (I'll delete it and build it again.)
    HELP!

    When attempting Command key handle drag cropping, what's displayed in the label at the left of the Control Strip? "Image" or "Image Frame"?
    If you could provide the URL for a page containing an item that demonstrates the text moving on hover behavior it would be very helpful.
    For the composition widget content not being clickable, please verify the content is not locked (by doing Object > Unlock All on Page) and confirming there are no locked layers in the Layers panel.
    The current version of Muse is 2014.3.1.44 <Adobe Muse Help | Release notes | Adobe Muse CC>.

  • Captcha bug in Muse contact form

    Hi there!
    It is almost impossible not to enter the right captcha code the first time, but yes, I've received a message from my client there was no way to enter a new captcha after filling out the wrong code the first time. A refresh button is missing for the captcha code. The only way to solve this is to refresh the page in the browser. What happens then? You'll have to fill the form (including the carefully written message) again! Not too friendly for a visitor who wants to contact you :-)
    Seems this is a bug. Will this be solved in the next update?

    This form bug is much worse than I first thought.
    In order to get to this new line I've just naturally hit the return key.
    In Muse forms if you hit the return key in any field that isn't allocated as a multiple line field
    like say the "Address Field" of a form then the form is submitted instead of you naturally going to the next line as you thought you would.
    Every address in my 14,000 + contacts database has more than one line to their address so will hit return.
    You can then not submit the form at all, even if you correct the mistake it stops you saying:
    ERROR: An error occurred. Image verification failed. If you believe this is incorrect, please contact your system administrator or go back and re-submit the form.
    This is an
    unbelievable bug or a master lesson in how to upset your clients.
    I'd deliberately taken out the Capatcha because that failed most of the time and would not let you re-enter, now this!

  • SVG export to Muse

    Hi, I have problems exporting an simple icon vector from Illustrator CS5 to Muse. The export does well, but when I place the file in Muse I don't see the preview (only appears an empty frame), and usually when I save the file, it crashes.
    Anybody can help? Thanks!

    Hi,
    Could you please try some suggestion given in the following threads,
    SVG display problem win 7
    SVG files not rendering in Muse
    Do let me know if you have any question.

  • Bug on Muse CC release November?

    Sorry, I get a problem with the new Muse after updating. On pressing the buttons on the menu bar, only at pushing down the button, the text inside is mirrored in the corner left and up. Not only in the menu bar, same in text boxes too.
    The side is running from the first Muse release in September 2011.
    I haven´t had this problem before in the last versions. Is it a bug or a misstake of mine and can I fix it?
    Thanks
    Mark
    Here the site: http://www.alexanderseidel.net/index.html

    Before questioning for the browser. It`s Safari
    On Fireworks I´ve tested ist, no problems
    Mark

  • HTML 5 and Edge bug in Muse/Typekit Browser Re-draw

    I have a strange bug where any web fonts typed into a web page suddenly go very thin and almost unreadable the second an Edge or HTML 5 animation plays on the page.
    I have two pages on my web site that this happens on and it's the two pages that contain on one an Edge animation and on the other a HTML 5 animation created in Motion.
    What happens is that both the pages load correctly but about half a second later, as soon as the animation starts to load the page kind of flashes and all the text reverts to horrible thin version of the nice font I had used.
    I removed the two animations and the problem dissapears the fonts are then unaffected.
    Example of what it looks like before and after below:
    On the left before on the right horrible thin unreadable text the second the animation loads.
    The font is Josefin Sans Semibold downloaded from Typekit. 27pt and 14pt

    Yep. Same issue here. Does it make any difference when you remove the note?
    Right, so only the comma. I've tested it with addition of the missing comma. Works fine then. Annoying though.
    We're on
    Application Express 4.1.1.00.23 too.
    Edited by: Patrick Sinke on 24-jul-2012 10:56

  • Bug: Adobe Muse Menus Flicker At Every Click

    I'm a big fan of Muse. In the latest version that I downloaded today, whenever I click a menu, or navigate to a menu via the keyboard, or type a keyboard shortcut like control-d, the menus will flicker, sometimes for 3+ seconds before the menu shows or the action completes. This bug is unfortunately making Muse nearly unusably slow.
    Here's a video of the bug in progress:
    Does anyone have any suggestions on how to work around this or if Adobe's working on fixing this bug?

    It is an issue known to the Muse dev team and is slated to be fixed in coming releases.
    Thanks,
    Vikas

  • Extrernal Table Example (delete option) Bug

    Hi,
    There is a bug in the external table code (version 2.0.23) when trying to delete rows from the Oracle NoSQL DB.
    java -classpath lib/kvclient-2.0.23.jar:examples externaltables.LoadCookbookData \
    -store kvstore -host xxxx -port 5000 -delete
    the rows are deleted but default 10 rows are re-inserted.
    change the code in LoadCookbookData.java as follow
    private void run() {
    if (deleteExisting) {
    deleteExistingData();
    else
    doLoad();
    }

    Hello,
    That is actually by design. The idea is that someone could delete existing records before doing the load while testing out the cookbook. That way they would not have to reinit the store from scratch.
    Charles

  • The FTP bug in Muse 2014.2

    Hi Everyone, I am unable to ftp to GoDaddy with Muse 2014.2 no matter what settings I use, including basic FTP to my server's IP address. Is there a new Hotfix? I am running Muse on latest Yosemite. I would really like to get this working, so that I can use in browser editing with a client.
    I can ftp to the same account using FileZilla or other external ftp clients like ForkLift. So the login is fine and so is ftp. When I use Muse I get the error: "Could not sign you in. Check your user name and password, and try again." If I press "resume" over and over again, with the patience of a spinal surgeon, it will finally compete.
    Please help or advise if you can.

    Having the same issue here. Server, User Name and Password are all correct (double, triple, quadruple, quintuple checked).
    Still receive the following error.
    Ended up being a hosting-side error.

Maybe you are looking for

  • Generation of access report CNRCRMPRCUST999 failed.

    Dear Gurus,          I’ve createe one pricing condition table in Dev environment and now I’m trying to transport it in Quality environment. This table is for CRM only. In development every thing working fine but while transporting in Quality I got th

  • ATOM RSS feed authentication

    I've been polling for helpdesk tickets by utilizing the example found in the following link for several years and for some reason a recent update to Spiceworks has caused me to not be able to authenticate my user and pull the feed.  Here is the scrip

  • SOAP exception in RWB

    Hi XIer, I use Async SOAP adapter to send message to legacy system, and every thing is ok in IS, but there is an error in adapter engine, I came to RWB and see following error log. 2007-08-13 12:01:33 Error SOAP: response message contains an error XI

  • Quality Notifications tasks authorization

    Hello Experts, Need your advice on Quality Notification authorization access. In Quality Notifications once a coordinator enters the tasks we want to control who can have access to delete a task or change the user responsible for tasks. In other word

  • DDoS/Skiddie protection

    I wrote a tumblr about this a while ago and I thought I'd share. This'll help if some script kiddies(skiddies) are out to get you. http://parter.tumblr.com/post/340337853 - -your-boot