How can I put text (in perspective) round two sides of a 3d object?

If I have a block of text that I want to wrap across two planes of a 3D building, how do I do that...while keeping both sides in perspective on the respective planes.
Suppose I want a letter to be split in the middle so that part is on one plan and part on the other- how do i do that?
Is the only way by i) creating outline ii) do a vertical path and divide? iii) then re-group text in some way?

I want to wrap across two planes of a 3D building,
You do understand, don't you,  that the Perspective Grid is just a 2D drawing guide/distortion? It is not an actual 3D model.
JET

Similar Messages

  • How can i put text across a photo?

    how can i put text across a photo?

    You'll need an external editor for that:
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate. You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • How can I put text in transparent background?

    How can I put text in transparent background?
    Message title was edited by: Brett N

    Good day!
    You can create a new document (»Background Contents« set to »Transparent«), use the Type Tool (T) to create text and then save in a format that supports layers like psd, psb, tif.
    If the receiving application can’t handle those png24 is another option.
    Regards,
    Pfaffenbichler

  • How can I put text on individual photos

    I would like to put text on some of my photos,,,,How?

    Aperture really isn't designed to put general text on an image.You could cobble something together using the Book interface but I don't think it would really be a suitable solution.
    You'll need to look into using a plugin, BorderFX is a free plugin that many users her (including myself) have used. It does what you are looking for and works well.
    regards

  • How can I put text under background?

    Hi all,
    I'm trying to put text over background, specifically
    a) using 'textures' - 'liquid - 'pool' so that the text looks like it is being viewed under water with the ripple effect distorting the text.
    b) using 'texture' - 'medley' - 'stage' i.e. to make the text look as if it is printed on the background rather than hovering above it.
    Any ideas? Thanks in advance.
    Dave.

    Good day!
    You can create a new document (»Background Contents« set to »Transparent«), use the Type Tool (T) to create text and then save in a format that supports layers like psd, psb, tif.
    If the receiving application can’t handle those png24 is another option.
    Regards,
    Pfaffenbichler

  • How can I put text on top of a graphic in Framemaker 11?

    I am using Framemaker 11. When I import an image from Photoshop (EPS file) and put a text box on top, I can't get the text to be on top of the graphic without jumping to the next page. Is there a setting that I'm missing in Framemaker? The image is just borders, like a frame, and I'm trying to put the text inside the blank space.

    I suggest you use the text frame tool (to the left of Arnis' supplied screenshot) and set the background of the text frame (the diagonal b/w lines below the text frame tool) to None.
    When all else fails, add the text to the graphic, save as PDF or other appropriate format, and place as needed.
    -Matt
    Matt R. Sullivan
    co-author Publishing Fundamentals: Unstructured FrameMaker 11

  • How can i put text/chars inside a text area inside a JScrollPane?

    ive tried:
    receipt.setText("blah blah") // but it does not work. all i get is still a blank text area inside a JScrollPane
    JTextArea receipt;
    JScrollPane sp;
    receipt = new JTextArea();
    sp = new JScrollPane(receipt,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);

    mstrnew = new JButton //this should clear receipt
    if(evnt.getSource()==mstrnew)
                  order.setText("");
                  price.setText("");
                  total.setText("0.0");
                  cash.setText("");
                  change.setText("");
                  mstrtotal = 0;
                  JOptionPane.showMessageDialog(null,"              Starting New Transaction...","",JOptionPane.PLAIN_MESSAGE);    receipt.setText("");}
    else if(evnt.getSource()==vm1)
                  generate("           2pc. Chicken Strips Meal\n");
                  order.setText("2pc. Chicken Strips");
                  price.setText("61.0");
                  mstrtotal = Double.parseDouble(price.getText()) + Double.parseDouble(total.getText());
                  total.setText(String.valueOf(mstrtotal));
    // scrollpane part
                 receipt = new JTextArea();
                 receipt.setEditable(true);
                 //receipt.setLineWrap(true);
             up = "\n          YUM! Brands Corporation, Kentucky Fried Chicken ?\n                       KFC LaSalle Branch, Taft Ave., Manila\n\n           88788   TIN-209-670-390-002   REG VAT   POS#113\n           SN:41-HK170 All prices were subjected of 12% VAT.";
             mid = "\n\n";
             down = "\n";
             complete = up+mid+down;
             receipt.setText(complete);
             sp = new JScrollPane(receipt,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    public void generate(String z)
             mid += z;
             complete = up+mid+down;
        }Message was edited by:
    ice3d

  • How can I put text in Tab into vertical alignment??

    Dear friends, I have following code,
    package com.swing.test;
    import java.awt.BorderLayout;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    import javax.swing.SwingConstants;
    public class NewTabbedPane {
         private JFrame frame;
          * Launch the application
          * @param args
         public static void main(String args[]) {
              try {
                   NewTabbedPane window = new NewTabbedPane();
                   window.frame.setVisible(true);
              } catch (Exception e) {
                   e.printStackTrace();
          * Create the application
         public NewTabbedPane() {
              initialize();
          * Initialize the contents of the frame
         private void initialize() {
              frame = new JFrame();
              frame.setBounds(100, 100, 500, 375);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              final JPanel panel = new JPanel();
              panel.setLayout(new BorderLayout());
              frame.getContentPane().add(panel, BorderLayout.CENTER);
              final JTabbedPane tabbedPane = new JTabbedPane();
              tabbedPane.setTabPlacement(SwingConstants.LEFT);
              panel.add(tabbedPane, BorderLayout.CENTER);
              final JTabbedPane tabbedPane_1 = new JTabbedPane();
              tabbedPane.addTab("AAAAA", null, tabbedPane_1, null);
              final JTabbedPane tabbedPane_2 = new JTabbedPane();
              tabbedPane.addTab("BBBBB", null, tabbedPane_2, null);
              final JTabbedPane tabbedPane_3 = new JTabbedPane();
              tabbedPane.addTab("CCCCC", null, tabbedPane_3, null);
    }but here all tabs' title AAAAA, BBBBB, CCCC are aligned horizontally, I need them to align vertically, Any guru can help??
    Thanks
    sunny

    there's an example here (works OK on winxp)
    http://www.macdevcenter.com/pub/a/mac/2002/03/22/vertical_text.html
    Test() class needs a small change, for the direction you want
    //panel.add(makeTabpane(null, sEnglish, VTextIcon.ROTATE_DEFAULT));
    panel.add(makeTabpane(null, sEnglish, VTextIcon.ROTATE_LEFT));

  • How can I put text into a cell with a formula?

    I'm trying to sort a budget in Numbers 3.1. I have a sum of column of cells that I'm adding up. The cell that has a total number looks like this: =SUM(F). I want to have that sum have a $ sign in front of it. I've ready everywhere that I could do ="$" SUM(7), but that doesn't work in 3.0, only in Numbers 09 I guess. Is there a new solution for 3.1?

    Tyna,
    Just Format the cell as Currency.
    Jerry

  • How can I move App Tabs to the bottom, where the other bookmark toolbars are? Or, how can I put my bookmark toolbars in two rows and forget the App Tabs?

    I have several bookmarks on my toolbar, and my most often used ended up in a pull-down menu, which is annoying. I tried to click and drag them onto the menu bar, because there was room for more icons, but they won't budge. Nothing under "Toolbars" was helpful. Help would tell me to right click on my toolbar and then click on "Customize"...which didn't come up as an option. I would really like all my toolbar bookmarks (I only have about 10) to be visible on the actual toolbar, not hidden away in a small pulldown tab.
    There is a plug-in that enables you to put bookmarks in two rows on your toolbars, but it is not compatible with my version of FF (7.0.1).
    App Tabs are cute, but I don't like them on top where they take up room where I have the tabs for various websites open (I usually have several open at a time). App Tabs are fixed and don't scroll over like website tabs, which is extremely annoying, and hence why I 1)would like to move them to the bottom of the toolbar or 2)be able to display all my bookmarked toolbars --which is what I prefer.
    BTW, I have Windows 7.
    Thanks in advance for your help.

    App tabs are special tabs and are always displayed at the left end of the tab bar.
    You can place all bookmarks that you want to see on the Bookmarks Toolbar in the Bookmarks Toolbar folder.<br />
    You can do that in the side bar or the Bookmarks manager if you can't do it on the Bookmarks Toolbar.<br />
    Most Visited is a special (smart) folder that shows websites that you've visited and that aren't necessarily bookmarks, so you can't drag them on the bookmarks toolbar unless you first bookmark them. You can do that by opening them in a tab and clicking the star on the location bar twice and choose the Bookmarks Toolbar as the destination folder.
    *https://support.mozilla.com/kb/how-do-i-use-bookmarks

  • How can i put my own text sound

    i need help, how can you put my own text message sound in my iphone....p.s i'm new the the apple family

    Welcome to the family. Tell your Uncle Steve you would like custom text tones: http://www.apple.com/feedback/iphone.html

  • How can I put add text to an iTunes Album cover?

    How can I add text to an i Tunes album pohoto, both front and back?

    Renee Clark wrote:
    Preview Help says I can add text to an image by clicking Annotate and then Text, but I can't get anything to work.
    Select the menu option Tools -> Annotate -> Add Text. The cursor should change to a "cross-hair". Use that to draw a rectangle, then type.

  • How can I put my icloud photos to camera roll or photo stream?

    I got a nee iphone, i backed up everything and restored it into mu new iphone, but the pictures didn't restore so i did it manually but now on my phone i got different albums icloud photo stream and camera roll. How can i put the icloud picture into camera roll or photo stream. Any ideas?? On my old iphone ive deleted everything.

    Hello Ozzie94,
    Thanks for the additional information. The camera roll is designed for photos taken on your device, or saved images from Mail and other applications. Photos synced from a computer are organized into their own album(s):
    View photos and videos - iPhone
    http://help.apple.com/iphone/7/#/iph3d267610
    - Camera Roll—photos and videos you took on iPhone, or saved from an email, text message, webpage, or screenshot
    - Shared photos and videos—Photos and videos that you’ve shared with iCloud Photo Sharing or that others have shared with you (see iCloud Photo Sharing)
    - Photos and videos synced from your computer (see Sync with iTunes)
    Additionally, you may find more information by using another one of Apple's support resources - https://getsupport.apple.com
    Thanks,
    Matt M.

  • How can I put a .pdf (or table) in iWeb that one sees on the web site on a web page without downloading?

    How can I put a pdf (not downloadable, but viewed on the website) or a table in iWeb?

    If it's a one page PDF file just drag it onto the webpage and resize to fit. If it's a multi page PDF file you can add it as in this demo page: Scrolling Text Box
    OT

  • How do i put text in the picture

    how do i put text in the picture ?

    In addition to the apps already mentioned here are some that can add text to a photo:
    Some Image Editors That Support layers:
    Photoshop Elements 11 for Mac - $79
    GraphicConverter - $40
    Rainbow Painter - $30
    Imagerie - $38
    Acorn - $50
    Pixelmator - $60
    Seashore - Free
    GIMP for Mac - Free
    Xee 2.1 - free

Maybe you are looking for