Cannot remove hyphens in INDESIGN page 2

I'm working on a small - low chart - two-page flyer.  I removed hyphens in the text box on page one, but when I try to do the same with the text box on the second page - nothing. The system tells me it is turned off, but my words are always broken across lines with hyphens... is there a work around for this parasite?

1st image is pg 1 - hyphen removed 2nd image is pg 2 - hyphens are little matter how I try to fix it - other than a soft/hard return

pg 1_works.fw.pngpg2_NOT_WORKING.fw.png

Do you have actually selected the text (or the text block because it is not threaded) before turning off hyphenation?

Tags: InDesign

Similar Questions

  • Cannot remove the program or update or open pages on the internet acrobat reader ix 11.0.0.07

    Cannot remove the program or update or open pages on the internet acrobat reader ix 11.0.0.07

    Cannot delete the program or update Acrobat or open pages on the internet, acrobat reader ix 11.0.0.07 size is 182,00 MB 7 says really used so I don't know what is missing other then he says that he cannot find or open patch package my system is windows xp pro

    It will not remove add & remove programs, that it says it cannot find or open the hotfix package.

    It will not allow updates to repair or replace day & said updater already installed & give up its new facility.

    It opens not all pages on the website & it says that it is running in other places, but it does not run & don't see any action in the Task Manager processes.

    I reported it to adobe bugs but no response with a help real other so they want to sell me more products & upgrade free trial version.

    I downloaded adobe cleaner & install helper, but none was of no help.

    Why would I want to buy what is the user on an automated test dummy & has no direct support.

    It is a * way to upsell by extaution try to free30 day & then pays fees to remove or to go around asking users cahase.

    I'm looking to join a frat or disucushion group, I want to just this program to work or be abale to easly remove it from my computer.

    [email protected]

  • Cannot remove an e-mail account - no under account settings removal tool

    Use Thunderbird 24.5.0. Not having only not under one account choice account delete option. I tried to delete an e-mail account, but cannot remove or delete it. I read your solution but no delete option in the drop-down list in the account settings. help lease

    How about you go to the Tools menu > modules and disabling the add-on!

    Not that I can find a "manually change the files' on the site of the add-on.

    I can find a manually records sort that does exactly what it says, but does not add and the columns you show. I can also find "additional folder columns" which aims to give your comments headers. The page Add on like the third picture shows a right click option or click to turn on the power on and off columns.

  • Cannot remove some hotmail contacts

    Cannot remove some hotmail contacts

    Hi dall50,

    The best place to ask your question of Windows Live is inside Windows Live help forums. The experts he specialize in all things, Windows Live and I would be happy to help you with your questions! Please choose a product below to be redirected to the appropriate community:

    Windows Live Mail

    Windows Live Hotmail

    Looking for a different product to Windows Live? Visit the home page Windows Live Help for the complete list of Windows Live forums at www.windowslivehelp.com.

  • Cannot remove Japanese, Chinese and Korean in language bar.

    Hello.

    These languages have been added to my language bar yesterday somehow and I can't seem to remove them, they do not appear on the window of "input languages.

    Here is a screen shot describing the problem encountered:
    (I use Hebrew)
    Restart the computer to resolve this problem, although languages have been added later once, for some reason any...
    I read somewhere that the addition of these languages and then deleting will allow them to solve, but it did not work.
    Is there a permanent solution to this problem? I use Windows 7 ultimate 32-bit SP1.
    -Thanks, Rafi.

    Hello

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-desktop/how-to-remove-languages-from-language-bar/ee869af8-72c4-42c6-adf3-e4ae865f2701

    http://support.Microsoft.com/kb/306993

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-desktop/cannot-remove-Chinese-Japanese-and-Korean-from/ba66a078-8BE6-4866-9aef-03a091a66c8a?page=1&TM=1356858017822

  • Cannot remove the gray blocks that appeared in the work of site

    Hello

    Blocks of gray, full browser width, have suddenly appeared on my site. I'm unable to select these blocks and therefore cannot remove them. They are repeated at intervals to the bottom of a page Web site. The gray stripes appear also from the ravages of playing with the filled boxes and whites of browser are filling must be.  Attached are jpg showing site with and without filling of browser.  Interestedly gray blocks do not appear when displayed in a browser, but the browser fill is intermittent, see link to the site. If the filling of the browser is removed from the work them the online version has a constant white background, but I'm really want to have the background fill now!

    Link to wedsite:

    Home

    Any suggestion is welcome.With browser fill.jpgWithout browser fill.jpg

    Looks like you have a picture of model for the filling of your browser and your fill of page has zero value, with a small transparent triangle SVG icon as a background picture fill.

    Your watch through the page background fill.

    Try to delete the page fill out the image and using a solid instead of the color fill. -What gives you the look you want?

  • Cannot remove the Image event listener

    I'm clearly missing something and would be grateful for the help.  I'm trying to run an event handler when a full picture of loading, then remove the Manager so that it does not once again the image needs to be reloaded later.

    The problem I'm having is that the event handler simple custom ' disappear, despite the call removeEventListener on the Image object.

    The following example illustrates the problem (the example do anything useful... it's just the shortest example to demonstrate the problem).  (To run the application, you will need to provide any file JPEG ol ' named 'myImage.jpg' in the directory 'src' to your project).

    What to expect to happen is:

    (1) at startup, the image loads and runs of loadComplete().

    2) loadComplete removes the event listener so that subsequent re-loads don't get re-triggers the Manager.  I want only the Manager to run once.

    3) 'loadComplete' should appear in the debug console.

    (4) a click on the button should display only 'change picture' in the debug console

    What I get instead is that Manager loadComplete is not removed, and whenever I click on the button, loadComplete runs when the image is re-load (i.e., each button click results in the showing in the debug console 'change picture' AND 'loadComplete' ).

    <? XML version = "1.0" encoding = "utf-8"? >
    " < = xmlns:mx mx:Application ' http://www.Adobe.com/2006/MXML "layout ="absolute"> "
    "<mx:Image width ="655"height ="181" source =" myImage.jpg" id ="MyImage" autoLoad ="true"="true"scaleContent complete =" loadComplete () " ="100"x ="100"/ >
    < mx:Button = "100" x = "341" label = "Button" click = "click (event)" / >
    < mx:Script >
    <! [CDATA]
    private void loadComplete(): void
    {
    trace ('loadComplete');
    myImage.removeEventListener ("complete", loadComplete);
    }
    private void click(evt:Event):void
    {
    trace ("change Image");
    myImage.load ("myImage.jpg");    Reload image even; This is just an example
    }
    []] >
    < / mx:Script >
    < / mx:Application >

    Hello

    You can only remove event listeners you added with the addEventListener() method in an ActionScript block. You cannot remove an event listener that has been defined in the MXML tag, even if it has been registered by using a call to the addEventListener () method that was made within an attribute of the tag.

    Check this page for reference.

    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=events_05.html

    You can change the code a bit get it works

    
    
    private function myImage_creationCompleteHandler(event:FlexEvent):void
    {
         myImage.addEventListener("complete",myImage_completeHandler);
         myImage.load("myImage.jpg");
    }
    
    private function myImage_completeHandler(event:Event):void
    {
         myImage.removeEventListener("complete",myImage_completeHandler);
    }
    
  • Error of Facebook, what can I do? Resource://jid0-wpch2liwmumjc8av1vwejwvgjbi-at-Jetpack/qclean-remove-Facebook-ads-suggested-pages-and-posts/data/qclean.js:53

    Facebook maintains the gel, a problem caused by this script resource://jid0-wpch2liwmumjc8av1vwejwvgjbi-at-jetpack/qclean-remove-facebook-ads-suggested-pages-and-posts/data/qclean.js:53

    I tried many solutions suggested, nothing works. Please advse. Thank you.

    Ed

    Hello ed, this error is caused by the qclean addon that you have installed. Please disable or delete or report the problem to the author of the extension...

    Disable or remove modules

  • Cannot remove the ghost folder. Error message: there is no such mailbox

    When I configure Thunderbird to connect to my Alpine Webmail, I had to rearrange my folders. Cannot remove a folder titled "mail" because according to TB "there is no such mailbox" but still shows on the tab my folders. I read through the previous discussions and have tried to unsubscribe the ghost folder, but that did not work or the other. I have a Mac OSX if this affects what it is. Please let me know if you have any suggestions. Thank you.

    Hello world. I solved the problem... somehow. By removing the account of Treasury Board and put in place again, TB has been able to sync with the files that were on Alpine. The ghost folder still presented (despite not existing not not on the Alpine site), but by changing the directory to the IMAP server of "mail" to "mailbox" the ghost folder disappeared. I found myself with records who have been named oddly (most likely due to the change of the name of directory) so when I changed the IMAP server directory to "mail" it reset my files with the way they were, with the exception of the ghost folder, that was no longer there. I'm not entirely sure why it worked, but in case someone else has a similar problem, I recommend to give it a try.

    Thank you all for your comments and help.

  • Cannot remove the flash drive obsolete no matter what I do

    Have tried everything told to do but still support cannot remove the obsolete shock wave. the file is not on my computer. also when I put never activate it does for the latest version. How can I remove what it is causing crashes because the 2 versions

    Hello, please type Subject: plugins in the address bar - it should list all the available plugins, including their location on the file system.

  • Cannot remove syncing videos to the iPhone (hroniz) ed from iTunes?

    Hello.

    After to tell iTunes to sync my very old Windows Update (hronize)

    HDD XP Pro SP3 on my iPhone 4 (iOS v9.3.1), I noticed the video iPhone

    Cannot remove copies. Is it normal? I wanted to delete his

    copy to free disk space after watching them.

    Thank you in advance.

    You must connect your phone to your computer and the unsync.

  • I have kernel_task, in my mac pro book, I can see it in the activity monitor is but cannot remove ' tried everythin... I'm lost now... Please help

    I have kernel_task, in my mac pro book, I can see it in the activity monitor is but cannot remove ' tried everythin... I'm lost now... Please help

    Tried force quit.

    What happened to restart? When you restart your mac, the process begins again.

    Another option is abandonment of the process with the terminal. Just search in google for it.

  • Cannot remove iCloud backup of my old iphone

    I upgraded from an iPhone 4 to a 6 s iPhone yesterday. Activation and downloading my settings and applications from the iCloud went perfectly. I am now trying to delete the backup of the iPhone 4 on the iCloud, so I can have enough space to save my iPhone 6 s. I get a message, "this backup cannot remove because it is in use". Any suggestions?

    Hi Poppabear5,

    Congratulations on your new iPhone 6 s! I understand that you have a problem with deleting your iPhone upward iCloud. Let's see if we can understand what is happening.

    The type of message you see, looks like your iPhone 6s is not made backup upward. The best way to confirm this is to see if it is possible to make a backup with your iPhone 6s and see if Yes see a message in the sense of "this iPhone is currently being restored and will back up automatically when it's done.". If this is the case, then you want to wait for the restore before you delete the backup. Another thing to think about is if you still have your iPhone 4, make sure it is not turned on and backup. It would be considered in service as well.

    iCloud: alert messages of understanding when restoring a backup to iCloud
    https://support.Apple.com/en-us/HT203756

    Nice day

  • Cannot print more than two pages

    Hello here

    I have a rather strange problem today: one of my users cannot print more than two pages...

    Regardless of the printer, the application or document, this specific user will receive the first two pages printed on the right, then a windows error (cannot print, the likely reason is a failure of the network, not enough memory, etc.)

    Current config is

    -User logged on the Witch of Windows 2008R2 Server Citrix XenApp 6.5 (published desktop).

    -Print server Windows 2008R2 with something like 150 shared printers

    I tried with other printers and file formats, on separate servers, it's always the same.

    Of course, everything works perfectly fine for other users...

    I'm not sure if any parameter can block printing up to two pages only, or anything else. Before you delete and recreate the user profile, as everyone has an idea?

    Grey'

    Hello

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • Novice... need a simple program to open all my doc. & post pdf file in my documents. Just upgded. for Win7, accidentally chose Win Media Cntr. don't want that & cannot remove it. Answers, thanks, Russell.

    Tech file transferred my documents to an open 500 Gig HD could not all files. Continued w/Win med Cntr. program, I accidentally chose to open my files. Cannot remove Win Med. CNTR... How?

    Hi, Russell,.

    Right-click on the file and select open with

    Select Choose program to choose the program you want to open the file

    . Doc is an extension that is associated with the Microsoft Word application

    . PDF is an extension associated with Adobe Reader

    How can I change this program opens a specific file in Windows (applies to Windows 7)

    http://www.FileInfo.com/help/windows_change_program

Maybe you are looking for

  • How do turn us off annoying tab

    I understand that most people run after and stuck with the limitations of the use of I-Pads (fool-Pads) with only two inches - LOL! However, we use several displays (displays concurrent sometimes 2, 4 or 6 according to the needs of the client) and it

  • Satellite Pro S300 and AES1610 fingerprint reader

    To the right,. I have a laptop Toshiba Pro S300 with AES1610 fingerprint reader.Whenever I start windows and was produced for more than a week now it appears constantly wanting to install an update for AES1610, when you select ok to complete the inst

  • Choose ISE or Vivado Xilinx tools for a specific compilation of FPGA

    Hello Is there a way to specify what version of Xilinx Compilation tools to use when compiling an FPGA VI? I want to try the version Vivado tools rather than the version of ISE to see if there is an improvement. I have listed some information on my s

  • Sound recording play, sound safe mode does not!

    Well, I have a Lenovo T61 and it began to show the blue screen. It won't let me boot up normally, but when I go into safe mode the Audio does not work. Is there a way I can fix this?

  • Logoff automatically

    When I connect my PC with another user it is automatically logoff at this time. A few days before I uninstall Quick Heal antivirus once this problem starts. In my system, I have 3 user accounts. I deleted an account and create a new account but still