How to create a retro 3d text effect in indesign Cs6?

Hello, i need to know how to make this retrolift 3d text effext in indesign.

http://indesignsecrets.com/making-long-shadows-indesign.php

Similar Messages

  • How to Create the Engraved/Carved Text Effect.

    Hello everyone,
    First I have search the forum for this topic but did  not find it.
    I am looking to create a Carved/Engraved  Text Effect.
    Something like this: http://www.patrickjudson.com/projects/example.jpg
    There are other better examples but basically the text appeared to  be  engraved or carved in the background.
    I have been  struggling to learn this.
    Any ideas?
    Thanks for  the help.

    The short answer is to use layer styles which will do a pretty good fake of this effect. If you are looking to actually distort a texture, check out this tutorial: http://www.2morrow.dk/75ppi/3dtext/default.htm (you may substitute KPT3.0 with Photoshops shape burst gradient effect).

  • How to create a muli line text area using JavaFx

    Hi all,
    Since the preview SDK does not contain TextArea any more, I am wondering how to create a muli line text area using JavaFX. The behaviour of this text area/field should be somehow similar to JTextArea in Swing or StyledTextWidget in SWT.
    Does JavaFX have any support for this? What would be a sensible approach to create such a widget?
    Thanks for your suggestions,
    br michael

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • How can I get a match text effect in a Choice

    How can I get a match text effect in a Choice; I mean, for instance, that if a type a "p" the first choice item that begins with a "p" should be automatically selected

    Here is a pretty simple example. Keep in mind that I am coverting all comparison characters to UpperCase. If you allow LowerCase characters in you Choice items then remove the appropriate Character.toUpperCase() calls.
    Hope this helps
    Mike
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TestApplet extends Applet implements KeyListener {
         private Choice choice;
         public void init()
              setLayout(new FlowLayout());
              choice = new Choice();
              choice.add("Aaron");
              choice.add("Adam");
              choice.add("David");
              choice.add("Mike");
              choice.addKeyListener(this);
              add(choice);
         public void keyPressed(KeyEvent e)
              int current = choice.getSelectedIndex();
              int x = 0;
              char c = Character.toUpperCase(e.getKeyChar());
              while(x<choice.getItemCount()) {
                   if(c == Character.toUpperCase(choice.getItem(x).charAt(0))) {
                        current = x;
                        break;
                   x++;
              choice.select(current);
         public void keyReleased(KeyEvent e) { }
         public void keyTyped(KeyEvent e) { }
    }

  • How to create a table using Text Layout Framework?

    How to create a table using Text Layout Framework? I meen real tables - like in HTML.

    Cell as indipendant TLF should work, I have created my table using same approach and works fine for me ... this is where it is
    http://apps.live-documents.com/docs/openWebDoc.do?docId=1480607
    Regards
    Raf

  • How to create pdf files with text field data

    how to create pdf files with text field data

    That looks like it should work, but it doesn't.
    I opened the PDF I had created from Word in Acrobat (X Pro). Went to File > Properties. Selected "Change Settings". I then enabled "Restrict editing...", set a password, set "Printing Allowed" to "none", "Changes Allowed" to "none", and ensured that "Enable copying of text..." was disabled.
    I saved the PDF file, closed Acrobat, opened the PDF in Reader, and I was still able to select text and graphical objects.
    I reopened the PDF in Acrobat, and the document summart still shows everything as allowed. When I click on "show details" (from File > Properties) it shows the correct settings.
    Any ideas?

  • How to create a custom shape text field?

    I have a diamond shape movieClip and I need add a text Field in the same shape format.
    Now how to create a diamond shape text field?
    Please help me!
    Thanks,
    Jafy

    there's no easy way to do that in flash.  that's an advanced task.

  • How do I print to a postscript file with InDesign CS6 without both extensions, .indd.ps?

    How do I print to a postscript file without an .indd extension in InDesign CS6? I choose Print, choose a print preset from my print shop and Save. The first time I tried it was blank (the Hide Extension was checked), so I tried to save and got a dialog box that said it cannot be saved as an .indd file (duh), to choose both or .ps. I chose .ps and it was fine, but every time I postscripted it gave me this dialog box until I unchecked Hide Extension. After I did that, every time I postscript it automatically saves both extensions. Not a big deal but it is annoying. I just want it to end with .ps like it used to. Any ideas on how to fix this?
    Thanks!!

    I have no idea but I am incredibly curious...why are you doing this?
    Printing to postscript is a completely archaic workflow. Export to PDF
    instead.
    Bob
    TKnudt <mailto:[email protected]>
    Tuesday, January 15, 2013 6:12 PM
    >
          How do I print to a postscript file with InDesign CS6 without
          both extensions, .indd.ps?
    created by TKnudt <http://forums.adobe.com/people/TKnudt> in
    /InDesign/ - View the full discussion
    <http://forums.adobe.com/message/4996731#4996731

  • How to create a "Command Line"/"Text Validation"

    I want to create a command line like the picture. I'm using "Input Text" method for text. Variable name is "myText", Instance Name is "line".
    How can I use "if" in input text like this:
    Command name is: exit, if user wrote "exit" command, exit the flash app.

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • How to create a tab-delimited text file?

    Hi,
    I need to create a tab-delimited text file at presentation server getting content from an internal table. My file should also have a header - also tab-delimited. Data for a header is stored in some work area.
    Any ideas how to add tab-delimiter into a text file? Or should I go for a HEX file and use
    CONSTANTS: c_tab TYPE x VALUE '09'.
    and separate my data with this constant instead?
    Any thoughts whould be appreciated.
    TIA
    Ivaylo Mutafchiev

    Hi Ivaylo,
    Refer sample code:
        IF i_final_head[] IS NOT INITIAL.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              filename                = lcl_filename
              filetype                = 'ASC'
              write_field_separator   = 'X'
            TABLES
              data_tab                = i_final_head
            EXCEPTIONS
              file_open_error         = 1
              file_read_error         = 2
              no_batch                = 3
              gui_refuse_filetransfer = 4
              invalid_type            = 5
              no_authority            = 6
              unknown_error           = 7
              bad_data_format         = 8
              header_not_allowed      = 9
              separator_not_allowed   = 10
              header_too_long         = 11
              unknown_dp_error        = 12
              access_denied           = 13
              dp_out_of_memory        = 14
              disk_full               = 15
              dp_timeout              = 16
              OTHERS                  = 17.
          IF sy-subrc <> 0.
            MESSAGE s000 WITH text-031.
            EXIT.
          ENDIF.
        ENDIF.
    Reward points if this helps.
    Manish
    Message was edited by: Manish Kumar

  • How to create a warm full chorus effect on a vocal track? What effects, plugins or methods to use?

    Hey, I am using Logic pro 9 and have been for quite sometime now. The reason I am here today is because I want to know how to create a warm, more full, (almost doubling) chorus effect for my vocal hooks for the hip-hop tracks that I create. I have always heard that type of effect on hooks and never knew how they did it. For example in this song (This song is not my song, excuse the language but this is the type of effect i am looking for. Go to 1:12 of the song)
    http://www.youtube.com/watch?v=5aok9Hq7GQ4
    This is what I am looking for. PLEASE SOME ONE HELP I WOULD REALLY APPRICATEIT!! Thanks

    True, the equipment that I am using does matter and at the moment I am only using a usb microphone with no pre amps or audio interface. I was asking that question to know what methods people use to create that chorus  effect. What I did for the time being until I get my new set up I had a main vocal track that was centered and had no effect on it, then made 2 other copies so I had 3 tracks all together I panned one track all the way left and the other track all the way right then I applied the stereo spreader to the two copied tracks and turned the mix 76% channel delay 250 same intensity 100% and speed 1.644 Hz. Then I manually moved the tracks so that the left panned track came first then the main track then the right panned track. It was very small moves not to the point were you could tell just gave it that chorus effect. Do you think those were the right things to do? So its close almost there and maybe with the new setup it will be what I am looking for. But PLEASE KEEP COMMENTING EVERYONE HAS THERE OWN METHODS I AM CURIOUS TO KNOW YOURS!

  • Creating a negative embossed text effect in 3D

    I can't seem to find the settings or method to create a carved into steal embossed effect .

    I think you should search for text effects tutorials there are many free one on the net.

  • How to create the Over exposure wipe effect?

    Films like The Secret produce a wipe effect of over exposed light emiting from the video as it transitions to the next shot. Any idea how to creat this effect?
    Thx
    Kevin

    It can definitely play a factor. DVD has a little more leeway, and I've never seen an issue on my TV, but it's properly set up. For the typical viewer who probably has their brightness turned way up so they can watch TV in the afternoon with the sun shining right on the screen, the transitions will probably tear and distort.
    I love the vapor across transition, but only use it for web based projects, and things I know that only I am going to be watching.

  • How to create a wave-like masking effect?

    If you look at the first 3 seconds of the video:
    http://www.youtube.com/watch?v=xPYWy97pfc0
    the logo is slowly reveal with a wave like masking effect, how do you do that in after effect?

    Use an animaged shape or mask as a track matte for the logo.

  • How to create booklet from ordinary text in pages?

    Can anyone tell me how to create a booklet from ordinary A4 pages either in Microsoft Office with Parallell Desktop or in Iwork pages?

    See  Imposing booklets.
    Peter

Maybe you are looking for

  • Need help removing child

    Sorry to bring problems but i am trying to learn some as3 and so far i can not resolve this situation ,,,,,, this is the script i am using ,,,,,,,,,,,,,, Ent.buttonMode = true; Bio.buttonMode = true; ent.addEventListener(MouseEvent.CLICK, goEnt); fun

  • Panasonic 16/9 1024x768 plasma monitor

    I have a TH-42PHD8UK professionnal plasma display from Panasonic. This display has VGA, Component, Composite and HDMI inputs. I would be interested in connecting a Mac Mini to this display to set up a Media Center. My question is : Will I get any dis

  • Report Painter Customization Question

    I'm using a profitability report from the standard system.  It calls a line item report, and I need ot add a field with some logic behind it (I already have a z-version created for this).  Is there a way to have the standard report writer use my cust

  • HT1904 i don't get any purchase

    hi, i've just bought something in ragnarok game for $51.99 but it seems like i got nothing please check it for me

  • Server Size Need Help !!!!

    Hi Experts, Our current BW database structure is like below: DB Size - 180,803 MB Size Used - 180,627 MB Free - 176 MB Logical Files used by SQL server are, DATA1 - Size (66,417) - Used (66,256) - Free Disk (15,014) DATA2 - Size (55,289) - Used (55,2