How to create a 'window' in AE CS3

Hello,
     I have a video of a LED scroll sign and I am making it look like my own text scrolls across. I have text I created in Photoshop, saved as a ' .tiff ' , and imported into After Effects. I have put the text in the video and gave it a starting position keyframe (off the sign) and an ending position keyframe (past the sign) and it moves from point to point 'cause of the keyframes. I tried to put a 'mask' on the layer (using the pen tool) around where the sign is (kind of acting like a 'window') so the text would only appear on where the sign is , but the mask moved with the text. How do I create a 'window' type thing for what I'm talking about?
Sorry if I didnt explain it well, I did the best I could. If you have any questions please ask and I will try to answer.
All help would be appreciated,
Nicholas

When Mylenium refers to the 'Help', he means this document. Actually, for After Effects CS3, this document.
I strongly recommend that you start here:
http://blogs.adobe.com/toddkopriva/2010/01/getting-started-with-after-eff.html
Even though it mentions CS4 and CS5, the basic information is the same for CS3, so it's still a good place to start.

Similar Messages

  • How to create Dynamic Window in Smartforms

    Hi all,
    Could you please help me out on how to create Dynamic Window in smartforms excluding Main Window.
    Thanks in Advance.
    Vinay.

    hi,
    Hi,
    1.If you are creating the Different windows for the Countries,then In conditions tab of window specify the Condition i.e.
    company -code = '2201'.
    2.Then that window can trigger ofr that condition.
    3.Other wise, if you are using the different layouts ,then write the condition in Print program and call that form .
    reward me if helpful.

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • How to create dynamic window in smartform

    <i>HI Floks</i>
    my requirement is invoice smartform having few line items .i can print this line items with different categories with dynamically placed in smartfom. there how many items with in particular category print its self . how is it possible to printing .is it possible to print dynamic fields and window without changing driver program and structure .How to create dynamic window.
    any body knows reply me fast
    thanks in advance ,
    suresh

    Hi suresh,
        You can create all the windows, but if you go to specific window you will see different tabs like general attributes, output options and conditions. In that conditions tab, you can give condition. so based on that condition, that window will be printed.
    Dont forget to reward points if helpful.
    regards,
    Chandra.

  • How to create popup window with radio buttons and a input field

    Hi Guys,
    Can somebody give some directions to create a stand alone program to create a window popup with 2 radio button and an input field for getting text value. I need to update the text value in a custom table.
    I will call this stand alone program from an user exit. 
    Please give me the guidance how go about it or please give any tutorial you have.
    Thanks,
    Mini

    Hi,
    There are multiple aspects of your requirements. So let's take them one at a time.
    You can achieve it in the report program or you can use a combination of the both along.
    You can create a standalone report program using the ABAP Editor (SE38). In the report program you can call the SAP Module pool program by CALL Screen <screen number>. And then in the module pool program you an create a subscreen and can handle the window popup with 2 radio button and an input field for getting the text.
    For help - Module Pool programs you can search in ABAP Editor with DEMODYNPRO* and you will ge the entire demo code for all dialog related code.
    For Report and other Module pool help you can have a look at the following:
    http://help.sap.com/saphelp_nw70/helpdata/en/47/a1ff9b8d0c0986e10000000a42189c/frameset.htm
    Hope this helps. Let me know if you need any more details.
    Thanks,
    Samantak.

  • How to Create a Windows 7 USB install disk

    If you want to install Windows from a USB drive, you'll need the Boot Camp Assistant (version 4.0.1) and a MacBook Air. I don't know why it won't let you do it on other Macs and MacBooks (the option still shows up, only it's greyed out) - if you made it work on anything other than a MacBook Air, let me know how you did it. So, besides that, you also need an empty USB drive and a genuine Windows ISO file.
    However, if in your case the Windows USB creation option is greyed out, this is what you can do:
    You create the Windows installation USB, using one of these two ways (I used the first one):
    http://technet.microsoft.com/en-us/magazine/dd535816.aspx
    http://www.microsoftstore.com/store/msstore/html/pbPage.Help_Win7_usbdvd_dwnTool
    You create the Windows partition with BCA.
    In System Settings, you choose the newly created BOOTCAMP partition as the startup disk and restart your Mac.
    Have your Windows USB inserted before your Mac restarts.
    As soon as your Mac boots from the BOOTCAMP partition, it should start loading Windows Setup from the USB drive.
    I have an early 2009 MacBook and these steps worked for me. It's a workaround... but it works. Let me know if it worked for you.
    * If none of this works for you, there is another workaround, using 3rd party software (rEFIt). However, I don't recommend using it, unless you know what you're doing.
    * Disclaimer - This info comes as is and I do not guarantee that it will work for you. Nor do I guarantee that it will not cause any malfunction to occur on your Mac computer.

    you restart your mac and as soon as it boots up (usually you hear the dvd making a noise, or the gong sound), you hold down the Alt key until you see a screen that shows you all the partitions/drives you can boot from. you select the boot camp one, while the windows usb installation disk is inserted and it should boot up from the usb. it worked for me, but I can't guarantee it will work for you too... depending on your model. mine is an early-2009 macbook.

  • How to create an interactive magazine with CS3

    I am trying to create an interactive magazine with CS3 and don't know how to do it. First of all, is this possible with CS3 or do I need to upgrade to CS4? And if it is possible, can anyone tell me a step by step plan to follow? Or is there a book or download I can get for more information which is recommended?
    Thanks

    Google is your friend: Interactive Newsletters
    You can make digital newsletters for PDF in CS3 or 4. To make a digital newsletter that can be viewed in a browser (export to swf) you need CS4. Big advantage of swf is much smaller file size than PDF.
    One free bit of advice: design your file horizontally (11 w x 8.5h) since that works best for reading a PDF or swf online.

  • How to Create a windows xp service

    I have several java routines that I currently call from a bat file via the the windows task scheduler. Prob #1: the bat file always causes a dos window to open which if someone closes it, terminates the rest of the routines. Prob #2: solution would be to create a windows service routine which would call all the above, however I don't have a clue as how to do that. Help??

    However you can't run a batch script as a service in Windows. I think you are looking in the wrong place for a solution.

  • How to creat new window?

    Hello, got a question, is it possible to creat new window in nokia lumia 800 (check the pic what i mean).
    Solved!
    Go to Solution.
    Attachments:
    nokia-lumia-800-2.jpg ‏33 KB

    Unfortunately no. 

  • How to "Create a Windows 7 install disk" on Mountian Lion w/Bootcamp 5

    It's basically the same way you create one with previous Bootcamp & OS verisons.
    Finder -> Applications -> Utilities -> Select Bootcamp -> Show Package Contents
    Open "Info.plist"
    Scroll until you see whats listed below.
    <key>PreUSBBootSupportedModels</key>
              <array>
                        <string>MacBook7,1</string>
                        <string>MacBookAir3,2</string>
                        <string>MacBookPro8,3</string>
                        <string>MacPro5,1</string>
                        <string>Macmini4,1</string>
                        <string>iMac12,2</string>
                        <string>iMac11,2</string>
              </array>
    Remove the "Pre" in "PreUSBBootSupportedModels"
    Then it will ask if you want to make a copy of the file, click yes.
    Now in the new "plist" file cut out "MacBook7,1" in the top line and replace with your Model Identifier (Can be found in "System Information" under "Hardware Overview")
    Save this file as "Info.plist"
    After save the old "Info.plist" file as "Old.Info.plist" and move to the trash can (May as for log in info to do so)
    Then after that file is in the trash move the NEW "Info.plist" (The one you edited) to the Bootcamp Content folder in place of the other one.
    If everything is done right you should now be able to "select/disselect" the "Create a Windows 7 install disk" in bootcamp.
    You're welcome,
    Avery

    I recently bought my Mac MIni 2010 Model, yes i know, 2010 Model?! But that's what i can afford for now since i already have an Apple Cinema display, an Apple Wireless keyboard and a Magic Mouse.
    When i tried opening the Boot camp assistant, since my Mac has an optical drive, only two options were shown and the "Create Windows USB install disk" option wasn't there at all.
    So i searched the net for help and i found only one that answers my query (http://forums.atomicmpc.com.au/index.php?showtopic=51873), however, after following the tutorial, it didn't work and my Boot Camp assistant ended up crashing (quit unexpectedly). So i reverted the process and my Boot camp assistant went back, up and running but still no third option.
    So disappointed, i went back to the "info.plist" that i was working on (using Xcode) and tried to mess around with the contents.
    Then after over an hour of trial and error, i decided to just revert the changes that i did and quit. As i was clicking on the , and because i was a noob, i deleted by mistake the entire array of strings containing "Boot ROM Versions" that allows some mac models to boot windows using usb and when i click cmd+z, it just won't undo it.
    So i guess, i was screwd! So nervous that i thought i killed the app, i closed the "info.plist" and checked if the Boot Camp assistant would still launch.
    To my surprise, it actually opened! And to my astonishment, it even shows the third option! I guess, no one has ever did this, as we speak!
    So you can call me an Accidental Hacker LOL! To all of you who understands fully the function of "info.plist" - any thoughts?
    Mac Mini Mid 2010
    OS X Version 10.8.3 Mountain Lion
    2.4 Ghz Intel Core 2 Duo
    2 GB 1067 Mhz DDR3

  • [AS] How to create an anchored rectangle in CS3 ?

    Hi all,
    I'm unable to create an anchored rectangle in CS3 using AppleScript.
    I tried this:
    tell insertion point 1 of text frame 1
    make rectangle with properties {stroke weight:0, geometric bounds:{0, 0, 20, 20}}
    end tell
    Any help?

    Hi Harbs,
    As far as I can tell, recompose is still necessary. It's true that you'll usually get good bounds from the rectangle after creating it, but I want to stress the word "usually." I've seen bad bounds in some cases in CS5, so I'm not ready to declare that we can omit the recompose just yet.
    Thanks,
    Ole

  • How to create Help windows in ADF 11g

    Hi all,
    I have requirement to create Help window when i click on Help on the page, that window should be model less and i can minimize and maximize that window but it should not go new page. And the content of page should come from word document.
    Please do need full.

    Hi
    You can use <af:window> inside an <af:popup> component. And in this window you can add the help content. I recommend you to use "<af:inlineFrame>" if the content is from other web sources. (for word document you should probably convert them to HTML)
    <af:popup>
        <af:window>
            <af:inlineFrame src="" binding="#{bean.helpFrameCmp}" />
        </af:window>
      </af:popup>now when you press the help button, in your Bean you set the source attribute of the inline frame to the correct HTML help page.
    and launch the popup.
    Search for launching the popup from managed beans.
    Regards
    AGruev

  • How to create popup Windows in WebDynpro

    I am learning WebDynpro and have developed a sample application where i ask the user to login. In case of incorrect login I want to display a popup window which shows an error message and has an ok button on it. On click of the OK button i want to close the Window.
    I have created a view for this popup... called errorView
    On click of login button i perform validations n incase the validatins fail i have put in the following code
    IWDWindowInfo myWinInfo = wdComponentAPI.getComponentInfo().findInWindows("Ra_ErrorView");
    myPopupWindow = wdComponentAPI.getWindowManager().createWindow(myWinInfo,true);
    myPopupWindow.setWindowPosition(300,150);
    myPopupWindow.open();     
    How should i proceed?
    Where should i write the myPopupWindow.close()
    Kindly give a step-by-step solution.

    Hi Reema,
    You want to close a window say window1 which you opened from a view.
    create an attribute. select its type from java native settings to IWDWindow
    wdContext.currentcontextElement().setWindowInstance(window);
    1.create an event in component controller say event1
    2.In order to trigger the event in component controller create a method in it
    write this code in implementation of controller to trigger the event
    wdThis.wdFireEventAddressSelectedEvent();
    3.For catching whatever event that is responsible for closing the window create an event handler in view1 say eventhandler1.Choose the subscibed event to be event1
    4.In that eventhandler1 write the code in implementation
    IWDWindow window =
    wdContext.currentcontextElement().getWindowInstance();
    window.close();
    Hope this helps you.Do revert back if you have more doubts
    Regards
    Rohit
    Message was edited by: Rohit Radhakrishnan

  • How to create external window on top of other window?

    I create an external window from my web dynpro component. How to make sure the new window is created on top, not in the back? My web dynpro component is accessed via sapgui and browser.
    Thank you
    Edited by: Vincent Cao on Jun 15, 2010 5:25 AM

    Yes, by default it should be on top.But mine is displayed in the background.
    Logic is:
    1 Window A (or SAPGUI A) has a pop window PA with a button "OK"
    2 Press "OK" button, PA window is closed. And fire an event to window A
    3 A get the event, refresh itself and create an external window.
    Part of codes:
          window = lo_window_manager->create_external_window(
              url            = i_url
              title          = title
              modal          = modal  " abap_false
              has_menubar    = has_menubar "abap_true
              is_resizable   = is_resizable "abap_true
              has_scrollbars = has_scrollbars "abap_true
              has_statusbar  = has_statusbar "abap_true
              has_toolbar    = has_toolbar "abap_true
              has_location   = has_location ). "abap_true
          IF width IS NOT INITIAL AND height IS NOT INITIAL.
            window->set_window_size( width  = width  height = height ).
          ENDIF.
          window->open( ).

  • How to create a window in a swf

    Hi All,
    Need a little direction here, I want an about link within a
    swf to load an about window; once read the user would simply click
    the close button (x for example in the upper right hand corner) of
    the window.
    How would I go about making such a window?
    Kind Regards,
    Boxing Boom

    Hi,
    Cheers Rob, I will give it a crack; all the damn books I
    purchase, yet I cannot see any thing usefull to help me out here. I
    am not very technical, and just like to see a specific example or
    tutorial. Tell you what why don't you create a fla example and
    email it to me ;) (Cheeky Git)
    Kind Regards,
    Boxing Boom

Maybe you are looking for

  • Disk utility crash

    Every time I try to launch disk utility It crash Can anyone help me ? Process:         Disk Utility [217] Path:            /Applications/Utilities/Disk Utility.app/Contents/MacOS/Disk Utility Identifier:      com.apple.DiskUtility Version:         12

  • Xkcd+alt-text in a pdf?

    I would love to see some kind of tool, a script that download every xkcd comic and the alt text and put them in a pdf file. It would be great to print and put on the can for everyone to read. Anybody of you guys that knows of a script that does this?

  • Beautiful iMac, nasty SPDIF interface ......

    Bought myself an iMac, use it in living room, connected to home-theater system. BUT! ..... when the SPDIF output of the iMac is used, then you disable the local (screen) sound. This is very unhandy because when you want to view/listen to a videostrea

  • Smart View gives "Unspecified error"

    I've just started working with the latest version, 11.1.2.1.102, under Windows XP and am getting a recurring error whereby every time I attempt an operation that goes to the cube it gives me "Unspecified error" in a popup window instead and the opera

  • BPM help please

    Hi Gurus, I tried to search on SDN about BPM design for raising exceptions, but there are not many blogs on it. I am calling a third party synchronous webservice in BMP. The WSDL has 3 messages in it, a request, a response and an exception message. I