How can I resize/move border box to transform (NOT crop) photos in PSE11on a touchpad computer??

I have switched my "mouse" over to the number keypad like it says to do for the touchpad computer.  I go to tranform image size and the outline surrounding the photo only moves up/down or side-to-side.  How do I get the outline to move at the corners so I can easily manipulate the size?  Either way - FN, CTRL, Win or other buttons do nothing to enlarge photo to where I want to set it.  How can I accomplish this - any experts on touchpad conversion to number keypads out there?  This is Win8 with PSE11.  I just want this computer to get up to par to do some photo editing.  Thank you in advance.

Unfortunately I believe product is defective or that it won't work because this is a free trail for 30 days.  Too bad none of the PSE techs don't pitch in to answer this question!  I made it work using the touchpad and pressing SHFT key for only an instant but would not work again.  Their instructions said under "transform" click "free transform" which there is none.  SHFT key, drag - click inside box and commit or enter - just does not work at all!  Maybe PSE should try this and write instructions to cover this topic.  If I don't get answers it is not worth purchasing this product or I can go back to old computer which is not an option!

Similar Messages

  • Computer crashed, and had to reinstall OS, i thought i had library on disc, but not. how can i get my library back. it was not on my i-pod when the computer crashed.

    i lost all of my purchased music when my computer crashed. is there any way to re download my previous purchases now that the OS has been reinstalled?

    Refer to this article:
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/HT1451

  • How to remove a black border box that continously tabs to each field automatically till end of web page; restarts to top of page, cannot stop this box. Scroll bar cannot controlled with mouse, returns auto to top of scroll slide, never remaining at bottom

    how to remove a black border box that continously tabs to each field automatically till end of web page; restarts to top of page, cannot stop this box. Scroll bar cannot be controlled with mouse, scroll bar returns automatically to the top of scroll slide every time I move the bar to the bottom of the scale.  Also, there's a rectangular text box (with black background and white text) that is always on the desktop that emulates a typed text, HTML, or cmd function.

    cjuan1morb4ulv wrote:
    how to remove a black border box that continously tabs to each field automatically till end of web page; restarts to top of page, cannot stop this box. Scroll bar cannot be controlled with mouse, scroll bar returns automatically to the top of scroll slide every time I move the bar to the bottom of the scale.  Also, there's a rectangular text box (with black background and white text) that is always on the desktop that emulates a typed text, HTML, or cmd function.
    The first two problems (box cycling from element to element on page, scroll bar returning to top) can be caused by a stuck (or defective) Tab key on the keyboard. Such damage can be caused by a liquid spill; just one tiny droplet is enough to short a wafer switch under one key.
    The last issue (black box, white text - sounds sorta like a debugger window) I haven't seen, but could be caused by something similar.
    To check for that, try using a different keyboard. If you're using a wireless keyboard, turn it off and see if the oddities stop.

  • I'm retiring my old computer (windows xp) to a new computer (windows 7). How can i easily move my itunes music from the old computer to the new computer? i have my playlists organized in my old computer, i would like it to stay that way in my new computer

    i'm retiring my old computer (with windows xp) and bought a new computer (with windows 7). How can i easily move my itunes music from the old computer to the new computer? i have my playlists organized in my old computer, i would like it to stay that way in my new computer. I also have my ipods, iphone sync'd in the old computer so i want to make sure that things won't get messed up (my apps, playlists, etc) when i move over everything to the new computer and sync all my devices with the new computer.
    Thanks in advance for the tips.

    Make sure the XP box is upgraded to the latest version of itunes. Also make sure it's using the itunes media folder layout as explained here, because that's what the W7 is going to be using.
    http://support.apple.com/kb/HT3847
    Install itunes on the new W7 PC.
    Get these folders from the XP machine
    C:\Documents and Settings\username\My Documents\My Music\iTunes
    C:\Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    And put them here on the W7 machine
    C:\users\username\My Music\iTunes
    C:\Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\

  • My force quit window fills the entire screen. How can I resize it? OS 10.7.5.

    My force quit window fills the entire screen. How can I resize it? I have iOS 10.7.5.

    Click the "Green" button?
    Or, Click and Drag the Lower-Right-Corner.
    I've tried both on a Mac OS X 10.7.5 Lion system, and they both affected the Force Quit dialog box.

  • How can I transfer movies from one apple to another

    How can I transfer movies form my macbook pro to my apple air?

    If you have a wireless network, you can enable file sharing with each and transfer select data from one to the other via your wi-fi network.
    Or if you have an external drive used for backup purposes, you can transfer the movies that way.
    If you have Home Sharing enabled with iTunes on each and a wireless network, you don't need to transfer anything unless you want the movie available when away from home.

  • How can I make the combo box turn to the value of black.

    When the show button is pressed (and not before), a filled black square should be
    displayed in the display area. The combo box (or drop down list) that enables the user to choose the colour of
    the displayed shape and the altering should take effect immediately.When the show button is pressed,
    the image should immediately revert to the black square, the combo box should show the value that
    correspond to the black.
    Now ,the problem is: after I pressed show button, the image is reverted to the black square,but I don't know
    how can I make the combo box turn to the value of black.
    Any help or hint?Thanks a lot!
    coding 1.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class test extends JFrame {
         private JPanel buttonPanel;
         private DrawPanel myPanel;
         private JButton showButton;
         private JComboBox colorComboBox;
    private boolean isShow;
         private int shape;
         private boolean isFill=true;
    private String colorNames[] = {"black", "blue", "cyan", "darkGray", "gray",
    "green", "lightgray", "magenta", "orange",
    "pink", "red", "white", "yellow"}; // color names list in ComboBox
    private Color colors[] = {Color.black, Color.blue, Color.cyan, Color.darkGray,
                              Color.gray, Color.green, Color.lightGray, Color.magenta,
                              Color.orange, Color.pink, Color.red, Color.white, Color.yellow};
         public test() {
         super("Draw Shapes");
         // creat custom drawing panel
    myPanel = new DrawPanel(); // instantiate a DrawPanel object
    myPanel.setBackground(Color.white);
         // set up showButton
    // register an event handler for showButton's ActionEvent
    showButton = new JButton ("show");
         showButton.addActionListener(
              // anonymous inner class to handle showButton events
         new ActionListener() {
                   // draw a black filled square shape after clicking showButton
         public void actionPerformed (ActionEvent event) {
                             // call DrawPanel method setShowStatus and pass an parameter
              // to decide if show the shape
         myPanel.setShowStatus(true);
                   isShow = myPanel.getShowStatus();
                                            shape = DrawPanel.SQUARE;
                        // call DrawPanel method setShape to indicate shape to draw
                                            myPanel.setShape(shape);
                        // call DrawPanel method setFill to indicate to draw a filled shape
                                            myPanel.setFill(true);
                        // call DrawPanel method draw
                                            myPanel.draw();
                             myPanel.setFill(true);
                             myPanel.setForeground(Color.black);
                   }// end anonymous inner class
         );// end call to addActionListener
    // set up colorComboBox
    // register event handlers for colorComboBox's ItemEvent
    colorComboBox = new JComboBox(colorNames);
    colorComboBox.setMaximumRowCount(5);
    colorComboBox.addItemListener(
         // anonymous inner class to handle colorComboBox events
         new ItemListener() {
         // select shape's color
         public void itemStateChanged(ItemEvent event) {
         if(event.getStateChange() == ItemEvent.SELECTED)
         // call DrawPanel method setForeground
         // and pass an element value of colors array
         myPanel.setForeground(colors[colorComboBox.getSelectedIndex()]);
    myPanel.draw();
    }// end anonymous inner class
    ); // end call to addItemListener
    // set up panel containing buttons
         buttonPanel = new JPanel();
    buttonPanel.setLayout(new GridLayout(4, 1, 0, 50));
         buttonPanel.add(showButton);
    buttonPanel.add(colorComboBox);
    JPanel radioButtonPanel = new JPanel();
    radioButtonPanel.setLayout(new GridLayout(2, 1, 0, 20));
    Container container = getContentPane();
    container.setLayout(new BorderLayout(10,10));
    container.add(myPanel, BorderLayout.CENTER);
         container.add(buttonPanel, BorderLayout.EAST);
    setSize(500, 400);
         setVisible(true);
         public static void main(String args[]) {
         test application = new test();
         application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    coding 2
    import java.awt.*;
    import javax.swing.*;
    public class DrawPanel extends JPanel {
         public final static int CIRCLE = 1, SQUARE = 2;
         private int shape;
         private boolean fill;
         private boolean showStatus;
    private int shapeSize = 100;
    private Color foreground;
         // draw a specified shape
    public void paintComponent (Graphics g){
              super.paintComponent(g);
              // find center
    int x=(getSize().width-shapeSize)/2;
              int y=(getSize().height-shapeSize)/2;
              if (shape == CIRCLE) {
         if (fill == true){
         g.setColor(foreground);
              g.fillOval(x, y, shapeSize, shapeSize);
    else{
                   g.setColor(foreground);
    g.drawOval(x, y, shapeSize, shapeSize);
              else if (shape == SQUARE){
         if (fill == true){
         g.setColor(foreground);
                        g.fillRect(x, y, shapeSize, shapeSize);
    else{
                        g.setColor(foreground);
    g.drawRect(x, y, shapeSize, shapeSize);
    // set showStatus value
    public void setShowStatus (boolean s) {
              showStatus = s;
         // return showstatus value
    public boolean getShowStatus () {
              return showStatus;
         // set fill value
    public void setFill(boolean isFill) {
              fill = isFill;
         // set shape value
    public void setShape(int shapeToDraw) {
              shape = shapeToDraw;
    // set shapeSize value
    public void setShapeSize(int newShapeSize) {
              shapeSize = newShapeSize;
    // set foreground value
    public void setForeground(Color newColor) {
              foreground = newColor;
         // repaint DrawPanel
    public void draw (){
              if(showStatus == true)
              repaint();

    Hello,
    does setSelectedIndex(int anIndex)
    do what you need?
    See Java Doc for JComboBox.

  • How can I make a gray box or gray screen in Pages over a few lines of text?

    How can I make a gray box or gray screen in Pages over a few lines of text?

    Thanks. Almost what I was looking for.
    While that makes for a gray over the lines, it still does not form a box.
    Any other suggestions to form a solid rectangular gray box?

  • How can I watch movies in germany with native tone, english? Any one knows how to switch the language when renting a movie?

    How can I watch movies in germany with native tone, english? Any one knows how to switch the language when renting a movie?

    I wonder the Format Tables macros on my site could be adapted?
    http://www.grainge.org/pages/authoring/word/word_macros.htm
    If not, I have used Macro Express to format tables in Rh. No reason it could not be used in Word.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How can I transfer movies from the apple tv to the ituenes, to watch in the ipad?

    how can I transfer movies from the apple tv to the ituenes, to watch in the ipad?

    Is this a rental or a purchase?
    Rentals on ATV cannot be transferred.
    The 2nd and 3rd gen model do not have accessible storage. Some movie purchases are stored in iCloud (if you live in the US) where you can reload in iTunes on your computer)
    If you own the 1st gen aluminum model then it should be set to sync
    http://support.apple.com/kb/HT1143

  • How can I delete movie from my itunes

    How can I delete movie from my itunes on cpmputer?

    I think I found a solution to this problem. Go into the Video app and tap on TV Shows and then tap on the icon for the show that is downloading. Next to each episode, there is a circle with a square in the middle of it. Tap the square next to each episode and it will disappear both from that list and and from the downloading queue in the iTunes app. When you want to download a particular episode, go back into the show in the Video season and tap on Show Complete Season. Now each episode has its own Download button.
    Needless to say, it is insane that when you redeem a season purchase on the iPad, it insists on downloading the entire season.

  • How can i transfer movies from my windows laptop to ipad 3

    how can i transfer movies from my windows laptop to ipad 3

    Import them into iTunes then sync them to your iPad

  • How can I resize a photo in iPhoto without cropping it?

    I am taking pictures on my iphone 4s and using iphoto to edit them on macbook pro.  I need to upload these photos at a size much smaller than what i am able to take with my phone.  The only way I see to adjust the size of a photo in iphoto is to crop it.  How can I resize without cropping?
    Thank you

    It's an option in the Export menu.
    File -> Export and under the Size option you can choose the maximum you prefer. Export that and upload from the desktop.

  • How can I sort movies by genre on itunes  from ipad 2 ?

    If i find a movie for buy in itunes ( from pc ) i can select the genre (action , comedy ..) for optimize the search. In mi ipad 2 i cannot do this  , i can select genre for music , apps , etc but in movies i only see alphabetical order and older / news movies .
    How can I sort movies by genre on itunes  from ipad 2 ?¿
    Thans very much ¡

    I'm looking for an answer to this same question.  I can sort (group) by Genre on iTunes and Apple TV - but not by brand new iPad 2...? 

  • How can I sort movies by price in iTunes?

    How can I sort movies by price in iTunes?

    How can you sort ANYTHING in the iTunes store now???

Maybe you are looking for

  • Opening a new window by clicking icon on the tableview

    I would like to open a new popup window to show data by clicking an icon on one tableview. This data is kept in an internal table passed by a parent controller. Is there any example provided? (I am not familiar with the javascript language)

  • Permissions problem with External Hard drive.

    Hi, I've been using my external hard drive for almost a year now and out of the blue last night I ran into a interesting problem. For some reason I couldn't transfer any files to a thumb drive and shortly after I realized I didn't have Read and write

  • Online pdf form field goes wrong

    I use adobe acrobat xi. I have created some files and i have uploaded them in online platform. When I open the files from the online platform all the check-boxes, square buttons and X-boxes come out wrong. Everything looks fine when I open the file f

  • Signature on the print checks

    hi folks, I have a question related to printing signature on the checks, I need to find how it is done, In the sap script under the signature window, I found the following code for the text elements, 'INCLUDE ZHEX-MACRO-PPC-SIGNATURE OBJECT TEXT ID S

  • What is the best way to handle very large images in Captivate?

    I am just not sure the best way to handle very large electrical drawings. Any suggestions? Thanks Tricia