UI element regarding the Extend button (Action button)

Hi,
   I am new to webdynpro java.I need to create a action button called Extend button.I am ving two fields like vendor number and company code.Requirement is that if i give vendor number i need to get the company code details relevant to that vendor number as soon as i click the extend button.I dont know how to proceed. Please help me out if any one knows abt this.
Its very urgent.
Regards,
Laxmi Soujanya.

Hi Laxmi,
If you are new to Webdynpro, then first go through the below link of "Web Dynpro Sample Applications and Tutorials":
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d [original link is broken]
Hope this will help you...
Thanks
Sandy

Similar Messages

  • In Photoshop elements 13, the elive button does not appear in expert mode.

    This is happening in the trial version. Windows 7,  hp530 laptop.

    <moved from Downloading, Installing, Setting Up to Photoshop Elements>

  • Is it possible to hide or at least change the position of the Reset button in registration template?

    Hi,
    in the registration template there are always the Submit and Reset buttons.
    2 questions regarding the Reset button:
    from a usability stand point: what's the reason of putting the Reset button equally weighted (from a visual standpoint) next to Submit?
    wouldn't it be better to have placed on the left?
    (or even hide it?)
    Thoughts?
    Thanks.

    Hi,
    It is not recommended to modify this page because it is used farm widely.
    What’s more, it will be overwritten once there is upgrade happens.
    A workaround is that you can create a custom spcf.aspx page with the layout templates you want.
    http://doitwithsharepoint.blogspot.com/2011/08/create-web-part-pages-with-custom.html
    http://sandeeppawar.blogspot.com/2012/06/create-custom-web-part-page-template.html
    If you want to hide a layout template by modifying the
    spcf.aspx page, it locates at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS
    You can edit this page and remove some <option> tags in the <select> tag, then the removed options will not display on the page.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they
    help and unmark them if they provide no help. If you have feedback for TechNet
    Subscriber Support, contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Creation of UI Element on the action of a button?

    Hi,
    Can we create some UI Element on the action of some button, i.e. writing code to create UI Element outside the wdDoModifyView() method of the view?
    Regards,
    Smriti.

    Hi,
    We can create an UI element dynamically, on button click action..Follow the steps given below:
    1. Create a static variable say ' myvar ' of type com.sap.tc.webdynpro.progmodel.api.IWDView in last declaration part(ie. inside //@@begin others //@@end.
    Eg: static IWDView myview;
    2. 2. In wdDoModifyView(), add the following
    myview=view;
    3. Now add the following code in the "OnAction<Submit>" event to create an UI element dynamically:
    IWDTransparentContainer rootContainer = (IWDTransparentContainer)view.getElement("RootUIElementContainer");
    IWDLinkToAction Link1 = (IWDLinkToAction) view.createElement(IWDLinkToAction.class, "Link1");
    rootContainer.addChild(Link1);
    Hope it helps!!!
    Regards,
    TFG - Kumara Guru

  • How can I select a radio button in a table regarding the data in the cells?

    Hi everyone
    This is the issue: I need to select the RadioButton which is in a table with data related to transfers in the cells next to it, so I need to select the correct radio regarding the data next to it.
    This is the whole process: First I go to the Add Recurring Transfer section and select the parameters of the transfer (Accounts, date, amount, months etc), then with VB code I capture those parameters from the page and store them into Global variables for further usage on my E-tester script.
    Right after that I need to select the radiobutton regarding the data of the transfer that I already created in order to delete it or modify it (Please see Attachment selectradio1.jpg)
    So How can I move along the table and compare each cell with the variables that I created with the transfer information, so when I finish comparing a row cell by cell and if all the comparison match well in that row, I could select the radiobutton of the row.
    Note: Second Attachment selectradio2.jpg shows the source code of the table...If you need more info please let me know
    Could you please help me with this problem?? I'm Kind of frustrated with this issue jejeje

    Here is an example. I uploaded mock html so that you can actually try this code. I think this does exactly what you are asking.
    Private Sub RSWVBAPage_afterPlay()
    Dim tbl As HTMLTable
    Dim tblRow As HTMLTableRow
    Dim tblCell As HTMLTableCell
    Dim strValue As String
    Dim rButton As HTMLInputElement
    ' ******** This would be your global variable. I put this so that values are seperated by a semicolin you can use what ever format works for you.
    strValue = "03/22/2008;03/22/2008;*************1977;*************1977;$25.25;Jan, Jun, Jul, Dec"
    ' Strip out the ; for inner text comparison
    strValue = Replace(strValue, ";", "")
    ' This will get the table but can be modifoed to be more specific
    Set tbl = RSWApp.om.FindElement(, "TABLE")
    ' This loops through all the rows in the table until a match to the strValue is found
    ' then clicks the radio button. Findelements allows you to specify a root element
    ' once the correct root row is found, FindElemets can get the correct radio button
    For Each tblRow In tbl.rows
      If tblRow.innerText = strValue Then
        Set rButton = RSWApp.om.FindElement("account", "INPUT", "NAME", , , tblRow)
         rButton.click
       End If
    Next
    End Sub
    I also uploaded the script I created. You should be able to run it and see how it works.
    This should get you going.

  • How can I attach an additional action to the "reset" button in the drag and drop interaction?

    Hello,
    I would like to know how to attach an additional behavior to the "reset" button in my drag and drop exercise.
    Here is the background:
    In my drag and drop exercise, when the user drops the source on a target of his choice, certain elements appear and certain elements disappear
    This means that depending on where he dropped the sources, certain elements will be visible and certain elements invisible when he is finished the activity
    Because the sources are not re-draggable once he drops them, he will have the option to reset the exercise and start again from the beginning using the reset button
    My challenge:
    I would like exercise to return to its original state when the user selects the rest button .  this means:
    the dragged objects return to their orginal starting location (this is what naturally occurs when you hit the reset button)
    any objects that had disappeared during the course of the activity reappear
    objects that were not visible in the beginning , but had appeared during the course of the activity, again become invisible
    So how can I add this action to the reset button?

    Allowing the user to redrag the souce after it has been dropped would work for my particular problem  if I could bind an action to the event redragging, namely making the elements reappear that had disappeared and the elements disappear that had appeared when the user dropped it the first time.

  • Having problems us ng my ipod 7g Nike Fitness.  When running when I press the button between the volume buttons, I get a different action almost every time.

    I am having problems using my ipod 7g with Nike Fitness.  When running when I press the button between the volume buttons, I get a different action almost every time. And usually I end up either turrning volume up very high or ending the workout. I need to be able to pause workout, and get spoken feedback regarding time, distance, and pace, that's all. I'm using a Griffin brand armband, that covers all of the buttons.  I've read the online manual.  no help.  I'm just about ready to return it and go back to my 5th gen with its smaller song capacity and no blurry.  Any help or suggestions very welcome.

    Jeff:
    I have had both good and bad experiences with Acronis True Image. I got the recent copy of ATI via a Newegg.com bundle. I haven't tried it yet on any Windows 7 editing systems. ATI installs some services that I would rather not have running in the background.
    What made you change from ATI to ShadowProtect Desktop Edition?
    Are you running Windows 7?
    What do you see as advantages to running ShadowProtect Desktop Edition as opposed to Acronis True Image?
    Thanks

  • I've installed Mavericks on my Mac Pro. It works well, generally, but will not stay sleeping! Pressing the power button twice sometimes extends the sleep mode but even that seldom results in a full overnight sleep.  File sharing off. What else can help?

    I've installed Mavericks on my Mac Pro. It works well, generally, but will not stay asleep! Pressing the power button twice sometimes extends the sleep mode but even that seldom results in a full overnight sleep.  File sharing off. What else can help?

    Hi fremley,
    Thanks for visiting Apple Support Communities.
    This article may be helpful with determining why your Mac Pro doesn't stay in sleep mode:
    Mac OS X: Why your Mac might not sleep or stay in sleep mode
    http://support.apple.com/kb/HT1776
    Some things reset the sleep timers, preventing the computer from sleeping:
    Hard drive access (even if you're not using the computer, a running application might be accessing your drive, such as when downloading a large file or listening to music in iTunes)
    Moving the mouse or using a portable Mac's trackpad, pressing a mouse button, or pressing a key on the keyboard
    Some System Preferences settings (see below)
    Open applications (see below)
    Input devices (see below)
    Expansion cards (see below)
    Additional drives, such as USB, FireWire, DVD, or CD drives (see below)
    Best Regards,
    Jeremy

  • Help me Invoke the Enter Button Action when Node is Editable State

    I want to invoke an Action on press of the Enter Button when the Node is in Editable Mode.
    Currently in the below code, The message "Ï am here" gets printed on selecting a node and cliking the 'Enter' Key.
    I want the same message action to be invoked when we press F2 on a Node, when the Node is editable itself when a user clicks Enter Button
    .import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.AbstractAction;
    import javax.swing.ActionMap;
    import javax.swing.InputMap;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTree;
    import javax.swing.KeyStroke;
    import javax.swing.tree.DefaultMutableTreeNode;
    class NodeTree extends JTree {
         public void addActions() {
              ActionMap aMap = this.getActionMap();
              aMap.put("rename", new NodeTreeAction(this, "rename"));
              this.setActionMap(aMap);
              InputMap map = this.getInputMap(JComponent.WHEN_FOCUSED);
              map.put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), "rename");
              this.setInputMap(JComponent.WHEN_FOCUSED, map);
    public class JTreeSample {
         public static void main(String[] args) {
              NodeTree tree = new NodeTree();
              JFrame frame = new JFrame("Manual Nodes Sample");
              DefaultMutableTreeNode root = new DefaultMutableTreeNode("Root");
              DefaultMutableTreeNode mercury = new DefaultMutableTreeNode("Elem1");
              root.add(mercury);
              DefaultMutableTreeNode venus = new DefaultMutableTreeNode("Elem2");
              root.add(venus);
              DefaultMutableTreeNode mars = new DefaultMutableTreeNode("Elem3");
              root.add(mars);
              tree.setEditable(true);
              tree.addActions();
              JScrollPane scrollPane = new JScrollPane(tree);
              frame.getContentPane().add(scrollPane, BorderLayout.CENTER);
              frame.setSize(300, 150);
              frame.setVisible(true);
    class NodeTreeAction extends AbstractAction {
         private NodeTree tree;
         private String cmd;
         public NodeTreeAction(NodeTree tree, String cmd) {
              super(cmd);
              this.cmd = cmd;
              this.tree = tree;
         public void actionPerformed(ActionEvent e) {
              if (cmd.equals("rename")) {
                   System.out.println("Ï am here");
    }

    I modified the NodeTree Class with the following
    class NodeTree extends JTree {
         public void addActions() {
              ActionMap aMap = this.getActionMap();
              aMap.put("rename", new NodeTreeAction(this, "rename"));
              this.setActionMap(aMap);
              InputMap map = this.getInputMap(JComponent.WHEN_FOCUSED);
              map.put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), "rename");
              this.setInputMap(JComponent.WHEN_FOCUSED, map);
         @Override
         public void startEditingAtPath(TreePath path) {
           if(!isEditing() || stopEditing()) {
             Action.actionPerformed(new ActionEvent(this,
               ActionEvent.ACTION_PERFORMED, Action.getActionCommand()));
    }I am getting an Error on Line
    Action.actionPerformed(new ActionEvent(this,
    *     ActionEvent.ACTION_PERFORMED, Action.getActionCommand()));*
    saying, cannot make a static reference to the non-static method actionPerformed(ActionEvent) from ActionListener
    Could you please help. I am totally new to this.
    Hemanth

  • I am trying to download my paid for Elements 13 upgrade. When I click on the "download" button, I recieve this message: 413  Header Length too Large

    I am trying to download my paid for Elements 13 upgrade. When I click on the "download" button, I receive this message: 413  Header Length too Large.  Help?

    You can download using direct download link , which I had provided.
    Download Photoshop Elements products | 13, 12, 11, 10
    During installation , when prompted enter serial number and proceed with the installation .
    If you had purchased upgrade serial number.
    First enter Photoshop Elements 13 serial number .
    Then it will ask for previous qualifying version serial number.
    From the drop down list , select Photoshop Elements 12 and then enter Photoshop Elements 12 serial number 

  • The Hyperlinks and even the active buttons(like Back, Forward, Maximize,minimize,closeetc) on a webpage opened on Firefox page become inactive and there is no action on mouse click on them.

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I use Firefox Version 3.6.6. If firefox is kept opened for a day or two with some tabs opened, then the active buttons like the "Back","Forward","Maximize","minimize","Close", etc and even the links on the webpage become disabled. On mouse click no action gets performed on these type of links. Once this starts only a PC restart causes Firefox to work normally.
    Please kindly help me with a solution and I would request a fix for this issue.
    == This happened
    ==
    A few times a week
    == Firefox is kept opened for long time, may be for a day or two with quite a lot of tabs opened.
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name Firefox
    Version 3.6.6
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Google Redesigned 0.4.5 false
    Greasemonkey 0.8.20100211.5 false
    Java Console 6.0.16 true
    Java Console 6.0.17 true
    Java Console 6.0.20 true
    Java Quick Starter 1.0 false [email protected]
    Microsoft .NET Framework Assistant 1.1 false {20a82645-c095-46ed-80e3-08825760534b}
    New Tab King 3.1.4 false
    RealPlayer Browser Record Plugin 1.1.1 false
    Stylish 1.0.8 false {46551EC9-40F0-4e47-8E18-8E5CF550CFB8}
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.casesensitive 1
    accessibility.typeaheadfind.flashBar 0
    browser.places.smartBookmarksVersion 2
    browser.startup.homepage_override.mstone rv:1.9.2.6
    extensions.lastAppVersion 3.6.6
    general.useragent.extra.microsoftdotnet (.NET CLR 3.5.30729)
    network.cookie.prefsMigrated true
    print.print_printer \\secureprint\Level 8 Right Wing Printer
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_bgcolor false
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_bgimages false
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_command
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_downloadfonts false
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_edge_bottom 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_edge_left 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_edge_right 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_edge_top 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_evenpages true
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_footercenter
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_footerleft &PT
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_footerright &D
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_headercenter
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_headerleft &T
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_headerright &U
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_in_color true
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_margin_bottom 0.5
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_margin_left 0.5
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_margin_right 0.5
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_margin_top 0.5
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_oddpages true
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_orientation 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_pagedelay 500
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_paper_data 1
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_paper_height 11.00
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_paper_size_type 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_paper_size_unit 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_paper_width 8.50
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_reversed false
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_scaling 1.00
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_shrink_to_fit true
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_to_file false
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_unwriteable_margin_bottom 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_unwriteable_margin_left 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_unwriteable_margin_right 0
    print.printer_\\secureprint\Level_8_Left_Wing_Printer.print_unwriteable_margin_top 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_bgcolor false
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_bgimages false
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_command
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_downloadfonts false
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_edge_bottom 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_edge_left 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_edge_right 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_edge_top 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_evenpages true
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_footercenter
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_footerleft &PT
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_footerright &D
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_headercenter
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_headerleft &T
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_headerright &U
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_in_color true
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_margin_bottom 0.5
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_margin_left 0.5
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_margin_right 0.5
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_margin_top 0.5
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_oddpages true
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_orientation 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_pagedelay 500
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_paper_data 1
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_paper_height 11.00
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_paper_size_type 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_paper_size_unit 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_paper_width 8.50
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_reversed false
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_scaling 1.00
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_shrink_to_fit true
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_to_file false
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_unwriteable_margin_bottom 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_unwriteable_margin_left 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_unwriteable_margin_right 0
    print.printer_\\secureprint\Level_8_Right_Wing_Printer.print_unwriteable_margin_top 0
    privacy.sanitize.migrateFx3Prefs true
    security.warn_viewing_mixed false
    == User Agent
    ==
    Opera/9.80 (Windows NT 5.1; U; en) Presto/2.5.24 Version/10.54

    I do not use McAfee software and I am having this issue. I can right-click on the "back-or-forward" buttons and get a history list to choose from (which is far from an improvement), but do not get any response from a left-click. The "back-or-forward" navigation buttons are greyed-out. Also, when I open Firefox (4), I get two title bars at the top with two separate sets of the "minimize", "maximize" and "close" icons. It appears as if one window is open within another, but if I click any of the commands "both" windows respond. It's annoying and cumbersome.

  • I am unable to redeem my purchase of a Photoshop Elements 12 software license.  After entering the redemption code and clicking on the Redeem button, nothing happens.  No error message.  Screen does not change.

    I am unable to redeem my purchase of a Photoshop Elements 12 software license.  After entering the redemption code and clicking on the Redeem button, nothing happens.  No error message.  Screen does not change.

    try using a different browser, or contact support Contact Customer Care

  • I have Windows 7 and PS Elements 10 and can't get the text button to work properly.  What can I do?

    I have Windows 7 and PS Elements 10 and can't get the text button to work properly.  What can I do?

    Try selecting the T tool and then doing a reset (see image below)

  • Does the Video Button Action really work?

    According to teh Adobe site, the Video button action should be functional:
    I have not been able to get it to function so far. I am truing to get the button to play a video from a Navigation point. Am I doing something wrong (likely) or is the Adobe site incorrect.

    Thanks Bob. That would be a great feature to add. I'm using DPS to create some interactive video applications and that would give me lots of new abilities.

  • My garageband can't be used because when I open a project (new or old) the program extends beyond the bottom of the display screen and I can't access what is below the bottom of the screen (like the record button).  I know there's a simple fix, but what?

    My garageband can't be used because when I open a project (new or old) the program extends beyond the bottom of the display screen and I can't access what is below the bottom of the screen (like the record button).  I know there's a simple fix, but what?

    two things to try: either click the green "zoom" bottom at the topLeft of the window in the title bar, or go to your System Prefs and then Displays, and increase the resolution that is used

Maybe you are looking for

  • Network security - using two wireless WRT54G Routers

    I have lots of  ports on my router open for numerous family software applications that are all on one computer and I would like to isolate these risky activities from the rest of my network. I recently read I could use two routers, plug one router in

  • Hi..! TOO BIG TO HANDLE OR SOME OTHER ERROR

    Hi, I am getting the following error when i am trying to run an plsql program.. what may be the reason.. the first and last lines are debugs in my program... Control is not going to the function what may be the reason.. error message is as follows..

  • Http:403 error in tomcat

    Hi, I am getting not authorised to access localhost error when i am trying to access a JSP webpage. I am using tomcat 5.5 as webserver. Java 1.5 eclipse 3.1 IDE and accessing the webpage from browser in BlackBerry 4.1 simulator. It used to work for m

  • Synchronization in Premiere Pro CC 2014 not working

    I keep getting this message when I try and do audio sync: All this despite the fact that I have the correct match RIGHT UNDER THE VIDEO.  This is an incredible feature, but for some reason it's not working.  Please help? 

  • Photoshop CS3: How to Get This "Retro" Effect!

    OK, I've been seeing this REALLY awesome retro look on images and am not sure how to do it! Any of you know how? Here is a link to a gallery that shows this type of effect: (you'll have to scroll over to image 3) http://www.stephcarson.com/wedding/we