text block, no packaging, moving up like browser width decreases

Hello

I have a block of text in one of my breakpoints, that, when I adjust my browser window to check collisions, etc., he dresses not and moves upward into my position.  on all other breakpoints, wrapped as it should, and other blocks of text on the BP even behave as they should. I even tried to delete the offender and copy of text blocks in the operation, but he always does.  Any thoughts?

See you soon

06:00 here...

delete the image under the text

Insert a slider widget to empty library instead of the drop down menu on the right

remove the arrows, next, previous etc just make a single 'keeper' for the image and add images in the widget

size on page etc as the original image. Make sure that you use the layers panel to organize the slider under the text.

which toured... I can send you your original with the change file if you are having trouble... nice site by the way.

Tags: Adobe Muse

Similar Questions

  • Text block blocking the relaxation area

    Hello.

    I have a problem with blocks of text within a trigger (eg. widget ToolTip).

    What I've done so far:

    1. Insert the ToolTip widget.

    2 customize the trigger:

    2A. create a background (race up and down and a small point like a fill on the right side)

    2B. set a text block (smaller than the container of the trigger) inside the area of relaxation with text (placed in the middle of relaxation)

    2 c. oblige States to turnover etc for the textframe.

    3. overview in Muse and preview in the browser (Safari). same problem

    The clickable area / rolling worked only where there is no text. Means outside the textframe (but inside the trigger area stille), everything works fine (reversal / clickable).

    But as soon as the cursor of the hit of the text (even between the letters), mousepointer swaps to normal and you are anable to click more.

    4. has tried to organize the relaxation for the back (you can only organize the whole Tigger, not only the text inside block). Not working, it cause displacement the target order.

    What can I do? Is there one solution other than the use of a button in Photoshop?

    Any help is appreciated more than.

    Best

    Hoschi

    Hi Aish,

    I thought about it. The block of text was in the correct position inside the trigger. There was a group has above triggers, so it has blackened.

    Problem solved...

    Thx for your help and your patience.

    Hoschi

  • Wobbly downloaded text block

    A way to solve this problem (took place a few more times)?

    Design mode:

    Screen Shot 2014-01-20 at 9.44.12 AM.png

    Publish and view of Safari browser:

    Screen Shot 2014-01-20 at 9.44.40 AM.png

    Hello

    Page layout and rendering of text varies depending on the browser and browser (and Muse and browser). The smallest of these differences can cause line breaks occur at different locations in the text stream. This is what is happening here. For example, Muse welcomes "Vermont" on line six, while the browser pushes him to seventh.

    Your design should take account of these differences in making the block of text a bit bigger and moving the text block 'Details on page' a little lower.

    I hope this helps.

    Abhishek

  • Rotate the text with the character within the text block style

    I would like to apply a paragraph or character style to a certain character in a text frame. I would need to rotate 90 degrees in the framework, separate from the other text. Is this possible?

    Insert the text block in the block of text as an anchor and rotation you need.

  • Why my text block go dark?

    Hi, I had a big problem when editing on indesign.

    Here's the original appearance before that I have to insert the picture, everything is perfect

    1.png

    as you can see, the block of text is blue light now.

    but, when I insert the image below my page, it will...

    1.png

    the text block turns into dark blue and the words gets more daring than the previous.

    It is of course bolder↓

    1.png

    He drags crazy me.

    Please help me ~ ~ ~

    Thank you very much!

    Looks like the picture transparency, which will call the merger of transparency of the document workspace. Try setting the merger in RGB space. If the document is printed on an offset press, you will need to look for the text to be converted to 4-colour CMYK when the merger is RGB.

  • C# / JavaScript how to set the primary text block?

    Hello

    I'm working with InDesign scripting API with c# for my work. I'm new to both the InDesign scripting API and using InDesign as well.

    I am building a gap of master, with blocks of text so that the text block on the left page of the cheese would pass in the block of text on the right page.


    I read there is the option block of primary text for the master spread, but I can't seem to understand how to use it.

    Is there someone who could show me an example of script code to define the framework of primary text for a master page/spread?


    Here is the code I have for now.

    The question I have is in line 53, where when I try to run it, it gives me a very generic error 'Invalid object for this request.', which leads me to believe I'm doing it wrong.

            public static byte[] CreatePageBasedOnCreatedMasterSpread(string savePath)
            {
                Application application = ActivateInDesign();
    
    
                // Create new document
                application.Documents.Add(true, application.DocumentPresets.FirstItem());
    
    
                // Get active document and change some settings
                Document document = application.ActiveDocument;
                document.DocumentPreferences.FacingPages = true;
                document.DocumentPreferences.PageWidth = 210;
                document.DocumentPreferences.PageHeight = 297;
    
    
                document.DocumentPreferences.CreatePrimaryTextFrame = true;
                document.TextPreferences.SmartTextReflow = true;
    
    
                MasterSpread masterSpread = document.MasterSpreads.Add();
                masterSpread.BaseName = "CustomMasterSpread";
                masterSpread.NamePrefix = "AC";
    
    
                //Set the document's ruler origin to page origin. This is very important
                //--if you don't do this, getting objects to the correct position on the
                //page is much more difficult.
                document.ViewPreferences.RulerOrigin = idRulerOrigin.idPageOrigin;
    
    
                Page leftPage = masterSpread.Pages.FirstItem();
                Page rightPage = masterSpread.Pages.LastItem();
    
    
                leftPage.MarginPreferences.Top = rightPage.MarginPreferences.Top = 10;
                leftPage.MarginPreferences.Bottom = rightPage.MarginPreferences.Bottom = 10;
                leftPage.MarginPreferences.Left = rightPage.MarginPreferences.Left = 30;
                leftPage.MarginPreferences.Right = rightPage.MarginPreferences.Right = 20;
    
    
                // Create a text frame. Do not add text to this, as this is a master spread text frame.
                // Link their flow together
                TextFrame primaryFirstPageTextFrame = leftPage.TextFrames.Add(document.Layers.FirstItem(), idLocationOptions.idUnknown, leftPage);
                TextFrame primarySecondPageTextFrame = rightPage.TextFrames.Add(document.Layers.FirstItem(), idLocationOptions.idUnknown, rightPage);
                primaryFirstPageTextFrame.NextTextFrame = primarySecondPageTextFrame;
                //Set primary text frame of master spread to be the two linked textframes
    
    
                primaryFirstPageTextFrame.GeometricBounds = GetPageBoundsWithMargin(leftPage, document);
                primarySecondPageTextFrame.GeometricBounds = GetPageBoundsWithMargin(rightPage, document);
             
                masterSpread.PrimaryTextFrame = primaryFirstPageTextFrame; //This causes the error
             
                return GetFileData(document, savePath);
            }
    
    

    I noticed the JavaScript API that is very similar to c#, so it would be useful if I get a response from JavaScript.

    Hi Michael,

    Basically, you can do something like this (in ExtendScript):

    //Store value:
    var storedPreset = app.documentPresets[0].createPrimaryTextFrame;
    
    //Let's set it to true:
    app.documentPresets[0].createPrimaryTextFrame = true;
    
    //Add the document, name the master as you wish etc.pp. :
    app.documents.add
    (
    
        {
            documentPrefreneces :
                {
                    facingPages : true
                    ,
                    pageWidth : "210 mm"
                    ,
                    pageHeight : "297 mm"
    
                }
        }
    
    );
    //Reset to stored value:
    app.documentPresets[0].createPrimaryTextFrame = storedPreset;
    

    Uwe

  • Two objects claim ownership of the UID: U70049 class: text block

    Hello, I can not save my file, error: two objects claim ownership of the UID: U70049 class: text block

    Please send us the .muse file at [email protected] as well as a link to this topic. If the file is larger than 20 MB, you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (if you use a service, please include your return e-mail address in the body of the message, as no service all enrolling them in the sharing invitation they send.) Thank you.

  • In a primary text block text block

    Hello

    as a newbee in indesign css 6 I watched several videos, myself worked through tutorials and try different things. I would like to create a complete book with about 350 pages composed almost entirely of text. Due to the amount of text I thought to use a block of text within pages of various books.

    However, there is a specialty. After some of the topics, there is a reference with the name of the author of this quote. Citations should be justified, but chocked right (the right edge of the block justified must be to the right of the page). A separate text block would be good for this. However, within a block of primary text I can't place another block of text, right? What options should I? I have to remove the primary text block and put all the text in a string of text frames manually?

    Kind regards

    Adobaen

    You can also try withdrawal left with a justified paragraph style.

  • 389 pages. Text blocks too far to the left, but...

    But I use different teachers for different parts of the book and some blocks of text have been made, longer and shorter, so bottom of page will be same.

    Photos, too, are not centered.

    So, do put everything by a page-by-page and push the text (and photo frames) to the right, or...

    Help, please? Thank you.

    You don't need to change the size of the page.

    How the works of adjustment of layout is that sanpped bjcts guides will remain broken guides when you change the position of the guide. This means that if available adjusts lying is initially disabled and reset you the margins on your masters to match pages where the blocks of text are now, you can then allow the adjustment of the layout and margins for new values of resting and text blocks, for her are aligned old margin guides , will be moving and even change the size if necessary to stay magnetized to the new locations of margin guide.

  • Number of words and then pasting text into the text block

    I'm trying to create a javascript script that counts the words in a block of selected text, adds "WORDS." at the end and then paste at the beginning of this block of text with a "BOLD" character style applied. So he would look like:

    25 WORDS. Text text text text text. etc.

    I managed to find a way to create the character style, to count the words in the selected text block and give me an alert. But I'm not sure how to apply the character style and paste it at the beginning. Any help would be really appreciated. Here's what I have so far.

    Thank you

    -----------------------

    var curDoc = app.activeDocument;

    mySel var = app.selection [0];

    Create the style of wordcount

    If (! curDoc.characterStyles.item("wordcount").isValid) {}

    cStyle var = curDoc.characterStyles.add ({name: "wordcount"});

    }

    else {}

    cStyle var = curDoc.characterStyles.item ("wordcount");

    }

    cStyle.fontStyle = "Bold";

    //

    var mySelWords = mySel.texts.everyItem (). words.length;

    var mySelStoryWords = mySel.parentStory.words.length;

    Alert (mySelWords + "WORDS.");

    Hello

    further, through the selection, change the same way:

    var
         curDoc = app.activeDocument,
         mySel = app.selection,
         len = mySel.length,
         cStyle = curDoc.characterStyles.item("wordcount"),
         mySelWords, mString, curSel;
    
    if (!cStyle.isValid)
        cStyle = curDoc.characterStyles.add({name: "wordcount", fontStyle: "Bold"});
    
         while (len-->0) {
              curSel = mySel[len];
              if (curSel.hasOwnProperty ("insertionPoints") ) {
                   mySelWords = curSel.texts.everyItem().words.length,
                   mString = mySelWords + " Words. ";
                   curSel.insertionPoints[0].appliedCharacterStyle = cStyle;
                   curSel.insertionPoints[0].contents = mString;
                   }
              }
    

    Note that textFrame.words County is those visible only, so the other part of the text is excluded.

    If some of the answers have been useful - mark (their), pls ==> it's a good indicator for other researchers and a few points for me.., mlask.

    Jarek

  • [JS] [CC] how to get the last visible character in a saturated text block?

    Hello

    I am new to InDesign scripting in javascript. I would like to know if there is a way to get the position of the last character in a text frame that is busy? I need this because I want to calculate the number of characters is hidden (overflow text) via the script.

    I looked in the forums about this, but I think it is always a script to alert if there is too much text or not.

    I'd appreciate any help!

    Well, let's say myFrame is a flowing text block.

    Thus, the last character in this context would be

    myFrame.characters-[1];

    To calculate the number of characters to spill, select the

    framework text overflow and run this script:

    myFrame = app.selection [0];

    myParentStory = myFrame.parentStory;

    Alert ("number of characters to spill is

    "+ myParentStory.characters.itemByRange (myFrame.characters [-1],".

    (myParentStory.characters [-1]) .length-1);

    Ariel

  • Text wrapping moves the text block

    Hello world. I have a block of text on my page and a picture frame sitting in the upper left corner of the text block. I want my text to wrap around the picture frame, so I have the text wraps not lit. However, skin moves the entire text block to the right instead of just the text inside the frame. Is it possible to avoid this? InDesign CS for Windows 6. Thank you very much.

    -Rick

    Nevermind, I figured it. The text block was at anchor, and that's why the frame is moved to the right. I'm sorry for the noise of the useless list.

    Rick

  • Resizing text blocks and picture containers question

    I upgraded to InDesign CS6 yesterday and I am having some problems of workflow with the way InDesign handles resizing of the blocks of text and picture containers.

    In CS5.5 (and all other versions of InDesign, I used) when I resize a text block with overset text, I pull the lower handle down, I can see the text dynamically arise as the box grows. Also, with photo containers containing an image more large that part, as I pull the handle of the frame I can see the image by filling the space as it grows.

    In CS6 I see not overset text or picture box extra until I have let go of the handle. Is there a setting I can change to make it behave more like all the other versions of InDesign?

    What you see depends on how you should live screen drawing set in your preferences. Try clicking and holding then wait a while before you start to drag.

  • How the auto repeat 'position title (continued)' in the text block

    Hi guys,.

    I've looked everywhere and couldn't find it.

    Here's what I'm trying to achieve:

    I have a few blocks long text which flows into a framework of text block and I would like to have the title for each of the items be repeated first of all in the first line of the block of text on each page as follows (suite).

    I know that I can use master pages and can have a separated with my title text box. But then, if the number of page change, I can end up with a title (continued) where shouldn't.

    The next and previous page number line break does not work for me, because I need it to be the title of the article and it must be in the same frame of definition as title x.

    It's somewhat similar occurs when your table across more than one page. The header is repeated on each image.

    I really tried to find it but no luck. Whenever I have tryied the anwes only I got was to line breaks, next and previous page number.

    Much appreciated if anyone can save me.

    Thank you

    Mau

    I think that we know exactly what you're trying to do, and we told you how to do it in code.

    Word has a few features that allow you to have different headers and footers for section home pages and use them automatically when you set up a new section. This is equivalent to using two masters in ID and one without the variable grant your section start pages. The difference is that you have to do that yourself.

  • position of the image/text in the text block

    Hello

    I use textframe to place images and text.

    WHN I put the text / images, by default, the images are aligned at the top of the text block, I need to put it at the bottom of the textframe.

    is there a possible adjustment of the document actuive / app so that by default the content should be aligned to the bottom

    Thank you.

    Search in the object that defines the vertical positioning: textFramePreferencesand you will see there at the time of the Document and the Application as possible parents.

    app.activeDocument.textFramePreferences.verticalJustification = VerticalJustification.BOTTOM_ALIGN;
    

    define the default for new text frames downwards. You can also use

    app.textFramePreferences.verticalJustification = VerticalJustification.BOTTOM_ALIGN;
    

    to set it as a global preference for all your new documents, but anyway this sounds like a bad idea.

Maybe you are looking for