I have done something very very very cool with photoshop touch!

Who could I show this too to help you potentially sell more product

  You may want to market the work yourself. David Hockney creates fine art on an iPad using a £2.99 ($4.75) 'app' called Brushes which allows the user's finger to become a brush.
 

Similar Messages

  • I have done something very silly and cant find a way out

    while on a website it said click here to email the owner
    I did that
    It now asked me to select the mail program to use to contact him
    I made a mistake and instead of selecting thunderbird I chose firefox
    now of course when I try to email the guy I get an endless loop of firefox windows opening up
    and the only way I can get out is to reboot the PC
    How can I stop it going to firefox for a mail program ?
    Regards
    Don

    I think this probably is the same solution, but with a little less reading:
    (1) Use the Options dialog to change the application that handles email. This support article has the steps: [[Change the program used to open email links]].
    (2) ''If that doesn't work:'' The settings file which stores actions for mailto: and downloads could be corrupted. This article describes the general approach to that problem: [[Firefox repeatedly opens empty tabs or windows after you click on a link]]. However, please try #1 first.

  • Trying to do something very strange with layouts and painting components

    I'm trying to do something very strange with changing the layout of a container, then painting it to a bufferedImage and changing it back again so nothing has changed. However, I am unable to get the image i want of this container in a new layout. Consider it a preview function of the different layouts. Anyway. I've tried everything i know about swing and have come up empty. There is probably a better way to do what i am trying to do, i just don't know how.
    If someone could have a look perhaps and help me out i would be much appreciative.
    Here is a self contained small demo of my conundrum.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.BoxLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.border.LineBorder;
    // what is should do is when you click on the button "click me" it should place a image on the panel of the buttons in a
    // horizontal fashion. Instead it shows the size that the image should be, but there is no image.
    public class ChangeLayoutAndPaint
         private static JPanel panel;
         private static JLabel label;
         public static void main(String[] args)
              // the panel spread out vertically
              panel = new JPanel();
              panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
              // the buttons in the panel
              JButton b1, b2, b3;
              panel.add(b1 = new JButton("One"));
              panel.add(b2 = new JButton("Two"));
              panel.add(b3 = new JButton("Three"));
              b1.setEnabled(false);
              b2.setEnabled(false);
              b3.setEnabled(false);
              // the label with a border around it to show size in a temp panel with flowlayout to not stuff around
              // with the actual size we want.
              JPanel thingy = new JPanel();
              label = new JLabel();
              label.setBorder(new LineBorder(Color.black));
              thingy.add(label);
              // the button to make things go
              JButton button = new JButton("click me");
              button.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e)
                        //change layout
                        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
                        panel.doLayout();
                        //get image
                        BufferedImage image = new BufferedImage(panel.getPreferredSize().width, panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
                        Graphics2D g = image.createGraphics();
                        panel.paintComponents(g);
                        g.dispose();
                        //set icon of jlabel
                        label.setIcon(new ImageIcon(image));
                        //change back
                        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                        panel.doLayout();
              // the frame
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setSize(400,200);
              frame.setLocation(100,100);
              frame.getContentPane().add(panel, BorderLayout.NORTH);
              frame.getContentPane().add(thingy, BorderLayout.CENTER);
              frame.getContentPane().add(button, BorderLayout.SOUTH);
              frame.setVisible(true);
    }

    Looks like you didn't read the API for Container#doLayout().
    Causes this container to lay out its components. Most programs should not call this method directly, but should invoke the validate method instead.
    There's also a concurrency issue here in that the panel's components may be painted to the image before revalidation completes. And your GUI, like any Swing GUI, should be constructed and shown on the EDT.
    Try this for size -- it could be better, but I've made the minimum possible changes in your code:import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.BoxLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import javax.swing.border.LineBorder;
    public class ChangeLayoutAndPaint {
      private static JPanel panel;
      private static JLabel label;
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            // the panel spread out vertically
            panel = new JPanel();
            panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
            // the buttons in the panel
            JButton b1, b2, b3;
            panel.add(b1 = new JButton("One"));
            panel.add(b2 = new JButton("Two"));
            panel.add(b3 = new JButton("Three"));
            b1.setEnabled(false);
            b2.setEnabled(false);
            b3.setEnabled(false);
            // the label with a border around it to show size in a temp panel with flowlayout to not stuff around
            // with the actual size we want.
            JPanel thingy = new JPanel();
            label = new JLabel();
            // label.setBorder(new LineBorder(Color.black));
            thingy.add(label);
            // the button to make things go
            JButton button = new JButton("click me");
            button.addActionListener(new ActionListener() {
              @Override
              public void actionPerformed(ActionEvent e) {
                //change layout
                panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
                //panel.doLayout();
                panel.revalidate();
                SwingUtilities.invokeLater(new Runnable() {
                  @Override
                  public void run() {
                    //get image
                    BufferedImage image = new BufferedImage(panel.getPreferredSize().width,
                        panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
                    Graphics2D g = image.createGraphics();
                    panel.paintComponents(g);
                    g.dispose();
                    //set icon of jlabel
                    label.setIcon(new ImageIcon(image));
                    //change back
                    panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                    //panel.doLayout();
                    panel.revalidate();
            // the frame
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(400, 200);
            frame.setLocation(100, 100);
            frame.getContentPane().add(panel, BorderLayout.NORTH);
            frame.getContentPane().add(thingy, BorderLayout.CENTER);
            frame.getContentPane().add(button, BorderLayout.SOUTH);
            frame.setVisible(true);
    }db
    edit I prefer this:import java.awt.BorderLayout;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class LayoutAndPaint {
      JPanel panel;
      JLabel label;
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            new LayoutAndPaint().makeUI();
      public void makeUI() {
        JButton one = new JButton("One");
        JButton two = new JButton("Two");
        JButton three = new JButton("Three");
        one.setEnabled(false);
        two.setEnabled(false);
        three.setEnabled(false);
        panel = new JPanel();
        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        panel.add(one);
        panel.add(two);
        panel.add(three);
        label = new JLabel();
        JButton button = new JButton("Click");
        button.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            layoutAndPaint();
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 400);
        frame.add(panel, BorderLayout.NORTH);
        frame.add(label, BorderLayout.CENTER);
        frame.add(button, BorderLayout.SOUTH);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      private void layoutAndPaint() {
        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
        panel.revalidate();
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            BufferedImage image = new BufferedImage(panel.getPreferredSize().width,
                panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
            Graphics g = image.createGraphics();
            panel.paintComponents(g);
            g.dispose();
            label.setIcon(new ImageIcon(image));
            panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
            panel.revalidate();
    }db
    Edited by: DarrylBurke

  • I have a comment.  I am very upset with Photoshop and all your tutorials regarding the quick select tool.  I have watched many tutorials and read instructions until I am blue in the face.  This tool does not work.  It is all over the place and all of your

    I have a comment.  I am very upset with Photoshop and all your tutorials regarding the quick select tool.  I have watched many tutorials and read instructions until I am blue in the face.  This tool does not work.  It is all over the place and all of your tutorials make it look so simple.  How can you advertise this as a viable tool when it just doesn't work?

    It is all over the place and all of your tutorials make it look so simple.
    This is a user to user Forum, so you are not really addressing Adobe here, even though some Adobe employees thankfully have been dropping by.
    How can you advertise this as a viable tool when it just doesn't work?
    Concluding something does not work because you fail at using it is not necessarily always justified.
    The Quick Selection Tool certainly has limitations, but your post seems to be more about venting than trouble-shooting – otherwise you might have posted an image where you failed to get an expected result.

  • I have done something terrible!  nopen up, 'event'  but if I click on them a triangle with an exclamation point comes up.  What have I done, how can I get them back?

    I have done something terrible!  now some of my photos will not open up, I can see them in the 'event' but if I click on some of them I get a gray triangle with an exclamation point.  What have I done and how do I rectify it? 

    The exclamation shows when the file path/link to the original file has been broken.  Apply the two fixes below in order as needed: 
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I have an apple id which I have been happily using to purchase from iTunes and it appears on iPad and iPhone. Now I have done something wrong in iCloud and my mobile me Id comes up on iPhone and iPad so I can no longer purchase. What should I do.

    I have an apple id which I have been happily using to purchase from iTunes and it appears magically on iPad and iPhone, MacBook and partner's iPod touch. Now I have done something wrong in iCloud and my mobile me Id comes up on iPhone and iPad so I can no longer purchase using this and i can't find a way to reset  What should I do? I want to be able to buy apps from iPhone and iPad from this same account and  still synch with my mac book and share with my partner's iPod touch.
    Any suggestions?

    We are users, not Apple. We cannot trace your phone, and neither can Apple.
    Please change every password you have. Posting your email addresses and Apple IDs on a public forum is insane. Hopefully a Mod will edit them out for you.

  • The restriction code is on my Iphone and I didn't set it up. Could I have done something when tethering the iphone to my MacBook Pro through settings in the MacBook?

    The restriction code is set on my iPhone and I didn't set it up. Could I have done something when tethering the iPhone to my MacBook Pro through settings in the MacBook? I'm a new iPhone user. thanks

    answered

  • When importing from camera into aperture, photo's are also copied to my desktop, if i delete from desktop i am unable to edit photo in aperture. Must have done something, but what?

    When importing from camera into aperture, photo's are also copied to my desktop, if i delete from desktop i am unable to edit photo in aperture. Must have done something, but what?

    Have a look at your import setting specifically Store Files:
    Make sure it is set to where you want the originals to go.
    Message was edited by: Frank Caggiano - Don;t empty the system trash. The originals that you deleted from the Desktop are in there and are the only copies you have unless they are still in the camera.

  • I have done something to my mail account

    I have done something to my gmail account and now I cant open up my mail???

    What  Mac OS X version are you using?
    Does the Mail window open? If so, please post a screenshot of the mail window as you see it now. Use command-shift-4 and drag across to take the screenshot, and the camera Icon on the forums to include it in a post.

  • HT1338 I have done something to my computer and now it will not take my password.  I can't install my downloads.  Do I have an option other than a disc restore?

    I have done something to my computer and not it won't take my password and it's locked so I can't make changes.  I can't install my downloads.  Is there any other option other than disc restore?

    Hi ...
    Is there any other option other than disc restore?
    Yes.
    Sounds like  you need to reset your admin password ...
    Reset a Mac OS X 10.7 Lion Password
    Alternate way >  OS X Lion: Apple ID can be used to reset your user account password
    Choosing good passwords in Mac OS X

  • HT1338 I have done something so stupid I blush to tell you.I created a Master Password for Fiefox then fogot it.I can reset at the price of losing everything.I guess I've had it,huh?

    I have done something so stupid I blush to mention it.I created a Master Password for Firefox then forgot it. Guess I've had it,huh?

    Yes
    Allan

  • HT2472 I must have done something inadvertently and now if I have more than one application open the one I click on comes up front and center and the other apps disappear. How do I reset to have them both up and open and viewable at the same time?

    I must have done something inadvertently and now if I have more than one application open, the one I click on comes up front and center and the other apps disappear. How do I reset to have them both up and open and viewable at the same time?

    Hi Jan, Almost sounds like Expose or Spaces....
    http://support.apple.com/kb/HT2503

  • I have done absalutely nothing to my 4g apple ipod touch, and it over heats, won't hold a charge, and the front camera will not work. I bought this brand new in december, and i've barely used it. I've tried restarting it and everything, what should i do?

    I have done absalutely nothing to my 4g apple ipod touch, and it over heats, won't hold a charge, and the front camera will not work. I bought this brand new in december, and i've barely used it. I've tried restarting it and everything, I honestly think this is out raging because i spend over $200 on this. To have for music and instagram. I use it about an hour a day, but i've only been using it for about 3 months although i've had it since December. Any suggestions that may help me?

    Try:
    - A reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod
    If still problem make an appointment at the Genius Bar of an Apple store.

  • There's Something Very Wrong With My Macbook... Please Give Me Some Advice

    I bought a new black macbook about 7 months ago:
    Here are the specs:
    Model Name: MacBook
    Model Identifier: MacBook2,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.16 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache (per processor): 4 MB
    Memory: 2 GB
    Bus Speed: 667 MHz
    Basically, the fan noise is getting incredibly loud and very whiny, even with just microsoft word on... It is also getting very hot to the touch... And apparently, the bottom part of my macbook (the case) has a defect- its slightly popped out... I never dropped my macbook and it has always been in a case so apparently I must have bought it like that... Also, the computer won't wake up from sleep mode sometimes, and sometimes when I push the power button to turn it on, all I see is a blank white/grey screen and nothing happens...
    It has only been a couple of months and I've already been to the apple store about three times... I am a student so I don't have the time to send it in for the approx. 7 to 10 wait period... and I am concerned that if I do not send my computer in soon, the computer will crash and all my school work will go with it. I do not have an alternate computer and I will have no time to turn it in for repair until june... I do not know what to do... When I went to the apple store, they tested it and said that there was nothing wrong with the sound (however this only happens when it's taken in), I know for certain that there is something wrong with the fan noise... My suitemates and friends who have the same computer as I do, do not have this problem... What should I do? Is there any way I would be able to get this computer replaced? I really do not have the time to send it in for repairs... What should I do?? Any help would be appreciated... Thank You!

    Welcome to Discussions, ddalki_kiss!
    Most important thing first. You didn't list the "Boot ROM Version," which is after the Bus Speed in System Profiler. I ask due to the fact that, according to this Apple Support article:
    Firmware updates for Intel-based Macs
    your MacBook probably required the installation of this firmware update:
    MacBook EFI Firmware Update 1.1
    It isn't a question of whether or not that update was downloaded, but whether it was installed. Checking how System Profiler shows the "Boot ROM Version" is one way to find out if it was successfully installed. If it was not, download and install it, being careful to follow instructions and cautions.
    It is also getting very hot to the touch...
    First, the firmware update might help. Second, it is getting very hot due to the fans not being able to keep it cool enough despite running at higher speed. Can we assume that you are not using the MacBook as a laptop, but are following the cautions that it is a notebook and must have air circulation beneath it?
    ...sometimes when I push the power button to turn it on, all I see is a blank white/grey screen and nothing happens...
    You should boot into safe mode:
    http://docs.info.apple.com/article.html?artnum=107392
    http://docs.info.apple.com/article.html?artnum=107393
    http://docs.info.apple.com/article.html?artnum=107394
    Booting into safe mode could be remedial for your MacBook. You should then restart your MacBook to return to normal use, as you will be unable to remain in safe mode and have normal use of your Mac.
    If you have further problems, or if you resolve the current ones, please repost:)
    Message was edited by: myhighway

  • Something very wrong with my computer screen, please help!

    Hello all,
    Hopefully someone can help me!! I just got this Mac about 3 months ago, it is my first Mac. It is a MacBook Pro 15". Anyway, last night when I opened it up the screen has gone all funny & seems to be getting worse. It is kind of like on the TV when you get bad reception.
    Does anyone know why it has done this? I took it with me in the car, but I don't think it got bumped around or anything like that.
    i have attached some photos
    thank you everyone for your help in advance!!
    http://www.flickr.com/photos/55180164@N05/5122340102/
    http://www.flickr.com/photos/55180164@N05/5122335136/

    I think mine has got the same problem, I’m not 100% because I can’t see your problem properly because my screen is dodgy too :-p
    http://www.thefootdown.co.uk/images/temp/screen-full.jpg
    http://www.thefootdown.co.uk/images/temp/screen-cu.jpg
    MIne is well out of warranty though, is it possible for me to fix this myself?
    Thanks
    Ty

Maybe you are looking for

  • Recurring campaign for new registered customers

    Hi, I am trying to create a recurring campaign for the following scenario: A customer registers on a website.  Each time a new customer registers on this website a new BP record will be created and the BP will assigned a new marketing attribute value

  • Load an external gallery  file into a host div via Ajax method?

    I was just wondering if anyone has been able to get a spry gallery to work when placed within an external html file and loaded into the host div of a page using Ajax method to load. It must work remotely (on the Internet). I've tried and mutilated en

  • Speaker on N73

    i have a problem, i want to change my N73 speaker with built up speaker from harman/kardon, can anyone tell me how can i get that or where can i ask about it? thank you

  • HT4437 i was trying to watch bt sport app from my ipad to my tv via air play kept turning off any ideas

    i was trying to watching bt sportapp  from my ipad to my tv via airplay kept stoping any ideas

  • Custom Logging

    Hello, I have a simple runbook that I use to delete machines from both AD and Config MGR. I currently run this runbook manually on a weekly basis but would like to make this runbook available to a few more folks. My input for this runbook is a csv an