Trying to duplicate this type

Just as an exercise, I'm trying to replicate this poster type with a single column of text in InDesign. With a series of underlines, rules, and various baseline shifts and extreme leading, I've come pretty close. I'm stuck on the "The." Is there any way to make that word be in front of the one below it? Thanks

winterm wrote:
Peter Spier wrote:
One way would be to put it in its own frame.
That's normal decision for the real world. As for exercise, you can play with leading and baseline shift, too.
Right. It's important to note that for the red text to be on top it must come after the word strokes in the text flow, no matter how you do it.
For an exercise using baseline shift to move text that far would be OK, but in the real world it would make the story nearly impossible to edit.
Keep in mind that the original was probaly either set as letter press, or possibly a silkscreen, and it would have gone through two passes, one for the black, and a second for the red, and they would not have made an attempt to put both sets of type together the way we do now with electronic separations.

Similar Messages

  • Trying to duplicate this "Energy Flow" effect (originally created in AE)

    Following the tutorial from videocopilot on "soul removal"...
    http://www.videocopilot.net/tutorials/soul_removal/
    I created a couple variations on an energy glow effect in AE, here:
    http://www.youtube.com/watch?v=HzdwK2LoQbE
    http://www.youtube.com/watch?v=KWYrfsSMZ0k
    I think this should be easy to duplicate in Motion, but I'm going slightly nuts trying to figure it out. The effect is created by having some simple white circle particles with AE's Fast Blur and CC Vector Blur added. I know how to do something similar to Fast Blur in Motion, but I can't figure out how to achieve something equivalent to CC Vector Blur. There must be some way of creating something similar, though. Any Motion gurus out there care to help me save my sanity?
    (I know there are somethings that AE can do, that Motion can't, but I don't think this is one. I would hope that Motion is able to do this)

    First of all, thanks for intriguing me enough that I decided to waste my morning figuring this out.
    Anyway, I watched the tutorial, and the conclusion I came to is that to attempt to duplicate the tutorial step by step is to undermine motion's capabilities.
    Now, I will preface this by saying that my "energy flow" is not identical. But I think it looks really good. Also, I didn't work to modify it all that much, so I'm convinced that with a little tweaking, it'll look even better than the AE version.
    Ok. When watching the AE tutorial, Andrew Kramer uses the CC Vector blur to turn circle particles into more of a smoky, curvy line. When looking at the way vector blur affected the particles, it reminded me of the caustics generator in Motion. So here's what I did.
    First, I borrowed a pre-existing particle emitter that already looks like energy. You can find it in the library under the abstract folder in Particles. It's called Flow 01 interestingly enough. Then I adjusted the emission angle to 90 and the range to a small number like 7 or so. This gets the particles (which BTW are curved lines, not circles) moving to the right like the tutorial.
    Then I increased the speed quite a bit, and the birth rate a little, and introduced some speed randomness. Again, you can tweak these to give this the look you want. Once I got the flow moving, I had to set up the distortion.
    I created a new group and placed the caustics generator in there. I tweaked the generator so that the water-like ripples were small, bright, and had a high level of refraction. Then I applied a gaussian blur to the generator to soften the edges quite a bit.
    Going back to my particle group, I added the Refraction filter from the Distortion folder. But (and this is important), I added it to the GROUP, not to the emitter. The reason has to do with a step below. I used the caustics generator as the source for the refraction (and turned off the caustics group as well) and made sure I had high levels of refraction and softness.
    This more or less made my emitter look like a reflection in water, until I fixed the resolution for the group. Then I got the look I was going for.
    And that is all there is to it. You'll still have to do the rest like duplicate the emitter, add an emitter that does the little flying particles, but the energy stream looks good to me.
    I'm including a link to my project so you can take it apart. I hope this helps.
    [Energy Flow|http://www.timesavertutorials.com/fileshare/energy.zip]
    Andy

  • Trying to duplicate this effect

    Of course the guy that did it won't share his way of doing it, says there is a plug-in but it's $250. I'm wondering if anyone here knows how this effect can be made or knowing of the plug-in (Exposure 2) can be gotten for free. Here's the image that I'm trying to get, it's the effect on the player.
    [IMG]http://i573.photobucket.com/albums/ss173/djcarsey83/34g4rjn.jpg[/IMG]

    You can try contrast masking and high pass sharpening to create something like this effect. You might try smoothing the image using smart or surface blur after applying some of the contrast masking.
    http://www.graphics.com/modules.php?name=Sections&op=viewarticle&artid=733
    http://www.luminous-landscape.com/tutorials/contrast_masking.shtml

  • How to achieve this type of Writing

    I finally my Intuos tablet and I been trying to make this type of lettering, but I haven't had no luck. I been messing with the settings of the "Calligraphic" brushes and nothing. If someone out there knows how to achieve this and is willing to share the knowledge I'd be very helpful and I'd appreciate it it very much!
    http://img209.imageshack.us/img209/1186/typevl0.jpg
    Thanks!

    I'm afraid your expectations may be a bit unrealistic. That's not going to automatically happen by merely stroking away with a stylus using a Calligraphic Brush.
    Whether you're using a stylus or a mouse for your input device, that kind of text design is drawn deliberately and carefully with the Pen tool, creating paths along the edges of the glyphs.
    You
    might achieve a rough sketch as a starting point, but even then it would be better (and most probably easier) done by drawing centerline paths with the Pen and applying the Calligraphic Brush to those paths. Better still, start with a pencil sketch, scan it, and just start tracing that with the Pen. Tracing text is excellent practice for learning to use the Pen.
    JET

  • SQL MERGE trying to duplicate update/insert. The insert/update is not ideal, but the sql merge hangs.

    I am trying to duplicate this update/insert with a sql merge:
    -UPDATE [etag].Energy_Processed
    SET Start_Datetime = estg.Start_Datetime,
    --End_Datetime = estg.End_Datetime,
    --Schedule_MW = estg.Schedule_MW,
    --Active_MW = estg.Active_MW,
    Load_Dt = GETUTCDATE() 
    FROM  [etag].Energy_Stg estg, [etag].[Energy_Processed] ep
    WHERE estg.Tag_Name IN
    SELECT DISTINCT(tproc.Tag_Name) from [etag].[Energy_Processed] eproc
    INNER JOIN [etag].[Tag_Processed] tproc ON tproc.Id = eproc.Tag_Id
    INNER JOIN [etag].[Energy_Stg] estg1 ON estg1.Tag_Name = tproc.Tag_Name
               AND ep.Active_MW = estg.Active_MW
               AND ep.End_Datetime = estg.End_Datetime
              AND ep.Schedule_MW = estg.Schedule_MW 
    INSERT into [etag].[Energy_Processed] (Tag_Id, Start_Datetime, End_Datetime, Schedule_MW, Active_MW, Load_Dt)
    SELECT tproc.Id, estg.Start_Datetime, estg.End_Datetime, Schedule_MW, Active_MW, GETUTCDATE()  FROM [etag].[Energy_Stg] estg
    INNER JOIN [etag].[Tag_Processed] tproc ON tproc.Tag_Name = estg.Tag_Name
    WHERE estg.Id BETWEEN @minEId AND @maxEId AND
    estg.Tag_Name NOT IN (
    SELECT DISTINCT (tproc.Tag_Name) from [etag].[Energy_Processed] eproc
    INNER JOIN [etag].[Tag_Processed] tproc ON tproc.Id = eproc.Tag_Id
    INNER JOIN [etag].[Energy_Stg] estg1 ON estg1.Tag_Name = tproc.Tag_Name
    SQL MERGE:
    MERGE [Forecast_Data_Repository].[etag].[Energy_Archive] enArch
    USING 
    (SELECT ep.Tag_Id, ep.Start_Datetime, ep.End_Datetime, ep.Schedule_MW, ep.Active_MW, ep.Load_Dt 
    FROM  [etag].[Energy_Stg] estg, [etag].[Energy_Processed] ep
    WHERE estg.Tag_Name IN
    SELECT DISTINCT(tproc.Tag_Name) from [etag].[Energy_Processed] eproc
    INNER JOIN [etag].[Tag_Processed] tproc ON tproc.Id = eproc.Tag_Id
    INNER JOIN [etag].[Energy_Stg] estg1 ON estg1.Tag_Name = tproc.Tag_Name
    ) AS sourceEP
    ON EXISTS(SELECT sourceEP.Tag_Id)
    WHEN MATCHED THEN
    UPDATE
    SET Tag_Id = sourceEP.Tag_Id,
    Start_DateTime = sourceEP.Start_Datetime,
    End_Datetime = sourceEP.End_Datetime,
    Schedule_MW = sourceEP.Schedule_MW,
    Load_dt = GETUTCDATE()
    WHEN NOT MATCHED BY TARGET THEN
    INSERT (Tag_Id, Start_Datetime, End_Datetime, Schedule_MW, Active_MW, Load_dt)
    VALUES (sourceEP.Tag_Id, sourceEP.Start_Datetime, sourceEP.End_Datetime, sourceEP.Schedule_MW,
    sourceEP.Active_MW, GETUTCDATE())
    OUTPUT
    $action,
    INSERTED.Tag_Id
    --UPDATED.Tag_Name
    INTO @MergeOutput;
    Greg Hanson

    This bit
        ON EXISTS(SELECT sourceEP.Tag_Id)
    Looks wrong. Sould be something like:
       ON sourceEP.Tag_Id = enArch.Tag_Id
    And don't update the matching columns in the UPDATE part, as they already match.
    David
    David http://blogs.msdn.com/b/dbrowne/

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • I am trying to use a interactive form and it says "If this message is not eventually replaced by the proper contents of the document, your PDF  viewer may not be able to display this type of document."  This is a IRS form and has worked before.

    I am trying to use a interactive form and it says "see below"  This is a IRS form and has worked before.
    is there a tech support phone number?
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by
    visiting http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark
    of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries

    That means you are looking at the form online with a browser that uses its own (incompatible) PDF viewer, not the Adobe Reader plugin.
    Either
    download the form to your local disk and fill it from there
    use a browser that employs the Adobe Reader plugin
    configure your browser to use the Adobe Reader plugin: http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • For the first time, I'm trying to use adobe premiere elements10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or

    For the first time, I'm trying to use adobe premiere elements 10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or the codex is not installed. As a test, I created another very small project and get the same error message, when I try to open it. Pls give me a simple answer, a refund or a phone

    mike frischenmeyer
    What computer operating system is your Premiere Elements 10 running on? And, what video card/graphics card does that computer use?
    Is this the first time you are using Premiere Elements 10 or have you worked with it before successfully? There is no easy solution until we
    know the details and troubleshoot to determined what caused the problem.
    1. Can you open a new project?
    2. After you saved/closed the problem project, did you move, delete, or rename any of the files/folder that were related to the source media
    for that project?
    3. Please review the Adobe document on troubleshooting damaged projects.
    Troubleshoot damaged projects | Adobe Premiere Elements
    4. What are the steps that you are using to reopen this saved closed project.
    a. File Menu/Open Project/Name of Project
    b. Other
    Please review and consider and then we can decide what next based on your further details and results..
    Thank you.
    ATR

  • The filtering process could not be initialized when trying to process this item. Verify that the file extension is a known type and the item is not corrupt

    I am getting below error message while search crawl in sharepoint foundation 2010 search for only .VSD files and not for any other docs type.
    The filtering process could not be initialized when trying to process this item. Verify that the file extension is a known type and the item is not corrupt. 
    I have installed the Microsoft Filter Pack 2.0 in search server but still i am getting the same error.
    <//span>
    Any one's help will be appreciated.
    Regards,
    Rashmi
    Rashmi Singhal

    Hi Rashmi,
    1. Checked the file extension is added or not to the search file types.
    2. Checked file name has any invalid characters.
    3. Resetting the crawl index and run a full crawl .
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • I am trying to open up my iTunes from my Mac. It says "You can't open the application iTunes because it is not supported on this type of Mac." What do I do?

    I am trying to open up my iTunes from my iMac. It says "You can't open the application iTunes because it is not supported on this type of Mac." What do I do? I've already force closed all other apps.

    Well, obviously the problem isn't with the other apps, it's with the type of Mac you have. What type of Mac do you have?

  • Trying to export video, stuck at 0%. File in project is .mp4. I only have this problem with this type of file.

    Hello,
    I am trying to export a video and I'm stuck at 0%.  The file in the video is a .mp4 that I downloaded from my own Youtube page.  I have the same problem with any project containing this type of file.  I have tried to export as .mov, .Mpeg, .wmv, .avi, with the same results.
    I am able to export videos that contain other sorts of files without difficulty. 
    I am using a PC.  Adobe Premiere Elements 12.
    Any assistance will be greatly appreciated. 
    Thank you!
    Travis

    Travis
    Do you have the latest version of QuickTime installed on your computer with Premiere Elements 12?
    Sides mentions....
    Have you updated from 12 to the 12.1 Update? If not, please do so using an opened project's Help Menu/Update.
    What is the computer operating system in use.
    Are you running the program from a User Account with Administrative Privileges?
    We will be watching for your results.
    Thank you.
    ATR

  • Trying to watch a video on quick time player and i keep getting this message You may need to install additional software to open this type of file. what do i need to install and how

    Trying to watch a video on quick time player and i keep getting this message You may need to install additional software to open this type of file. what do i need to install and how

    I believe there is a technique which uses some similar suggestion to unwittingly tempt the user into installing malware, in order to be able to watch some (usually sexually explicit) video, so be aware of this ruse.
    The only things I would download would be Perian that extends Quicktime, available here,
    http://www.perian.org/
    and if that did not do it, then try VLC to use instead of Quicktime.

  • While trying to open iPhoto this message coming-You can't the application "iPhoto" because it is not supported on this type of Mac

    I recently upgraded my MacBook from Moutain Lion to Maverick.After upgrading I can not open the iPhoto.Whenever I try to open I get the message --You can't open the application "iPhoto" because it is not supported on this type of Mac.Tell me how to solve the problem?

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List* there.
    For older versions that have been installed from Disk you'll need these additional steps:
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    *Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.

  • I am trying to download Firefox - when I click on download, I get this message: This type of file can harm your computer. Do you want to keep Firefox Setup 8.0.exe anyway?

    I need help downloading firefox. I clicked on download, a message this message appeared at the bottom of my screen: "This type of file can harm your computer. Do you want to keep Firefox Setup 8.0.exe anyway?" Then I had the option to "keep" or "discard."

    Download from official site:
    http://www.mozilla.org/en-US/firefox/all.html
    select "keep", and after downloading double-click to install it.
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • I'm using a Mac. When I tried to open my iPhoto library in Elements I get the error message "cannot complete request PE doesn't recognize this type of file"?

    I use a Mac. When I try to open my iPhoto Library in Elements I get the error message "cannot complete request, PE does not recognize this type of file." The import option only allows me import a "frame from Video"?

    You can't use iPhoto that way.  Poking around in the iphoto library from outside iphoto is just begging for trouble, the fastest way to corrupt your library and lose all your images.
    You have two choices with iphoto:
    1. Set PSE as your external editor and send the photos from iphoto. Save, never save as, and don't change the name or format and iphoto will remember your last saved edits and the original, although you have to lose the edited version to revert to the original. This doesn't work with raw files.
    2. Export the photos from iphoto, use File>Open in PSE and then you can make all the changes to name and format that you want. Then import the saved edited version to iphoto as a new file.

Maybe you are looking for

  • Encore WT8-A - External monitor doesn't not work

    Hi all, I have problem, when I connect an external monitor to Toshiba Encore WT8-A with an HDMI cable, Windows does not recognize it. I tried to use monitors from Samsung, Philips and LG.I use a standard HDMI cable. The cable is OK tested on other de

  • IMessage & FaceTime Not Working on iPad after iOS 6.0.1 update?

    I have an iPad 16GB 3rd Generation and whenever I try to sign in with my Apple ID to Messages and FaceTime it pops up with "Could not sign in. Please check your network connection and try again." I have tried so many things for this including resetti

  • DB Adapter Polling Issue

    Hi All, I am working on a scenario something like this: I am polling an Oracle table and when certain flag is 'Y', I am selecting the record(s) and calling an external service. Then depending on the response from the external service, again updating

  • Finding columns using all_tab_columns

    I am using oracle 11g and i am having trouble finding a column name using all_tab_coulmns .Basically i dont know the exact name of the column and i used wild card in the where clause but i seems line wild card doesnt work.Could this be because of the

  • Spellchecking in different languages?

    Hello! I usually write my mails in German. (the Spellchecking works just fine) But every once in a while i write in English and i would like mail to check my spelling. where can i quickly change the dictionnary to english? thanks! Dani