Text placement changing

I am currently working on a new scrolling menu for my schools website. When i create a text area and pin it to a certian area it only looks that way for my home page.
This is how I would like it to look, it looks this way only on the home page.
This is how it looks on all the other pages.
Any ideas on what is wrong with this?
Here are the settings for both of the text areas:
Update:
The text is now how i would like it to look instead of just one. The rest are still the same as before...
I dont see why it would change from page to page becuase it was created on a master page
Also, In the Muse "Preview" section i am also having this problem when navigating from page to page. I am not sure what is wrong...

I tried what you suggested and that didnt seem to work.
It gave me a secondary idea though.
I removed the text completely and inserted a shape for the "Button" look.
I then inserted the text i wanted without any effects and grouped it to the shape and pinned it in place.
It then worked!

Similar Messages

  • Folder action to find and replace text and change line feeds

    I want to use a folder action to find and replace text and change Mac carriage returns to DOS line feeds inside text files.
    The text to be replaced is: "/Users/wim/Music/iTunes/iTunes Music/Music" (without the quotes)
    This text has to be removed (i.e. replaced by an empty string)
    The text occurs many times within each file.
    The files are playlists exported from iTunes in the M3U format (which are text files). They contain Mac carriage returns. These need to be changed to DOS line feeds.
    I have found the following two perl commands to achieve this:
    To find and replace text: perl -pi -w -e 's/THIS/THAT/g;' *.txt
    To change carriage returns to line feeds: perl -i -pe 's/\015/\015\012/g' mac-file
    I know that it's possible to make a folder action with Automator that executes a shell script.
    What I want to do is drop the exported playlists in M3U format in a folder so that the folder action will remove the right text and change the carriage returns.
    My questions are:
    Is it possible to make a folder action that executes command line commands instead of shell scripts?
    What is the correct syntax for the two commands when used in a folder action shell script? Especially, how do I escape the slashes (/) in the string to be removed?
    Thanks for your help

    Ok, I've include an applescript to run a shell command. The applesript command quoted form makes a string that will end up as a single string on the bash command line.  Depending on what you want to do, you may need multiple string on the bash command lines.  I've included some information on folder actions.
    It is easier to diagnose problems with debug information. I suggest adding log statements to your script to see what is going on.  Here is an example.
        Author: rccharles
        For testing, run in the Script Editor.
          1) Click on the Event Log tab to see the output from the log statement
          2) Click on Run
        For running shell commands see:
        http://developer.apple.com/mac/library/technotes/tn2002/tn2065.html
    on run
        -- Write a message into the event log.
        log "  --- Starting on " & ((current date) as string) & " --- "
        --  debug lines
        set desktopPath to (path to desktop) as string
        log "desktopPath = " & desktopPath
        set unixDesktopPath to POSIX path of desktopPath
        log "unixDesktopPath = " & unixDesktopPath
        set quotedUnixDesktopPath to quoted form of unixDesktopPath
        log "quoted form is " & quotedUnixDesktopPath
        try
            set fromUnix to do shell script "ls -l  " & quotedUnixDesktopPath
            display dialog "ls -l of " & quotedUnixDesktopPath & return & fromUnix
        on error errMsg
            log "ls -l error..." & errMsg
        end try
    end run
    How to set up a folder action.
    1) right click on folder. click on Enable folder actions
    2) Place script in
    /Library/Scripts/Folder Actions Scripts
    3) right click on folder. click on attach folder action
    pick your script.
    Create a new folder on the desktop & try.
    You can put multiple folder actions on a folder. There are other ways of doing this.
    Here is my test script:
    on adding folder items to this_folder after receiving dropped_items
        repeat with dropped_item_ref in dropped_items
           display dialog "dropped files is " & dropped_item_ref & " on folder " & this_folder
        end repeat
    end adding folder items to
    How to  make the text into an AppleScript program.
    Start the AppleScript Editor
    /Applications/AppleScript/Script Editor.app
    In Snow Leopard it's at: /Applications/Utilities/AppleScript Editor
    Copy the script text to the Applescript editor.
    Note: The ¬ is typed as option+return.  ption+return is the Applescript line continuation characters.
    You may need to retype these characters.
    Save the text to a file as an script and do not check any of the boxes below.

  • Is there a way to have hardware acceleration without the text font change? + Eye straining firefox!

    Is there a way to have hardware acceleration without the text font change? I remember there was a way to go into settings before and getting hardware acceleration to work without the font change. Unfortunately I lost ALL my previous setting when uninstalling the beta ver Nightly and clicking delete settings :(.
    Also, I fixed a problem before where firefox was visually eye straining to me, I think it was some settings in anti-alias tuner, but I cant seem to find the right settings that puts less strain on my eyes, anyone know? Thanks ahead. Currently using FF7.

    Try to toggle some Boolean gfx.font_rendering prefs on the about:config page to disable some features.<br />
    Filter: gfx
    Others to try:
    * set gfx.direct2d.disabled to true to disable Direct2D
    *Anti-Aliasing Tuner: https://addons.mozilla.org/firefox/addon/anti-aliasing-tuner/

  • Text placement problem in photoshop 4

    I can't control text placement in photoshop 4. When I enter 2 letters, the line then zooms off to the right - right off the image. I tried uninstalling and reinstalling and it didn't help

    Your talking about photoshop elements 4?
    Or another version such as the old ps4 or photoshop cs4?
    If it's photoshop elements 4, you might try resetting the Text Tool by clicking on the big T in the tool options bar and then clicking on Reset Tool

  • Dynamic Text and changing Text in AS3

    I have a Dynamic Text box in my Library.  I drag it to my main stage and give it a name..it is now a movieclip. The name is 'mcAdmin'.  I added an event listener for MOUSE_OVER.  I want the text to change color, but for now I'm just trying to change the text; however, it's not displaying the change in text I want.  I do a trace, and the change is in there on the output window, but it is not displayed as such.  How can I :
    1) use AS3 to change the font color of the text
    2) use AS3 to change the text and have it display?
    function onMouseOver_txtAdmin(e:MouseEvent):void
    Mouse.cursor="button";
    //Current mcAdmin text is 'Administration'
    //I want to change the color of Administartion on Mouse_Over
    //but to test if I can get to anything, I'm just trying to change the text.
    mcAdmin.text="Hello";
    trace(mcAdmin.text);
    mcPPMB.alpha=.5;
    mcASB.alpha=.5;
    mcISO.alpha=.5;
    mcEA.alpha=.5;
    mcAdmin.alpha=1;
    mcAdmin.scaleX=1.25;
    mcAdmin.scaleY=1.25;
    Thanks.

    1st
    give the textfield a name, if it hasn't already (sounds like you put it in a movieclip).
    to change the text set the text property of your text field
    like this
    myTextField_txt.text = "here is the text";
    or if it is inside a movieclip
    myClip_mc.myTextField_txt.text = "here is the text";
    To change the color you would need to put a TextFormat on it. To keep the same fontsize, font etc. you could first get the TextFormat from your existing Textfield, change the color of the TextFormat and set it on the TextField.
    // get the Textformat of the first character
                var TF:TextFormat = myTextField.getTextFormat(0,1)
    // set the font color
                TF.color = 0xff0000;
    // put it on the whole text
                myTextField.setTextFormat(TF)

  • TEXT DETERMINATION (Text id changes)

    Dear All, We would like to see the text id changes in the sales order header ,Please advice how see the changes (date ,time user id).

    Dear Ravi
    Text changes information is wont be recorded in sap only Finding way is as per Bojja Gee explained
    That is only the way  But please check this link also Reports for 'Texts' in Sales Order Header and Item Level - Toolbox for IT Groups
    Text Tables are STXH  ( Header) And STXL ( Item )  but directly we cant see please check that link , if you want Please Take ABAPER Help
    Thanks a lot

  • Newbie question on text label change according to program

    I managed to get the property of the gauge scale (range) changes according to the different measurements selected.BUT the thing is I could not get the text label change and display as differrent measurements is selected. Pls advise

    Thanks Kim"
    I managed to do it. Yes,the name label cannot be changed but the caption text is possible when selected.
    I did it by right-clicking the property node in the REAR(block) diagram. I click on the property and set the caption text. It works now.
    Include here a .jpeg file for other newbies!
    Attachments:
    pic1.jpg ‏51 KB

  • Best Practices for Text That Changes During Sequence?

    I have been using creating videos like the one here, in which text shows up every so often over the scene:
    Making The Walking Dead Pinball Machine - YouTube
    Thus far, I've been creating a title, duplicating it for each time the text changes, and loading each title into the sequence at the time I want it to appear. Is there a simpler way to create text that changes throughout a sequence, so I don't have to worry about each overlay having slight differences in position or other attributes?
    Just curious if there's an easier workflow for putting text over video.
    Thanks!

    You can also save yourself a few steps by duplicating the title through the Timeline by ALT+dragging it to the new location (which creates not only a new track item but also an independent new project item), then double-clicking the new track item to open it in the Titler for editing. But this refinement in your workflow has no bearing on the stated concern re: "differences in position or other attributes"--that's entirely a function of the changes you make within the Titler.

  • A script that can be used to track text content changes in indesign?

    Is there a possibility a script that can be used to track text content changes in indesign. My Indesign software's version is CS3. As you can see below, I have deleted some texts and added some. I did it in another software.
    I have been searched for a long time. Because of my poor English, I still can't come up with any Object Model related to the script yet.
    Here is some idea of mine:
    Use the script tracking my revising texts. When I  add some new texts, the texts will be underlined. When I delete some texts, the position of the first character of the removed text will be added a small red triangle or something.
    Thanks in advance.

    Hidden dragon, what does that mean?
    I can't comprehend fully what you said.
    Is IDML short for Indeisgn Markup Language?
    I think you are telling me that I can open the Indeisgn document by using the software InCopy. Then I have change some contents. InCopy will help me tracking the revision.
    getZinger. Do I get your point?

  • I have an Iphone 4s and mini ipad..I downloaded the app, vz messages..I cannot personalize my texts, fonts, change backgrounds and ringtones????

    I have an Iphone 4S and mini ipad.  I download the app, vz messages...I cannot personalize my texts..change fonts, backgrounds and ringtones..Why not?

    Gina your post was very helpful to me as well. I recently Traded In my Apple IPad 3 WIFI Only Device for a Verizon Wireless Apple IPad Mini Pre-Order. This is actually my very first WIFI + Cellular IPad Purchase. The Price was Finally Affordable.

  • Chnage in Header text when changing the customer

    Dear Experts,
    When i change the customer in sales quotation all the text in header text fields remove. i want to retain this text while change the customer. Can anybody help me who can i retain the Header Text when i change the customer.
    Best regards,

    Hi,
    Even it is the document text which is maintained by you in quotation,will be changed if you change the sold-to-party.
    The text that is maintained either at the Header level or at the item level will be changed if you change the sold-to-party.
    It is the standard setting in SAP.
    Because Sold-to-party is the key field which controls the whole document.So if you change the sold-to-party means every thing will be redetermined.So that the text will be changed.
    For maintaining the text as not changeable,in standard there is no setting.I think with ABAP coding it may be possible.
    Ask you ABAPer to check whether there is any thing that will be used to check this text.
    Regards,
    Krishna.

  • Highlighting the text by changing the "character fill color" with double-spacing?

    Highlighting the text by changing the "character fill color" doesn't seem to go well with double-spacing.
    Has anyone been aware of this issue?
    Try double-spacing the text you highlighted. What's up with this?
    This is so annoying and frustrating. I've been trying to do both of them for like 2-3 hours.
    You CAN do both, of course, but if you double-space the highlighted text, it just creates this huge highlighted part (it highlights the space between the two lines!) below the actual text.
    Anyone help me pleeeeeeeease.

    In Pages v5.2.2, taking Baskerville Regular 12 pt, and double-spacing it with character fill color does produce a nasty effect. With View > Show Rulers, I looked where the lines of text lined up on the vertical scale.
    Then I changed the Spacing selector from Lines to Between. Now, just the text had the character fill color, but the line height had increased visually downward. With the between setting, line height is changed to points, and indicates 27 pt. If you adjust this value to 16 pt, the second line of double-spacing will realign with where it was before the between change, while retaining discrete line character fill color.
    Before: Spacing set to Lines, and 2.0 - Double.
    After: Spacing set to Between, and 16 pt

  • How can I detect when a text field changes in Cocoa-Applescript?

    I'm working on an application where I have one text field, and below it, a "Send" button. When the button is pressed, is sends whatever is typed in the field to all the user's Skype contacts. I have to prevent the user from sending a blank message to all contacts, so I have to change the button's setEnabled. I've been using an NSTimer to check every second, which works, but it lags my application hugely. Is there any handler that is run whenever text is added or deleted? Perhaps something like:
    on myTextFieldDidChange_(aNotification)

    A specific text field is not used in the handler call - the delegate method is called for all text fields.  In the case where you have several text fields, you can get the notification's object, for example:
    on controlTextDidChange_(aNotification) -- a text field changed, so check it out
      set thisTextField to aNotification's object() -- the current control being changed
      set theText to thisTextField's stringValue()
      log theText
      -- whatever
    end controlTextDidChange_
    Note that you need to connect the text field's delegate outlet to your AppDelegate (or whatever class you are using for the delegate).

  • Bad text placement, overlays

    bad text placement, overlays of text occur frequently. Sometimes minimal, often makes window useless.
    If I go to IE9, window is fine.
    What is the fix?
    chuck

    Your talking about photoshop elements 4?
    Or another version such as the old ps4 or photoshop cs4?
    If it's photoshop elements 4, you might try resetting the Text Tool by clicking on the big T in the tool options bar and then clicking on Reset Tool

  • Text caption - changing place when displayed in different browser

    Hi,
    I just finished my playbar and I discover problem with text caption (with action SlideCount - once again many thank for Lilybiri). During tests in different web browsers tc is changing place as you can see it below:
    Safari, Firefox and Opera are ok but Chrome and internet explorer are not. I was testing browsers on mac and pc - same result.
    Any ideas?
    Michal

    Hi Pozwin,
    Thank you for contacting Adobe Support.
    Please check your P.M. which we have send you.
    Thanks
    Loveesh Kuma

Maybe you are looking for