%100 width object not working

http://www.shutterlabcreative.com/index.html#services
I'm having issues with the %100 width object (texture at the top of this page) disappearing once it's converted from a normal image to a %100 width object. Does anyone know why this may be happening?

Hmm... the object doesn't appear to be exporting as 100% width. Could you please send us the .muse file at [email protected] along with a link to this thread so we can take a closer look? If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. Thanks.

Similar Messages

  • 100% Width rectangle not working

    I followed the instructions from this article, and it is not working. Any ideas?
    Creating a 100% width rectangle element that spans the entire width of a browser window.
    I did everything it says to do here, but it does not scan across the browser when I preview, and the "red lines" to detect when rectangle sides are flush with the page do not appear.
    I'm in CS6.

    Thank you for posting.
    I've created a small video to show how to create a 100% width rectangle element. Please refer to the following Link : http://screencasteu.worldsecuresystems.com/aish/2013-03-21_1414.swf
    Hope this helps.
    Regards,
    Aishvarya Raj Rastogi

  • Full-browser window flash, 100% width/height not working

    Hello.
    I'm pretty sure this issue has been discussed before but I
    couldn't find a suitable answer.
    I need my flash website to fill the whole browser window. In
    the 1st frame of my .fla file I used:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    In the Publish Settings, I used 100% width and height and
    Default scale mode.
    I even tried adding CSS styles to the .html file, defining
    padding and margin as 0px and applying them both to the body tag
    and to a custom class that was later applied to the object tag that
    embeds the .swf file on the html.
    Still, the latest versions of Firefox, Safari and Opera (all
    on Mac OSX Leopard) still display a border around the website.
    What can I do? Thanks in advance.

    Thank you for posting.
    I've created a small video to show how to create a 100% width rectangle element. Please refer to the following Link : http://screencasteu.worldsecuresystems.com/aish/2013-03-21_1414.swf
    Hope this helps.
    Regards,
    Aishvarya Raj Rastogi

  • Captivate 8 responsive designs: only one 100% width object per slide?

    I've been customizing some responsive themes to use two or more 100% width objects. As I work with the project, I find that some of these objects fall short of the right edge at some break points or, more commonly, at intermediate browser widths between breakpoints. One object (a PNG used as a branded header) started slipping off to the right, leaving a big gap at the left, after I worked with the file for several hours.
    I've been putting this behaviour down to file corruption, but I'm now seeing the right-side gapping even with a fresh new file built on the White theme that has only one slide with three lines of text.
    Looking closer at the themes, I can see that none of them have more than a single 100% width object. Is this simply a coincidence, or does this reflect a real limitation in HTML 5 output from Captivate?
    Should I adapt my themes to use other objects at sub-100% widths, where a little gap on one side or the other won't make much of a difference? In short, should I simply avoid putting more than one object per slide flush with any of the edges?

    Replying to my own question ...
    Has no one else seen this? Is this a known bug?

  • Can't create %100 width object

    I'm new to Muse and am having problems creating a %100 width object.
    I have a rectangle containing a fill image that is set to tile horizontally which is part of a group. When I snap the edge of the rectangle it's a blue line instead of a red one and does not indicate that it's a %100 width object.
    What could I be doing wrong? Or is this a glitch of some kind? Thanks so much!

    Hi
    With group objects we cannot do that as 100% width, please ungroup the rectangle and then it would be 100%.
    Thanks,
    Sanjit

  • 100% width rectangles not stretching 100% in mobile (phone view)

    Muse shows that the rectangle stretches to 100% width, but on iOS devices (iphone 4 and 5), there is a gap by the scroll bar. Since mobile is vital to web development, I would love to know when this fix is coming???

    Could you please attach the file again?
    Regards,
    Neha
    Re: 100% width rectangles not stretching 100% in mobile (phone view)

  • Quicktime objects not working on GoLive

    I have a GoLive CS2 Student Version. My Quicktime Objects are not working. I tried to drag the track objects to the page or to layer and no avail.
    Can you help me? I spent a whole day to finally figure out the Quicktime objects not working.

    Thank you for the support John,
    To explain what I am doing in more detail: I am basically making an image gallery with thumbnail buttons of each image. When the user enters this page I want to have the automatic slideshow of a few images. Then the user have the option to click on the buttons to see the images. I was able to make a slideshow in GoLive. But the transition is abrupt. According to the GoLive Help Menu there is a way to make the trasnition smoother using the timeline editor, but it is too difficult to follow up for me. So I downloaded another program called SWFn'Slide which was very easy to make the smooth transitional slideshow. Now I am trying to insert the SWF file into my page. But I can't figure out how to do it. In my understanding, I must place a layer on the page and on that layer I must place the SWF track from the Quicktime Objects tab. But I cannot drag any of the Quicktime Objects tools into the page. Again I am having a problem inserting a SWF file into the page.

  • A/R Invoice linked object not working all the time

    I have a LinkedButton that is set to SAPbouiCOM.BoLinkedObject.lf_Invoice. When the selected A/R Invoice has a Document Type of Service the link works. When the selected A/R Invoice has a Document Type of Items the link does not work and I get the following error:
    "No matching records found 'A/R Invoice' (ODBC -2028)"
    I there another property that I should be setting? I could not find anything.

    Hi,
    I've added a code sample that works fine for me.
    add this code to a simple vb project with the correct references....
    1. Enter a number of the Invoice you want
    2. click on the second EditText to set the linkedButton
    3. click the LinkedButton
    <i>Public WithEvents m_App    As SAPbouiCOM.Application
    Private Sub Class_Initialize()
    Dim oForm As SAPbouiCOM.Form
    Dim oDBDS As SAPbouiCOM.DBDataSource
    Dim oItem As SAPbouiCOM.Item
    Dim oLB As SAPbouiCOM.LinkedButton
    Dim oST As SAPbouiCOM.StaticText
    Dim oET As SAPbouiCOM.EditText
        Set m_App = getCurrentApplication()
       ' m_App.MessageBox "You have COM UI connection"
        'form
        Set oForm = m_App.Forms.Add("UUID")
        oForm.Height = 150
        oForm.Width = 400
        oForm.Top = 100
        oForm.Left = 400
        Set oDBDS = oForm.DataSources.DBDataSources.Add("OINV")
        'Edittext
        Set oItem = oForm.Items.Add("EditT", it_EDIT)
        oItem.Left = 200
        oItem.Width = 40
        oItem.Top = 50
        oItem.Height = 15
        Set oET = oItem.Specific
        Call oET.DataBind.SetBound(True, "OINV", "DocNum")
        'static
        Set oItem = oForm.Items.Add("StaticT", it_STATIC)
        oItem.Left = 50
        oItem.Width = 100
        oItem.Top = 50
        oItem.Height = 15
        oItem.LinkTo = "EditT"
        Set oST = oItem.Specific
        oST.Caption = "Business Partner Code"
        Set oItem = oForm.Items.Add("EditT2", it_EDIT)
        oItem.Left = 200
        oItem.Width = 40
        oItem.Top = 80
        oItem.Height = 15
        Set oET = oItem.Specific
        Call oET.DataBind.SetBound(True, "OINV", "DocNum")
        Set oItem = oForm.Items.Add("StaticT2", it_STATIC)
        oItem.Left = 50
        oItem.Width = 100
        oItem.Top = 80
        oItem.Height = 15
        oItem.LinkTo = "EditT2"
        Set oST = oItem.Specific
        oST.Caption = "Business Partner Decs"
        'linked button
        Set oItem = oForm.Items.Add("Linked", it_LINKED_BUTTON)
        oItem.Left = 180
        oItem.Top = 50
        oItem.LinkTo = "EditT"
        Set oLB = oItem.Specific
        oLB.LinkedObject = lf_Invoice
        oForm.Visible = True
    End Sub</i>
    Regards,
    Yaniv G.
    SDK Consultant,
    SAP Manage Israel.

  • 100% Width Slideshow Not Displaying Images Correctly In Phone Version...

    Hi all... Again.
    2nd issue encountered tonight since working on the mobile version of my current project. Having copied, pasted and resized the 100% width slideshow from the homepage of my Desktop version to my Phone version and after having applied different resolution images and published successfully, I made some edits to a different page (the main "About" page, nothing to do with the Homepage) and published only to find that the images in the slideshow are now not displaying correctly...
    After the first (of eight) image, it seems to skip the next one entirely and apply the text for the 2nd image to the 3rd image, the text for the 3rd image to the 4th image and so on... Additional to that, it seems to also randomly use the Desktop resolution images for four of the images... WHY?!
    I made NO changes to the slideshow since the last publish so WHY has it changed?
    I've tried re-applying the correct images and re-uploading; no change. I've tried doing a full-upload; no change. I've tried closing down Muse and trying again; no change. My only option left really is to either update to the October 27th edition of Muse (which I was deliberately holding off on, until I completed this project, which aside from the mobile version is done!), or to revert back to the previous version of Muse in the hopes either of these will resolve the issue. Only problem with that is I've started using the text sync features and the new contact form features (such as ReCaptcha, which is a pain in and of itself if you want to use two forms on one page!! Heaven forbid!)... So I'd really rather not have to revert back but I also don't really want to risk screwing anything up further with the latest update, as has happened on more than one occasion for me when in the middle - or near the end - of projects!
    Is anyone else encountering this? Anyone able to replicate it? Anyone know how to fix it? I'm really reluctant to continue on with the Phone version of this project until I know I won't keep encountering this sort of thing...
    Any help would be appreciated.
    Thanks.

    In the words of Gomer Pyle, "Well Golly!"
    Thanks. lol

  • Display/Change/Delete of planning object not working in BPS

    Hi Guys
    While displaying or changing object in planning workbench, system is taking too long to process the request and request doesn't completes even in hours. The following operations are not working
    1. Delete Planning Area/Level.
    2. Display/Change planning Level.
    3. Display/Change Planning Layout.
    4. When clicking on Variable Tab of infoarea.
    5. When clicking on Set variable button.
    In all of the above mentioned cases System displays a message "Generating Environment" and it runs for indefinite time.All this is ha0
    We are on Suppport Pack 12 of BI NetWeaver(2004S)and we are using BPS for our planning application.
    Thanks
    Tripple k

    Hi Dear
    Thanks for info. i know that it will take some time to regenerate the BPS classes after making changes in cube but in my system its taking at least half an hour which i think is too much.....i don't think that its normal behaviour of system...
    Thanks
    Kamal

  • Create Type as Object not working in linux oracle 11g

    Pleae refer to the following simple create type as object statement.
    CREATE OR REPLACE TYPE EC_VIEWABLETYPES as object ( CASE_TYPE_ID NUMBER)
    It is working in oracle 11g and windows server 2008 environment.
    But it is not working in oracle 11g with linux environment.
    I am executing this statement as dynamic sql as follows
    CREATE OR REPLACE PROCEDURE TEMP_SP
    AS
    BEGIN
    DECLARE vcType VARCHAR2(30);
    BEGIN
    SELECT OBJECT_TYPE into vcType FROM USER_OBJECTS
    WHERE OBJECT_NAME='EC_VIEWABLETYPES' AND OBJECT_TYPE='TYPE';
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    EXECUTE IMMEDIATE 'CREATE OR REPLACE TYPE EC_VIEWABLETYPES as object ( CASE_TYPE_ID NUMBER) ';
    COMMIT;
    RETURN;
    END;
    END;
    exec TEMP_SP
    please let me know what i am missing ?

    And error is:ORA-00600: internal error code, arguments: [kothc_uc_md5:lxerr], [], [], [], [], [], [], [], [], [], [], []
    ORA-06512: at "ATIPAGENT.TEMP_SP", line 10
    ORA-01403: no data found
    ORA-06512: at line 1
    ..Query:exec TEMP_SP...Previous Query:CREATE OR REPLACE PROCEDURE TEMP_SP AS BEGIN DECLARE vcType VARCHAR2(30); BEGIN
    SELECT OBJECT_TYPE into vcType FROM USER_OBJECTS
    WHERE OBJECT_NAME='EC_VIEWABLETYPES' AND OBJECT_TYPE='TYPE'; EXCEPTION WHEN NO_DATA_FOUND THEN
    EXECUTE IMMEDIATE 'CREATE OR REPLACE TYPE EC_VIEWABLETYPES as object ( CASE_TYPE_ID NUMBER) ';
    COMMIT;
    RETURN;
    END;
    END;

  • Substituting View object not working.....

    Hi All,
    I am working on iSupplier portal, I am trying to add requeter name on the line lavel of PO details page of iSupplier.
    But the by substitutions of Standard View Object is not working.
    1. I have extend the PosViewLinesVO object with Custome PosViewLInesVOEx
    2. Add the View Object in the ViewOrderAM.class
    3. Go to SSTest.jpr file and add the substitutinons by edit optin.
    4.Then trying to test on the standalon . But the it's not working
    5. The View PosViewLInesVO having viewlink with PosViewShipmentsVO so i am unable understand, if i am add a new column requeter name on the personalization than it giving error.
    6. I f i open the about the page is shown both the view original view PosViewLineVO and the Extend View PosViewLinesVOEx.
    Can any body help me. why the View Substitution is not working.
    I have the screenshots of the error but am not able to attach it over here. Could you please ping me your ID so that I can forwards the Error Msg file to you guys.
    In the doc,I have attached the screen sort and the requirement details.
    Help Appreciated.
    Thanks

    If you are working on R12, there are some bugs with VO extension :
    1)If a expert mode VO based on EO is extended and new attributes from EO are included, the new attributes turn out to be transient.The resolution is you would have to manually edit the extended VO xml file and include EO reference in new attributes.
    2) If expert mode VO based on sql query is extended all attributes automatically become Update : Never in extended VO, you need to go to each attribute in VO wizard and change the type to Update:Always.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Java object with ArrayList of custom objects not working

    I have a custom java object that has an ArrayList of another set of custom objects (code listed below). I can pull back a Customer object (to flex client) and it's recognized as a Customer action script object, but the ArrayList in the Customer object is not recognized as an ArrayCollection of Accounts. Instead it is an ArrayCollection of Action Script Objects.
    At first I thought something was wrong with my action script Account class, but then I tried to pull back just an Account and it was recognized as an action script Account. It's just when I have my Customer object with an ArrayList of Accounts that it isn't getting converted.
    Is there something else I need to do to have that ArrayList be recognized as an ArrayCollection of Accounts on the Flex Client side? Is there some way of specifying what type an ArrayCollection is mapped to?
    Thanks in advance for the help!
    public class Customer {
         private String name;
         private String address;
         private ArrayList<Account> accounts;
         public Customer(){
         public String getName(){
              return name;
         public void setName(String str){
              name = str;
         public String getAddress(){
              return address;
         public void setAddress(String str){
              address = str;
         public ArrayList<Account> getAccounts(){
              return accounts;
         public void setAccounts(ArrayList<Account> list){
              accounts = list;
    public class Account {
         private long accountNumber;
         private String type;
         private double balance;
         public Account(){
         public long getName(){
              return accountNumber;
         public void setName(long l){
              accountNumber= l;

    I accidently found how to make this work. I may have missed something while reading about blazeDS reflection, but I thought I'd pass this along anyway.
    What I have is I have an class A. In class A I have an arraycollection of Class B. If I want that arraycollection to return to the server with the correct class, then I need to include Class B in the compiled swf. How I have done that is to create a dummy variable of type B. Importing B will not work you actually need to have a member variable of type B even if you don't need it.
    Example
    import dataobjects.B;
    [RemoteClass(alias="dataobjects.A")]
    public class A {
       private var _b:B; //This is never used, but needed to include B object in swf to be reflected.
       private var_ bList:ArrayCollection = new ArrayCollection();
      public function A(){
      public function set bList(list:ArrayCollection):void{
         _bList = list;
      public function get bList():ArrayCollection{
        return _bList;

  • CS4's 3d object not working in snow leopard

    when my system was leopard, photoshop cs4's 3d object is working properly...but when i upgraded it to snow cs4 indicates that the feature no longer support it....why was it? T_T

    when my system was leopard, photoshop cs4's 3d object is working properly...but when i upgraded it to snow cs4 indicates that the feature no longer support it....why was it? T_T

  • Setting Horizontal Menu widget to 100% width doesn't work

    Hello, I'm trying to set a Horizontal Menu widget to 100% width within Muse so it spans across the browser, and it looks just fine while I'm editing it into Muse, but when I attempt to view it on any browser, I get a shorter menu, floating to the left of the screen. Does anyone know what could be wrong?
    As you can notice in the attached screenshots, #1 is the Adobe Muse view, the menu's width is being scaled to the limit of the browser's view, and the Width setting clearly shows as "100%". In screenshot #2, is the exported site viewed on Google Chrome, with a smaller menu floating to the left.
    I've been searching an answer for days, but can't find anyone with a similar issue. Any insights would be greatly appreciated!
    (I have an ongoing project with this problem holding it back, I just remade it on a new, clean file to replicate the issue and get the screenshots you see here)
    Thank you!

    I think videos will be more helpful :
    https://www.youtube.com/watch?v=rOggrg-svPs
    https://www.youtube.com/watch?v=eQo_k9WiLms
    http://tv.adobe.com/watch/muse-feature-tour/muse-design-for-flexible-browser-width/
    Additionally, you can try to use the menu from muse library :
    http://muse.adobe.com/Default.aspx?CCID=32494&FID=162755&ExcludeBoolFalse=True&PageID=1524 0812
    Thanks,
    Sanjit

Maybe you are looking for

  • Likelihood of occurrance of NVIDIA GeForce 8600M GT problem

    We have an MBP with an NVIDIA 8600M GT and are concerned about the well-known [video issue|http://support.apple.com/kb/TS2377]. On three occasions, the screen remained blank after the computer was woken up from sleep. An Apple Genius wasn't able to r

  • PreparedStatement and open cursors

    Hi, i write an application where it is necessary to get a lot of preparedStatements in one connection. The preparedStatements are used only once and they are closed after the usage. But it seems to me that this close has no effect. Depending on the v

  • Master Data Report

    Hi, I want to create a master data report which contains just charactristics no key figures. For excample I want to show which client has which type of rate. How can I do this? Everytime I get an error message that I have to determine a key figure in

  • Problem in Exporting table to Excel2003

    hi, I have used the sample ExporttoExcel2003 component avaliable for download on the SAP site, for my project. It downloads the tables into Excel2003 perfectly fine. <b>however, when the string in the table contains these three characters: & , < , >

  • How to transport Query variant used in APD

    Hello Experts, I have created 2 query variants for a query in Development system. And, these variants are being used in APD. Now, when APD is transported to next system, query variants does not exist in next system, so cannot execute APD. Please let