Weird invisable indent/tab

Dear anyone,
Does anyone else have a problem with a weird "space" that makes your text indent to the right? Like, no matter how much you move your text box around, the "space" stays in the same spot and your words just flow around it (like text wrap). See screen shot below.
I thought I had fixed it before. I discovered if you selected the text box and move it to a new layer and then arrowed the text box one space (in any direction) the text would snap back into place. Or also, if you selected all the text and then played around with the "span columns" it would snap back into place. But sadly neither of these are working now.
And this problem happens randomly. A document could be just fine and then suddenly this happens. Wierd! Any help is appreciated because I'm tired of having to start all over.
Thank you!
Becca Tally

Migintosh wrote:
Willi Adelberger wrote:
I am only curious: Are you never working with Paragraph Styles? Do you never rename Layer with anything else then their default name? You should not do so.
Are you saying that if you never work with paragraph styles, you should not do that? It's kind of a double-negative way of saying "do work with paragraph styles," so if that's what you are saying, I agree.
But, it also sounds a little like you are saying that you should never rename a layer (or, is "do you never…?" a sort-of Olivia Newton John way of saying "do you ever…?"). I haven't found renaming layers to be a problem, so if that's what you mean, can you explain why? (And sorry if I'm misunderstanding you.)
Are you able to read? I made no statement, I asked a question. Did you see the question mark? It is there, you can see it.
I did so, because the example file looks not very professionell. I did so, because Arial was used.
My opinion is that not even one pargraph in InDesign should be written without any paragraph style and no layer name should remain with its default generic name.

Similar Messages

  • Set indention / tab size in Oracle SQL Developer

    I've been poking around for an hour. Can't figure this out.
    Where, either on the app's UI or in the "product-preferences.xml" file, can I change SQL Developer's indention (tab) size to 3? My organization uses PowerBuilder, and when I copy+paste our PB SQL (which uses leading tabs) into Oracle SQL Developer, it looks like crap. It would really help if I could change the code editor to a tab size equivalent to three spaces.
    And no, we can’t use spaces. :-)
    Thanks!
    (maybe SQL Developer 2 could have a tab size field in “Preferences”)

    In 1.5.x, it's under Preferences - Database - SQL Formatter - Alignment and Indentation .
    However, at least in the current 1.5.3, a bug ignores the tab preferences completely, so you're stuck with the 2 spaces. If you can't wait until this gets fixed (with luck in the upcoming 1.5.4 or else maybe by 2.0), revert to an earlier version.
    Regards,
    K.

  • Powershell ISE – change indent/tab size + keep tabs

    Anyway to change indent/tab size in Powershell ISE?
    Something simple like in Visual studio IDE:
    Tab size 2
    Indent size 2
    Keep tabs

    Figured I'd share the changes I made to NoSimDash's above code. I actually wrote this not long after he posted his reply, but decided not to post it after I settled on taking the cheap, hacky timer route. (Originally I was looking to have the process triggered
    by an event when the user changed tabs)
    Anyways, over the last two years it's been pretty stable, so I thought I'd share on the off-chance that someone goes looking for this functionality again.
    $psISE.Options.ShowOutlining = $true
    $psISE.Options.ShowDefaultSnippets = $true
    $psISE.Options.ShowIntellisenseInScriptPane = $true
    $psISE.Options.ShowIntellisenseInConsolePane = $true
    Set-Variable -Option AllScope -Name OptionSetter -Value (&{
    $ClassName = 'IndentFixer'
    $Namespace = 'ISEHijack'
    Add-Type @"
    internal class _Option<TValue>
    public _Option(string key, TValue value)
    Key = key;
    Value = value;
    public Object[] Params { get { return new object[] { Key, Value }; } }
    public string Key { get; private set; }
    public TValue Value { get; private set; }
    internal static object[] Opt<TVal>(string key, TVal value)
    return new _Option<TVal>(key, value).Params;
    internal static readonly object[][] NewOpts = {
    Opt<bool>("Adornments/HighlightCurrentLine/Enable", false),
    Opt<int>("Tabs/TabSize", 4),
    Opt<int>("Tabs/IndentSize", 4),
    Opt<bool>("Tabs/ConvertTabsToSpaces", false),
    Opt<bool>("TextView/UseVirtualSpace", false),
    Opt<bool>("TextView/UseVisibleWhitespace", true)
    internal void SetOpts()
    foreach(object[] args in NewOpts) {
    Setter.Invoke(Options, args);
    public MethodInfo Setter { get; set; }
    public object Options { get; set; }
    public Dispatcher EditorDispatcher { get; set; }
    public List<Action> Actions { get; private set; }
    public ${ClassName}()
    Actions = new List<Action>();
    Actions.Add(SetOpts);
    public void Dispatch(Dispatcher dispatcher)
    DispatcherFrame frame = new DispatcherFrame();
    dispatcher.BeginInvoke(DispatcherPriority.Normal, new DispatcherOperationCallback(ExitFrames), frame);
    Dispatcher.PushFrame(frame);
    private object ExitFrames(object f){
    DispatcherFrame frame = ((DispatcherFrame)f);
    // foreach(Action action in Actions) {
    // action.Invoke();
    // Actions.Clear();
    foreach(object[] args in NewOpts) {
    Setter.Invoke(Options, args);
    frame.Continue = false;
    return null;
    "@ -Name $ClassName `
    -NameSpace $Namespace `
    -UsingNamespace System.Windows.Forms,System.Windows.Threading,System.Reflection,Microsoft.VisualStudio.Text.EditorOptions.Implementation,System.Collections.Generic `
    -ReferencedAssemblies WindowsBase,System.Windows.Forms,Microsoft.PowerShell.Editor
    return `
    "${Namespace}.${ClassName}" |
    Add-Member -Type NoteProperty -Name Namespace -Value $Namespace -Passthru |
    Add-Member -Type NoteProperty -Name ClassName -Value $ClassName -Passthru
    [System.Reflection.BindingFlags] $NonPublicFlags = [System.Reflection.BindingFlags] 'NonPublic,Instance'
    filter Expand-Property
    PARAM(
    [Alias('Property')]
    [ValidateNotNullOrEmpty()]
    [Parameter(Mandatory, Position=0)]
    [String] $Name
    $_ | Select-Object -ExpandProperty $Name | Write-Output
    function Get-IsePrefs
    PARAM(
    [Parameter(Mandatory, Position=1)]
    [ValidateNotNullOrEmpty()]
    [string] $Key
    $oEditor = $psISE.CurrentFile.Editor
    $tEditor = $oEditor.GetType()
    $tEditor.GetProperty('EditorOperations', $NonPublicFlags).GetMethod.Invoke($oEditor, $null).Options | `
    Expand-Property GlobalOptions | `
    Expand-Property SupportedOptions | `
    Select-Object -Property Key,ValueType,DefaultValue | `
    Write-Output
    function Comment-Selection
    $output = ''
    $psISE.CurrentFile.Editor.SelectedText.Split("`n") | ForEach-Object -Process { $output += "# " + [string]$_ + "`n" }
    $psISE.CurrentFile.Editor.InsertText($output)
    function Fix-EditorIndentation
    PARAM(
    [Alias('ISEEditor')][ValidateNotNull()]
    [Parameter(Mandatory, ValueFromPipeline, Position=1)]
    [Microsoft.PowerShell.Host.ISE.ISEEditor]
    $Editor
    $EditorType = $Editor.GetType()
    $SetterInstance = New-Object -TypeName $OptionSetter
    $SetterInstance.Options = $EditorType.GetProperty('EditorOperations', $NonPublicFlags).GetMethod.Invoke($Editor, $null).Options
    $Dispatcher = $EditorType.GetProperty('EditorViewHost', $NonPublicFlags).GetMethod.Invoke($Editor, $null).Dispatcher
    $SetterInstance.Setter = $SetterInstance.Options.GetType().GetMethod('SetOptionValue', [type[]]@([string],[object]))
    $SetterInstance.Dispatch($Dispatcher)
    function Fix-IseIndentation
    [Microsoft.Windows.PowerShell.Gui.Internal.MainWindow] $ISEWindow = (Get-Host | Select-Object -ExpandProperty PrivateData | Select-Object -ExpandProperty Window)
    [Microsoft.Windows.PowerShell.Gui.Internal.RunspaceTabControl] $RSTabCtrl = $ISEWindow.Content[0].Children[2]
    [Microsoft.PowerShell.Host.ISE.PowerShellTab] $PSTab = $RSTabCtrl.Items[0]
    $PSTab.Files | Select-Object -ExpandProperty Editor | Fix-EditorIndentation
    function Invoke-ISEFunction
    PARAM(
    [Parameter(Mandatory, Position=1)]
    [Action] $ScriptBlock
    $ISEWindow = $(Get-Host | Select-Object -ExpandProperty PrivateData | Select-Object -ExpandProperty Window)
    return $ISEWindow.Dispatcher.Invoke($ScriptBlock)
    function Fix-IndentationForAll
    $psISE.PowerShellTabs | Select-Object -ExpandProperty 'Files' | Select-Object -ExpandProperty 'Editor' | Fix-EditorIndentation
    # Startup
    function New-Timer
    PARAM(
    [Alias('Handler')]
    [Parameter(Position=0, Mandatory=$true)]
    $Action,
    [Double]
    [Parameter(Mandatory=$false)]
    $Interval = 50,
    [Boolean]
    [Parameter(Mandatory=$false)]
    $AutoReset = $true
    [System.Timers.Timer] $oTimer = New-Object -TypeName System.Timers.Timer($Interval)
    $ElapsedEvent = Register-ObjectEvent -InputObject $oTimer -EventName 'Elapsed' -Action $Action
    $oTimer.AutoReset = $AutoReset
    return $oTimer
    $(New-Timer {
    Fix-IndentationForAll
    } -Interval 100 -AutoReset $true).Start()

  • Right Indent Tab

    In CS2, with a left-justified paragraph, how do I get an line of page numbers to right-align following a Right Indent Tab?

    You must use Area Type (Click and drag box with the Type Tool)
    "Set type here [ hit tab ] Set Type here"
    Then right align the type.

  • Right-indent tabs in GREP or nested styles

    How do you specify a right-indent tab (shift-tab) in GREP or nested styles?  Is it possible?  I could only find the regular tab character.
    Thanks, Phyllis

    In GREP it looks like
    ~y
    Mind you, I don't know if that will work for you - I just copied a right-indent-tab to the clipboard and pasted it into the GREP Find What field.

  • [SOLVED] How can I turn off the annoying auto indent tabs in VIM?

    I'm coding in Python and VIM is auto-tabbing each new line.  It's a real buzz kill.
    When I hit enter at the left margine, even when there is nothing on the line above the cursor, it shoots out a tab and three spaces.  I've switched to nano but feel lost without VIM.  I've never seen this behavior before.  I've turned off all of the auto indentation options I can think of.
    ***** begin .vimrc *****
    set noautoindent
    set nosmartindent
    set noindentexpr
    set nocindent
    ***** end .vimrc *****
    Thanks!
    [UPDATE]
    I wish I could delete this post.  ... anyway...  the solution was:
    set indentexpr=''
    Last edited by TomB17 (2009-09-03 16:41:07)

    Unfortunately, I have to do a ":set indexexpr='' " each time I start VIM.  I've got it in the .vimrc but it seems to be ignored.
    I'm used to Ubuntu and this feels really weird.  It's like profiles aren't processed.
    I would appreciate it if somoeone would point me in the correct direction.
    Last edited by TomB17 (2009-09-03 21:03:20)

  • Ease-in ease-out weirdness in motion tab FCP

    I've been doing a lot of animating stills in FCP by keyframing SCALE and CENTRE in the MOTION TAB of the VIEWER. I discovered the EASE-IN and EASE-OUT options by control-clicking the end key frames, but when I play back the animated clip, it does these weird lateral curve motions despite my only animating the still in a straight line. How do you ease-in a still and ease-out without this weird motion action occurring? Anyone sorted that? Do I have to use *After Effects* or Motion, or can it be done well in FCP ?

    Try moving the image with Anchor Point instead. Some time ago, Tom Wolsky posted the following reply to a thread that is long-gone:
    +Let's say you're zooming into a picture. You're starting say a scale of 20% centered on the screen and you going to scale up to 100%, and as you zoom in (scale) you want to move to the upper right corner of the image. Scaling takes place around the anchor point. The anchor point is normally the center of the image. As you move toward the upper right you're actually scaling around a point that's moving farther and farther away from where you're going. This causes overshoot, especially if the scale and center values are eased. (Scaling is not exponential anyway so this exacerbates the problem.) If you animate the anchor point to move opposite the center point, the scaling will continue to happen around the anchor point, which is now moving with you toward where you're going. It'll give you a bit better motion, but you still have to give yourself a little wiggle room.+
    +Let me give you some numbers. I'm starting with an image that's 3600x2670. At it's start the image is centered and scaled to 24%. I can't go all the way to 20% because I'll get overshoot on the start when I put on easing because scale is logarithmic, while center is arithmetic. At the end of the motion the image is scaled to 100. It's center is now -1335, 932. (Again because of overshoot I can't go much closer to the edge.) Easing is set for center and scale, and as I'm sure you've seen you get the image sliding off the screen even with leaving the slack that I did. Now add the anchor point animation. Set the start keyframe at 0,0 the same as the center point. Set the end keyframe to 1335, -932, the opposite of the center keyframe and you'll get a motion that stays in the screen. If you could set easing for the anchor point it would be even smoother, but that's not practical in the FCP interface. You get a little snaking effect at the end. All in all pretty inadequate for good motion control.+
    +I tried it Motion as well. The first problem is the application can't handle the image at full resolution. It could do the movement with scale animation and a motion path behavior. It was kind of adequate, but easing on the scaling was pretty poor and didn't achieve good results.+
    +A major issue in both applications is the the scaling starts quickly and gets slower and slower. This is because of the lack of exponential scaling, and until this is addressed neither application will be more than barely adequate at best when it comes to large scale motion control. Basically neither of them are acceptable for professional work on large format, large scale images. I won't even go into how totally inadequate FCP is for easing stop and go motion.+

  • Indent /tab position for text from INCLUDE texts in SAPscript

    Hi, ABAP colleagues!
    Need your help on this sapscript problem:  How to align texts taken from "INCLUDE TEXT" in SAPscript, according to tab defined in Paragraph Format?
    Or, how to control tab positions for texts which were extracted from “INCLUDE text” commands in SAPscript?
    I defined a paragraph format with tab stop at 8 CH so that with 2 commas (,,) my text will be displayed there.  However it always appears to the left (e.g. 1st column) and not indented at the proper column for description/text (e.g. which is in second column). 
    Pls help, bec a different heading and information is not acceptable to client for the Thailand characters. 
    Above is the description of the problem.  Below are some technical details.
    For specific example, I am editing Zversion of standard sap MM form MEDRUCK Window Main -  Text Element Item Text.
    BG ,,&TTXIT-TDTEXT&
    /: INCLUDE &T166P-TXNAM& OBJECT &T166P-TDOBJECT& ID &T166P-TDID&
    /: NEW-PARAGRAPH BG
    So far, tried these approaches:
    PARAGRAPH
    NEW-PARAGRAPH
    LANGUAGE '2'
    THANGSAN font
    Any ideas?
    Thank you so much in advance for all your help. Our project team will really appreciate it. May the Lord bless you as we go through our SAP work!
    Sincerely,     
    Celeste

    Hello Caleste,
    Please let me know what settings you have done to solve this issue.
    Help me with steps for Spool Request/Print settings.
    Regards!!
    Surya

  • Weird problem with tabs bar

    So I just installed the new Safari 4 on my iMac after seeing it on my Dad's Macbook. How come his tab bar automatically show's up under the bookmarks bar and mine doesn't? He didn't change any settings or anything, that is just the way his looks after the install, but mine doesn't look like his. He has the address bar(with all the default buttons, etc . . .), bookmarks bar, then the Tabs bar right underneath. Mine just has the address bar and the Bookmarks bar, nothing else. How can I make it look like his?
    This is on the official release, not the beta.

    Go to Safari>View>Show Tabs bar.

  • Weird square like Tab Character in Multiline Text

    ebs version 11.5
    forms 6i
    I have a multiline text item that allows the user to keep hitting an “add to text box” button to append to the text in the box. Every time they click the “add to text box” button, the new text should be placed on a new line. To accomplish this, I just do textitem:=textitem||CHR(13)||CHR(10);
    This causes a tab character (little square) to be displayed on each line. What can I do to get rid of this? Is there a setting on the text item I can set or is there a different way to accomplish this?

    The square is how the new line character (chr(13) or chr(10)) is shown. I don't think there is much you can do.
    One thing to try is see if the following works
    textitem := textitem || '
    ';Sandeep Gandhi

  • TOC styles and tabs

    Hello. I'm working on a book and the TOC has the page numbers aligned to the right, via a right indent tab, that I defined on the paragraph styles the TOC uses.
    Some of the entries, however, are a bit long and so they get too close to the page number or even fill more than one line. This makes the page number flow into the next line as well, although it remains right aligned, as it should.
    What I need is to define a right aligned tab for the text and one for the page number. This would essentially define a margin between the entry's text and the page numbers.
    Also, if possible, I'd prefer to have the page number always on the first line of the entry and not have it flow to the last one.
    Any thoughts? I hope I explained this well enough, but if it's not the case, just let me know. Thanks in advance.

    Another option between fully-automatic and manual would be to insert a hair space in the actual text where you want the TOC to break (which probably won't effect the text noticably), then after you build your TOC, select all of the TOC text, search for any hair spaces and replace them with forced line breaks. You can do that in one step, rather than several, and as long as you restrict your find/replace to the selection (and not the document), you won't change the hair spaces in the actual text. When I have things like this to do, I place a large, obvious reminder in the document and set it to non-printing.

  • PDF books added in iTunes 11.1.3 shows up in Music Albums tab [Probably a bug]

    iTunes 11.1.3 still allows you to add PDF books to library and the imported books show up in the albums view under the music selection. Seems weird, as books tab was removed from itunes. Importing 10 books results in creation of an album tab which is populated with the books added. It marks the album as unknown artist and unknown album.

    Hi there jack4120,
    You may find the troubleshooting steps in the article below helpful.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issueshttp://support.apple.com/kb/ts1717
    -Griff W. 

  • In Design CS 5.5 --- Question about Leader Dots ("RIGHT TAB")

    In Design CS 5.5 --- Question about Leader Dots ("RIGHT TAB")
    http://www.youtube.com/watch?v=e4kiyByY4A0
    Can anyone help???

    Apply a Character style to the tab character—don't try and do it from the Paragraph style. You can stay with a period as the leader and manipulate the size and spread of the dots via the character style. So here I've applied the Leader character style to the tab or the right indent tab and changed the point size and tracking of the style to make a leader with smaller dots and more spacing:

  • Can't get tab leaders to work

    CS4
    I'm trying to set a right tab leader with an underscore. I can't get it show (or any other). Is this a program glitch or something?
    I checked the forums and saw no previous relevant posts.
    Thanks

    When you say "right tab" do you mean right-aligned tab or right indnet tab?
    I bet it's the latter, and they are a pain to get a leader because they don't have a fixed position and don't show in the tabs panel. The trick, which is really ugly, is to set some other tab stop beyond the right edge of the frame and assigne a leader to that. Hit Shift + Tab to do the right indent tab and, voila, it picks up the leader for the tab outside the frame.

  • Microsoft Word 2011 Keyboard Shortcut for Indentation

    Is there a keyboard shortcut on word for indenting/tabs back and forth. I know on PCs it is alt+shift <-- or alt+shift -->. what is it for mac?

    do you know how to at least stop the time out circle?
    I concur with the others about using the MS Office forums for this issue. However, with regard to the question above, there really isn't a way to stop the beach ball cursor. That cursor only appears when a particular app is not responding. Sometimes that happens when an app is performing a lengthy and intensive task and is temporarily too busy to respond, in which case the cursor will eventually go away on its own. Other times, this happens because the app has frozen, in which case the cursor will never go away on its own, and the app must be force quit (press command-option-esc, select the app that's not responding and force it to quit). Note that force quitting should not be done too quickly, as forcing an app to quit while it is in the middle of some intense task can cause any number of problems, including corruption of whatever data the app was working with at the time. Any time force quitting becomes necessary, there is a serious problem with the app experiencing the issue.

Maybe you are looking for