how she did it? "Pointing out every line of a paragraph.

If a very 'cunning' designer before me... in Pagemaker 7, managed to make a paragraph which had underscore under each line.

http://nickdclements.com/hotlink/lines.jpg

Now all that she did, it translates into InDesign (CS5), but I can't find out in Pagemaker or InDesign, how the formatting is done...

It is not "custom" underscore and I doubt it's a stroke anchored, it generates and deletes lines new lines are created, and the lines are removed...

subsection NET

Tags: InDesign

Similar Questions

  • How (if possible) I point out a whole day in the Windows calendar instead of just a single event? (With the help of Vista Ultimate) Thank you.

    How (if possible) I point out a whole day in the Windows calendar instead of just a single event? (With the help of Vista Ultimate) Thank you.

    I have no experience with Windows Calendar, but see this article for a bit of luck:

    Customize Windows Calendar
    http://Windows.Microsoft.com/en-us/Windows-Vista/customize-Windows-Calendar

  • When I copy and paste a web address into an e-mail he did not point out to allow a simple click on the receiver. Is there a way I can do this in Firefox?

    It is quite a common event to send friends a thread in a web address for interesting articles or videos (Youtube URL). To make current means that you do a copy and paste into the email. When I was with Aol address presented in bold that allowed the recipient to click on the address to be connected instead of making a copy and paste into the address bar. Is there a way that this can be done in Firefox?

    Thanks a lot, I had this problem for so long now. Yours is the only solution that makes it clear how to solve. Still don't understand not why it does not automatically in Firefox as it does in IE but good is not a big constraint... and it does not use new IE! See you soon

  • I have a pdf form that has 4 columns, with each column having 28 check boxes and text between. I did so he goes by column, but when I do anything for a checkbox it takes it out of line. How can I keep that from happening?

    I have a pdf form that has 4 columns, with each column having 28 check boxes and text between. I did so he goes by column, but when I do anything for a checkbox it takes it out of line. How can I keep that from happening?

    You talk about the tab order? If Yes, go to Edit - Preferences - forms and make sure the box "Automatically adjust tab order when changing fields" is NOT checked.

  • How to preset the order of the lines in the outer query of a correlated query?

    Hello

    I have the following simple query:
    select empno,
           ename,
           sal,
           sum(case
                 when rn = 1 then sal
                 else -sal
               end) over (order by sal, empno) as running_diff
       from (
             select empno,
                    ename,
                    sal,
                    row_number() over (order by sal, empno) as rn
               from emp
              where deptno = 10
             );
    Who calculates a difference running and uses «row_number() over (...)» which is a specific feature of the Oracle to do it. We get the following result (that we will consider correct):
         EMPNO ENAME             SAL RUNNING_DIFF
    ---------- ---------- ---------- ------------
          7934 MILLER           1300         1300
          7782 CLARK            2450        -1150
          7839 KING             5000        -6150
    I wanted to arrive at a different solution from the solution, it was not a specific Oracle . I tried the following code:

    (EDIT: after further thought, this code is entirely different sense and will never get closer, the result above.) Considers that it is wrong and ignore this attempt.)
    select a.empno,
           a.ename,
           a.sal,
           (select case
                     when a.empno = min(b.empno) then sum(b.sal)
                     else sum(-b.sal)
                   end
              from emp b
             where b.empno <= a.empno
               and b.deptno = a.deptno) as running_diff
      from emp a
     where a.deptno = 10;
    but the result is
         EMPNO ENAME             SAL RUNNING_DIFF
    ---------- ---------- ---------- ------------
          7782 CLARK            2450         2450
          7839 KING             5000        -7450
          7934 MILLER           1300        -8750
    that is a long way from the initial result. I tried everything I could think to order lines before running difference is calculated, but were unsuccessful.

    Is there a way to change this second request-(without using Oracle specific features) - without the help of windowing functions that give the same result as the first query?

    Rephrase the question above:

    Is it possible, using plain vanilla SQL (which is the aggregate functions and operations such as joins and unions) to create a query that produces the same result as the first?

    In addition, it is not for production code. It's just an exercise in manipulation set I would like to see a solution for.

    Thank you for your help,

    John.

    Published by: 440bx - 11 GR 2 on July 18, 2010 12:50 AM - correct ' ho w "to"how ".

    Published by: 440bx - 11 GR 2 on July 18, 2010 01:42 - struck all references to row_number and windowing being features of Oracle functions.

    Published by: 440bx - 11 GR 2 on July 18, 2010 03:51 - pointed out that my essay is terribly wrong and it had reaffirmed the goal to make it clearer.

    Hi, John,.

    A way to get a total operating (which is essentially what you want) must make a self-join. Join each line (let's call it the current line, or c) for himself and everything that preceded it (call this the previous line or p), and do a regular lump SUM, like this:

    WITH     got_base_sal     AS
    (
         SELECT       deptno
         ,       2 * MIN (sal)     AS base_sal
         FROM       scott.emp
         GROUP BY  deptno
    )
    SELECT       c.deptno
    ,       c.empno
    ,       c.ename
    ,       c.sal
    ,       b.base_sal - SUM (p.sal)     AS running_diff
    FROM       scott.emp     c
    JOIN       scott.emp     p     ON     c.deptno     = p.deptno
                        AND     (     c.sal     > p.sal
                             OR     (     c.sal     =  p.sal
                                  AND     c.empno     >= p.empno
                                  )
                             )
    JOIN       got_base_sal     b     ON     c.deptno     = b.deptno
    WHERE       c.deptno     IN (10)
    GROUP BY  c.deptno
    ,       c.empno
    ,       c.ename
    ,       c.sal
    ,       b.base_sal
    ORDER BY  c.deptno
    ,       running_diff     DESC
    ;
    

    Output:

        DEPTNO      EMPNO ENAME             SAL RUNNING_DIFF
    ---------- ---------- ---------- ---------- ------------
            10       7934 MILLER           1300         1300
            10       7782 CLARK            2450        -1150
            10       7839 KING             5000        -6150
    

    I said you basically want a total runninng. There are two differences between a cumulative and your needs
    (1) you want to have a total of the negation of what is in the table. That's trivial: use a sign less.
    (2) you want the first point to count as positive rather than negative. It's not so trivial. The above query counts all know as negative, but adds an offset to make it appear as if the first item had been posted as a positive, not negative result.

    You don't say what you want to do in the case of a tie (two or more lines having the same sal). The above query uses empno as a tiebreaker, so all sals are calculated as if they were separate. This is similar to what the analytical functions do when the window comes from the ranks. If you want something similar to windowing by scope, which could actually be simpler.

    The above query calculates a running_diff separate for each deptno, similar to "PARTITION BY deptno" in analytic functions. You happen be interested in a single deptno right now, but you can change the WHERE clause of the main query, or to omit, and the query still works. If you don't want this feature (analagoud for not having any PARTITION BY), it is easy to change the query.

    You can also get these results by using a WITH recursive clause. Which meets the criteria to avoid analytical functions and features specific to Oracle, but not on the use of the only clear and simple SQL features.

  • How I did it

    Several years ago, I did this in Illustrator, but I don't remember how I did it.

    I know it 'happened', I draw each line.

    I remember dragging the edge of the form to create the overall design.

    I don't know that I discovered this through a tutorial online (which does not add).

    The clues how to recreate something like this?

    how.jpg

    1. Black STROKE, no fill.

    2 ArcTool: Drag the Tilde key.

    3. apply a conical ArtBrush (drove out of a tiny triangle pointing to the right) on the paths that result.

    JET

  • Reset the computer at a point "out of the box.

    Hi my name is felix
    I need to know how to restore my computer to a stage 'out of the box. a restore point will not help because I created a restore point when I had problems.
    Thank you...

    Obtaining recovery Vista Media and/or use the Partition Recovery Vista on your computer, to return to the factory settings.

    There is no Vista free download legal available.

    Contact your computer manufacturer and ask them to send a recovery disk/s Vista set.

    Normally, they do this for a cost of $ small.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    In addition, ask them if you have a recovery Partition on your computer/laptop to restore it to factory settings.

    See if a manual provided with the computer or go to the manufacturer's website, email or you can call for information on how to make a recovery.

    Normally, you have to press F10 or F11 at startup to start the recovery process...

    Another way I've seen on some models is press F8 and go to a list of startup options, and launch a recovery of standards of plant with it, by selecting the repair option.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    You can also make recovery disk/s for the recovery Partition in case of a system Crash or hard drive failure.

    They will tell you how to do this.

    Every computer manufacturer has their way of doing recovery disk/s.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Or borrow a good Microsoft Vista DVD (not Dell, HP, etc).
    A good Vista DVD contains all versions of Vista.
    The product key determines which version of Vista is installed.

    There are 2 disks of Vista: one for 32-bit operating system, and one for 64-bit operating system.

    If install a cleaning is required with a good DVD of Vista (not HP, Dell recovery disks):

    Go to your Bios/Setup, or the Boot Menu at startup and change the Boot order to make the DVD/CD drive 1st in the boot order, then reboot with the disk in the drive.

    At the startup/power on you should see at the bottom of the screen either F2 or DELETE, go to Setup/Bios or F12 for the Boot Menu

    http://support.Microsoft.com/default.aspx/KB/918884

    MS advice on the conduct of clean install.

    http://www.theeldergeekvista.com/vista_clean_installation.htm

    A tutorial on the use of a clean install

    http://www.winsupersite.com/showcase/winvista_install_03.asp

    Super Guide Windows Vista Installation

    After installation > go to the website of the manufacturer of your computer/notebook > drivers and downloads Section > key in your model number > get latest Vista drivers for it > download/install them.

    Save all data, because it will be lost during a clean installation.

    Mick Murphy - Microsoft partner

  • Is there a way to distinguish constraint not null null, out-of-line one online?

    Dear maters,

    Could you please help me to answer the question: How can we distinguish non-null online constraints (non-null column option) not null out-of-line ones (constraints, defined at the table level)? Below is an example of what I mean.

    1. Create a table.
      CREATE TABLE TEST (ID NUMBER NOT NULL);

    At this point, we have created a table with the constraint. The constraint was automatically created because of the option ' not null ' in the column definition. Say that the constraint name is SYS_C00699573. We can get the information about this user/all/dba_constraint or user/all/dba_cons_columns views.

    1. ALTER table.
      ALTER TABLE TEST ADD CHECK ('ID' IS NOT NULL).

    Here, we have created the second constraint as well. Say his name is SYS_C00699574. The only difference between them is that the first is online, and the second constraint is not. Is not only the terminology: If you file online - the 'NOT NULL' option also expires the DDL of the table. This is serious: for example, optimizer Oracle does not the id as nullable column either. If you drop the second - nothing like that happens. Oracle therefore somehow difference between online and offline constraints.

    1. Drop out-of-line constraint. At this point the question arises: How can we distinguish who among the two constraints is online and who isn't? From dba_constraint/all/user or user/all/dba_cons_columns views constraints search exactly except their names.

    Does anyone have an idea? Any help is very appreciated.

    Thank you.

    If you go here:

    SELECT * FROM SYS. CDEF$ WHERE OBJ #= you_table_object_id

    You can see the TYPE # is different, one is 7 (non-null) is 1 (check).

  • How to make one of my computers line so that I can install LR and PS on a third unit and how do I tell Adobe about which computer is offline while I have only 2 operational at a time?

    How to make one of my computers line so that I can install LR and PS on a third unit, and how should I inform Adobe on what unit is online, at any time, so that I can use the other two?

    Richard,

    You can have the creative cloud installed and signed in on two computers as long as you don't use it on one at a time. Download and install as you did on the first computer, sign in to your Adobe account on the Adobe using your Adobe ID website, download the desktop app from clouds, then download the software.

    You can download the installer for Creative Cloud from here:
    Creative cloud help | Creative cloud desktop.

    After you install the creative Cloud desktop application, you will need to sign in with a login password and Adobe. Then you can install applications. This link provides more information and step by step instructions, if you need: CC help | Download, install, update or uninstall applications

    If you get a new computer, simply log out of creative cloud over one of the other and log on to the new.  Connect, disconnect you and | Adobe Creative Cloud desktop app

    Guinot

  • Firefox spell check feature began to point out almost all of the words, regardless of if the words are correctly spelled.

    Firefox spell check feature began to point out almost all of the words, regardless of whether the words are spelled correctly.

    Tried to download and reinstall Firefox 3.6.8 but the same thing happens.

    Tried different web pages to see if it was a feature of a particular Web site, but it happened while I typed this entry in a field on a Mozilla Web site page.

    Such a shame, apart from the extensions topic spelling is one of my favorite features of Firefox!

    Can you tell what dictionaries were causing this issue?

    Only the selected dictionary has an effect.

    You can see which dictionary is selected if you right click in a text box and open the submenu language.

    Also make sure that [[X] "Check spelling" in the right click menu context has a tick.]

    Alternatively, you can try to move on the items 'Check spelling' and the new.

    See http://kb.mozillazine.org/Spell_checking and How to use the spellchecker of Firefox?

  • I lost the activation of my version of windows xp, how she recovered?

    I lost my activation of windows xp, how she recovered?

    Hello

    The computer is an OEM or a customized version?

    You can check out the link and contact the order desk.
    How to replace Microsoft software or hardware, order service packs and replace product manuals
    http://support.Microsoft.com/kb/326246
     
    You can also check this link:
  • What is blue screen and what to do and how to fix this with out taking back to factory setting and reinstalling Vista

    What is blue screen and what to do and how to fix this with out taking back to factory setting and reinstalling Vista

    When a BSOD (Blue Screen of Death) the system failure occurs, for most users, there not enough time to fully record what he says. the exact text is important for anyone trying to diagnose what is wrong. You can save time when the error occurs then by following the procedure described below.

    If you already did it disable the auto reboot system error. This should help by allowing the time to write the code to Stop error and related information correctly. Select Start, do a right-click on computer select Properties, advanced, system settings startup and recovery, system failure and uncheck the box before automatically restarting. Re-do not enable automatic restart in the event of system failure after obtaining this information, this setting is the best left to not allow an automatic restart.

    If the failure occurs during the initialization of the computer, you need to try a different approach. You can access the Advanced Options Menu of Windows on multiple computers by constantly pressing the F8 (key) key when starting and selecting the option - disable automatic restart in case of system error. This method is not always easy to use because it may be difficult to press the F8 key at the right time. Try again if it doesn't work the first time. On some computers, a different key must be used.

    Send a copy of your dumpfile as a shared file on your disc of sky with a link here.
    http://social.technet.Microsoft.com/forums/en-us/w7itproui/thread/4fc10639-02dB-4665-993a-08d865088d65

  • I wanted to respond to an ad on craigslist, but when I sent that is wrong here. then I checked and about 10 other emails did not get out, he said something about windows and yahoo is not open

    I wanted to respond to an ad on craigslist, but when I sent that is wrong here. then I checked and about 10 other e-mails did not go out. It says something about windows and yahoo is not open.  Thank you bill

    Hello

    in Vista, you must configure Windows Mail or Windows Live Mail to email to craigslist from your web browser

    You must configure your windows mail or e-mail account WLM with your ISP internet service provider

    They provide you with account settings you need to do

    Ask them to

    username
    password for your access broadband account / distance with them

    Server of incoming POP3 mail
    outgoing mail SMTP server

    and here's how to configure windows mail after getting the email correct account settings

    http://www.vista4beginners.com/Windows-Mail

  • When I change the thickness (in points) of text/lines/etc by using the arrow icons the thickness of the line jumps instantly to 1000 pts. Why?

    ILLUSTRATOR - when I change the thickness (outline/stroke) (in points) of text/lines/etc by using the icons of arrow (upwards or downwards), the thickness of the line jumps instantly to 1000 pts. How can I adjust the settings to make this feature work, because I really need in many situations. Thanks in advance!

    1.JPG

    3.png

    koenk,

    The current pastor of the corrupt file bug/preferences units seems to be:

    (1) delete your preferences HERE (close HAVE and press Ctrl + Alt + Shift / Cmd + Option + shift during startup).

    (2) ensure that the parameters English (United States) system locale and the decimal point is. (dot/full stop, no, (comma) when the machine is restarted,)

    (3) launch HAVE again and see if the subject is cured.

    You can see a long discussion here:

    https://forums.Adobe.com/thread/1871389?q=units%20bug

  • How can I wrap text on several lines when make an editable PDF file?

    I'm transforming shape study guide PDF in a document that can be typed directly to. Some questions have multiple answers lines, so when I convert the shape into something editable, she designs each as separate individual line entry. I want to be able to type on one line and that the text wrap down to the other lines. Does anyone know how to do this?

    Here is an example...

    text wrap.PNG

    How am I able to get the text typed in these 4 lines to wrap to the next line?

    Thank you

    -Jake

    Edit: If I can't do this in Acrobat DC, is there any other software do know you who can afford to do this?

    You can use a single multi-line text field. Just remove the three substantive fields, make the upper field taller, then tab of the field properties dialog box Options, select the option "multiline". If the underlying form lines, set the background color to white to only show through, since they will probably not match line spacing. You may be able to set the font size to fit well.

Maybe you are looking for

  • Impossible to uninstall Skype so that I can upgrade to the new version

    Hello I can't uninstall my Skype. It seems that the Skype.msi file is missing. I get this Windows Installer message "the installed product does not match the installation source" the message continues to ask for a source to find the file. I don't kno

  • 3005 pro MT coprocessor driver for Win7 - 64 bit

    Kinda says it all. I have a desktop HP Pro 3005 MT with an AMD X processor 2 245, that I've upgraded to Windows 7 ultimate (64 bit). Everything works well except that the co-processor driver is not installed, and I can't seem to find anywhere (nothin

  • 646 and 80070652 error codes

    My computer has tried and failed to install 6 upgrades for several days. I get the code 646 and previously obtained code 80070652.  any suggestions?

  • Window

    Will Microsoft ever do things? He will never listen to his client based division! Or who keep it will take engineers advice? Logical and rational answers please!

  • After trying to retrieve my E Machine I get the message that she wants the CLIENT MAC ADDR 00 13 d3 6 71 38 c

    client mac addr You had to do a hard full format C drive. It is an EMachine athelon 64 with XP Pro x 86. Had to format it on another computer as Machine E would not. Reinstalled in computer & recovery disk for the computer system responsible for E. i