FAQ: How is Photoshop Express iOS version 3.0 different from the previous one?

In our latest 3.0 version, we revamped the rendering engine in order to deliver great new effects, improved editing controls and a streamlined user experience. That means some things you were familiar with may not be available in this version.  If you go to the settings (gear icon), you can select 'restore purchases' to restore your previous in-app purchases. Some of the effects and borders in the previous versions have changed in 3.0.
Restoring in-app purchases:
If you've previously purchased either of the packs above, they are still available to you by restoring your purchase, which is accessed in Settings. You do not need to repurchase them.
In-app purchases have been renamed.
-The “Effects Pack” that you previously purchased has been renamed "Premium Looks Pack". You still have access to this Pack.
-The “Camera Pack”, which provided Noise Reduction, is now called "Noise" and can be found in the Corrections slider menu. (if you purchased the camer pack previously and you restore your purchases in 3.0, this will be inclulded free of charge.)
Other changes
Previous Effects and Borders have been replaced with Looks, Premium Looks, and Borders. Some of the new looks replicate many of the most popular effects. We will be adding new borders, looks and sharpen controls in future releases.
The icons across the bottom of the screen are:
Cverlapping circles icon- Looks/Premium looks
Crop icon-  Crop (also straighten, rotate, flip)
Correction Sliders icon-  Contrast, noise, clarity, exposure, highlights, shadows, temperature, tint, vibrance
Eye icon-  Red eye Fix
Border icon-  Borders
Image Corrections:
Instead of selecting the sun icon as you did before for exposure, brightness, contrast, hue/saturation, and tint/temperature, you can now use the corrections sliders for contrast, noise, clarity, exposure, highlights, shadows, temperature, tint, and vibrance. The corrections sliders are the third icon on the bottom. You can also get photos from and save photos to Adobe Revel, our sharing and storage service.
Here is an explanation as to how most of the previous adjustment options can be accomplished with options in version 3.0:
White balance can be accomplished by a combination of tint and temperature changes.
Brightness, is accomplished using contrast, exposure, shadows and highlights.
Noise reduction is now in the corrections slider area
Contrast is a choice in the corrections slider area.
Hue can be modified by changing tint and temperature, choices in the corrections slider area.
Saturation -similar results can be accomplished by vibrance, except vibrance will preserve the skin tones and saturated colors.
Sharpen- Sharpen is not currently available in  version 3.0. You can try clarity for now, which is somewhat similar.

Yes...but do I do that in the TableModelListener ?
This is what I've tried in the TableModelListener:
public void tableChanged(TableModelEvent e)
         System.out.println(e.getSource());
           if(e.getType() == TableModelEvent.UPDATE)
                TableModel model = stdTablewCombo.getModel();
                int row = e.getFirstRow();
                this.cellValue = ((String)model.getValueAt(row, 0));
                if (cellValue != null)
                     this.selectedIndex = this.stdComboBox.getSelectedIndex();
                      System.out.println("Selected Index:" + this.selectedIndex);
                      if (this.selectedIndex >= 0)
                         String valueToSet = this.lovStringB[this.selectedIndex];
                         model.setValueAt(valueToSet, row, 0);
                      else
                           System.out.println("Value in cell is not from List");
                      }It returns the selectedIndex value allright.
It sets the value of valueToSet string allright.
it also does the model.setValueAt allright....but this triggers a tableChanged event and it goes back up - this is also fine. However, when it now comes back to the this.selectedIndex = , this again returns the index of the original selection and not a -1 (for values not in the ComboBox list). This makes it go into an infinite loop and gives me a StackOverflowError.
Edited by: 799076 on Oct 10, 2010 9:41 AM
Edited by: 799076 on Oct 10, 2010 9:49 AM

Similar Messages

  • I accidently closed my window with all my app tabs, now the only window that opens was a 2nd one I had open. How do I get back all my app tabs from the previous window, and why didn't it give me the usual warning you are closing more than one tab?

    I accidently closed the window with all my frequently used app tabs, now the only window that opens was an extra one I had opened. How do I get back all my app tabs from the previous window, and why didn't it give me the usual warning you are closing more than one tab? edit
    Details

    Then the (App) tabs from that window are lost unless you can restore an older copy of the sessionstore.js file (Time Machine?) that has that lost window.
    *http://kb.mozillazine.org/sessionstore.js

  • I downloaded the new version of Firefox and it will not open certain of the addresses that I use to run my business. How can I delete this version and go back to the previous version? thank you

    I would like to revert back to the previous version of Firefox. Please tell me how to do this

    hello and thank you for your suggestion. I have tried it and, when trying to open a program which I previously was able to, still get the following message:
    Remote XUL
    This page uses an unsupported technology that is no longer available by default in Firefox.
    Please contact the website owners to inform them of this problem.
    Seems unbelievable that I previously had no problem and now I do. Have you any suggestions to overcome this? Do you think I can go back further in Firefox history to get a version that will make it possible to access this. Many thanks! Lynn

  • How to have a JComboBox display an item different from the one selected

    Hello,
    I have a JTable (single column). I have set this column cell editor to be a JComboBox...
    JComboBox stdComboBox = new JComboBox();
    TableColumn column_zero = stdTablewCombo.getColumnModel().getColumn(0);
            column_zero.setCellEditor( new DefaultCellEditor(stdComboBox) );I have added a lovString array say {"A", "B", "C") to this stdComboBox. However, when the user selects a value from this list, I need to display a value from another lovString array say {"1", "2", "3"}. So if the user selects A then 1 needs to be displayed.
    I have a TableModelListener on this table that is getting me the correct selected index for any of the JComboBoxes on any of the rows. But I am little lost on how to display the value from the 2nd list.
    Thanks.

    Yes...but do I do that in the TableModelListener ?
    This is what I've tried in the TableModelListener:
    public void tableChanged(TableModelEvent e)
             System.out.println(e.getSource());
               if(e.getType() == TableModelEvent.UPDATE)
                    TableModel model = stdTablewCombo.getModel();
                    int row = e.getFirstRow();
                    this.cellValue = ((String)model.getValueAt(row, 0));
                    if (cellValue != null)
                         this.selectedIndex = this.stdComboBox.getSelectedIndex();
                          System.out.println("Selected Index:" + this.selectedIndex);
                          if (this.selectedIndex >= 0)
                             String valueToSet = this.lovStringB[this.selectedIndex];
                             model.setValueAt(valueToSet, row, 0);
                          else
                               System.out.println("Value in cell is not from List");
                          }It returns the selectedIndex value allright.
    It sets the value of valueToSet string allright.
    it also does the model.setValueAt allright....but this triggers a tableChanged event and it goes back up - this is also fine. However, when it now comes back to the this.selectedIndex = , this again returns the index of the original selection and not a -1 (for values not in the ComboBox list). This makes it go into an infinite loop and gives me a StackOverflowError.
    Edited by: 799076 on Oct 10, 2010 9:41 AM
    Edited by: 799076 on Oct 10, 2010 9:49 AM

  • How can I import contacts into a mailbox and overwrite the previous ones?

    Hey guys, so I am new to powershell. I understand some of the basics and am still trying to teach myself as much as I can.
    So I have been asked to automatically push our company's contacts to everyone's mailbox (around 60-70 contacts to 60-70 mailboxes) We use Office 365.
    They also want the contacts to sync to mobile phones, so I cannot used a shared contact list. It seems only the MAIN contact list can sync to a phone.
    So far I have used this:
    import-contactlist -csv -csvdata ([system.io.file]::readallbytes("PATH TO CSV FILE")) -identity USER
    This works just fine, but if there are any changes to the CSV and I run it again, it just doubles all the contacts instead of overwriting. Is there anyway I can overwrite the contacts?
    I have also tried this:
    Search-Mailbox -identity USER -SearchQuery kind:contacts -deletecontent
    This does delete the contacts I have created in the first place, but if there are any OTHER contacts that users have created, it would delete those as well.
    I feel like im headed in the right direction.. can anyone help?

    Okay I think I figured it out. After I import the contacts with: import-contactlist -csv -csvdata ([system.io.file]::readallbytes("PATH TO CSV")) -identity USER
    I can run this to find and delete each added contact: 
    $tcontacts = get-content PATH TO CSV WITH ONLY NAMES
    $zcontacts = get-content PATH TO CSV WITH NAMES OF MAILBOXES YOU WANT TO REMOVE CONTACTS FROM
    $ccontacts = "null"
    $scontacts = "null"
    $xcontacts = "null"
    foreach ($ccontacts in $tcontacts) {foreach ($scontacts in $zcontacts) {$xcontacts = $scontacts; Search-Mailbox -identity $xcontacts -SearchQuery kind:'contacts', $ccontacts -deletecontent -force}}
    I use xcontacts = scontacts because of pointer issues (i think?) but anyway, using
    $scontacts for the -identity doesnt work.
    This is a pretty rough script, and you guys could probably find a shorter one, but it works! Thanks

  • How do you get songs on an Ipod touch from your previous one?

    My Ipod touch recently had a glitch that completely messed it up. As a result, I went to get another one. Typically, when we sync our ipods to the computer, everything that you've changed on the ipod is saved onto the computer as well. However, I had purchased about 15-20 songs on my Ipod touch and added about 6 or 7 new apps before it started to mess up on me, but I never had the chance to sync it in to the computer. So I'm wondering if there is a way for me to reclaim the songs that I've purchased because--well, because I've purchased them and I really do not want to pay for them again. If anyone has a legit answer, I'd really appreciate it if you posted a response!
    Thank you! =]

    Here's a short and simple on the legit way since I actually had this happen to me as well.
    Open iTunes, and go to the store. At the top right corner should be your iTunes login name (or "Log In"). Either way, click it and it will ask you to log in.
    Once you log in (or re login), you should be brought to your account. Somewhere in the middle is an option to view purchase history. Click that.
    Once it's open, it should pull up all your purchases (grouped somehow...I think by day?). Find the purchases you're looking for. And click the arrow to pull up the order (for multiple orders, you're going to do this a couple times).
    The order should pull up with ALL purchases associated with that order. At the bottom is a button to report a problem.
    When you click it, all items should now show a link that says "Report a Problem". For each item, click the link.
    A new page will display with a drop down menu and a comments box. Pick the option "I didn't Receive this Song" and note that it was purchased with an iPod Touch that was unable to transfer to back to iTunes. Submit, and repeat for all SONGS.
    For all your apps, find the apps you need to download, and iTunes will automatically allow free redownloads, which means you DON'T need to report a problem. When you finished reporting the problem, check your email box because you'll be spammed by the Apple Auto-Responses that an Apple Associate will take care of the problem. In several hours (or overnight), you'll receive a response from said Apple Associate (it will say the same thing all the time, practically automated) apologizing for you not receiving the songs. They will credit your account and you can "repurchase" that song (since you will technically receive a "gift card" on your account of 1.29 per song). That should solve your problem.

  • FAQ's about Photoshop Express 3.0.1

    Photoshop Express 3.0.1 FAQ's:
    FAQ: Is the sharpen tool in Photoshop Express 3.0.1 the same as in the previous version ?
    No, the new sharpen tool incorporates the latest version of sharpening from our imaging teams at Adobe. It is different from the previous version in that the scope has been constrained to a range where we can preserve image quality while achieving the best possible sharpness.
    FAQ: Why does the noise reduction tool work differently  in Photoshop Express 3.0.1 than in the previous version?
    The range of the noise reduction tool in the previous version was wider than the the range of the tool in version 3.0.1 When it was used at the outer limits, it would cause images to lose detail and would degrade their quality. The new version balances the amount of noise reduced while still preserving image quality.
    FAQ: Why does my image automatically zoom in when I use the sharpen and noise reduction tools in Photoshop Express 3.0.1?
    Both the sharpen tool and the noise reduction tool can best be adjusted while viewing  the details of the image close up. It allows you to see the changes being made by the tool more clearly and allows for a much more precise adjustment. If you prefer not to use this feature, the zoom can be turned off in the settings panel.
    FAQ: How can I achieve a larger range of sharpen or noise reduction as in the previous version of Photoshop Express?
    While the features are not designed for uses outside of the ranges provided, you can achieve similar results by applying the maximum value for the tool,saving the image to your camera roll, and repeating the process.

    I don't think there was ever anything wrong with your iMac. It should have more than enough power even in its basic configuration. (I am assuming that the Hard Drive is not more than 75% full or fragmented. Either of those situations could cause dropped frames).
    There could be a fault with FCE and the first thing to try is to trash the preferences properly like this:-
    http://www.fcpbook.com/Misc1.html
    One thing is certain - throwing money at it will not effect a cure. You do not need a more powerful computer or another FCE. If it is not working OK it is because there is something in either your Mac or FCE that needs "adjusting".
    You could also go to FCE HD>System Settings>Memory & Cache and ensure the Application setting is at 100%.
    Ian.

  • How come I can't update my iPad 1 to the new iOS 6 it says my iOS version 5.1.1 is the latest version?

    How come I can't update my iPad 1 to the new iOS 6 it says my iOS version 5.1.1 is the latest version?

    The iPad 1, coming up on three years since it was introduced, has been given two major and a number of minor upgrades to iOS, more than many tablet manufactures provide. The iPad 1's hardware just can't effectively support many of the features in iOS 6. So I don't think that it's particularly unfair for Apple to no longer provide updates. And yes, I do own and manage a number of iPad 1s.
    Regards.

  • I updated IOS 6 in my device, it is performing worse. Consuming too much battery in a very short time. How can I "downgrade IOS version?

    I updated IOS 6 in my device, it is performing worse. Consuming too much battery in a very short time. How can I "downgrade IOS version?

    Downgrading isn't supported and wouldn't help.  You need to fix your phone.
    1. Delete and reinstall all email accounts.
    2, Restore the phone in iTunes, first  using a backup and if needed as a new phone.
    iTunes: Restoring iOS software

  • How to find original ios version

    iam download ios 7.1.1 on iclarified site. i have some doubt
    that site is sell original os or fake.
    how to find the original / fake ios 7.1.1 on iphone 4s.
    how to download original ios version on my phone..

    Plug it in to iTunes on your Mac, Restore the phone.

  • Just received a new Ipad Air, but IOS version is older than current IPad...can not load backup...How do I upgrade IOS version?

    Just received a new Ipad Air, but IOS version is older than current IPad...can not load backup...How do I upgrade IOS version?

    In order to upgrade the new Air 2, I had to select "set up as new" from the menu. So, after the IOS upgrade is done, how do I "restore" the data that is backed up on icloud from my old Ipad?  I don't see a menu item for that . . .
    Thanks

  • How to swich to english version? I am from Czech republic and automatikly was instaled czech version,but I need english version.

    How to swich to english version? I am from Czech republic and automatikly was instaled czech version,but I need english version.

    Here's a simple guide using the CC Desktop panel:
    After the install is finished, it should show up in the below Photoshop Preferences menu. Select and restart Photoshop.

  • How can I create multiple versions of a video within the same project?

    OK...this is a probably a very basic question but I'm not sure how to word it clearly.
    How can I create multiple versions of a video within the same project? What I mean is that I have a bout 50 minutes of video and I want to make two DVDs using different clips from this original 50 minutes of footage. It would be a real pain to have to re-import the video AGAIN for the second DVD. I suppose I could drop anything I don't want to burn to DVD back into the clips pane but that would wipe out all my transitions wouldn't it? I want to save each project in their “raw” form so I can burn additional DVDs later otherwise I would just do them one at a time and not care about one of them being destroyed.
    Wow...that was a mess. Does anyone understand what the heck I’m asking? I hope so.

    How can I create multiple versions of a video within the same project?
    You can't. You make separate projects using the same or different clips, segments, transitions, titles, etc. You can even duplicate the first project and then modify/make the desired changes in the duplicated project. Each project can then be burned as a different DVD or as different titles on the same DVD if there is enough room.

  • I was given an iMac without iPhoto. Have updated to OS to 10.6.8. How do I get a version of iPhoto that will the updates will work with? Downloaded 9.2.1 and it looked for 9.1; downloaded 9.1 and it looked for 9.0??

    I was given an iMac without iPhoto. Have updated to OS to 10.6.8. How do I get a version of iPhoto that will the updates will work with? Downloaded 9.2.1 and it looked for 9.1; downloaded 9.1 and it looked for 9.0??

    You can Purchase iPhoto in the Apps Store...

  • The upgrade to Firefox 4 is causing massive problems with my computer. How do I uninstall it and go back to using the previous version?

    Firefox 4 is absolutely awful - it is causing massive problems with my computer. How do I uninstall Firefox 4 and go back to the previous version of Firefox?

    According to the instructions given on the Norton Community forum under "Other Norton Products/Comcast-Customers - Norton Toolbar Problem in Firefox 10", I have done everything necessary. And I do have a Norton toolbar (Safe Web and Identity Safe) when I open Firefox 10. As was mentioned in the previous posts here, you need to run manual LiveUpdate then reboot until you have version 5.2.0.13. Then reboot and run manual LiveUpdate again and reboot once more. One thing that I noticed is that Norton never told me that it had updated the patch for Firefox 10, so I didn't know. I guess if you have the toolbar when you run Firefox 10, then you have done it all.

Maybe you are looking for

  • I have a HP TouchSmart desktop. My question is - when I receive an e-mail with a picture in the

    I have a HP TouchSmart desktop,  My question is - how do I print out a picture when it's in the body of the e-mail.  I only want to print the picture but  every time I try, I get the message and no picture.  What am I doing wrong? Thanks, June

  • Sharing Photosmart 7960 from Windows 7 to XP

    Hello, I have a Photosmart 7960 connected to a Windows 7 x86 PC. I would like to share it with an XP computer, but I cannot locate an installable driver on for the Windows 7 computer that can be downloaded to the XP machine at installation time. Can

  • No reviews in App Store

    For a while the English App reviews have not been available in the Danish app store - which means there is barely any reviews (population 6 mill people). This is pretty annoying that it is not possible to see the reviews of app before you buy any mor

  • Set Default Printer based on user setting using Powershell script

    Hi  I would like to create a script that runs on user log off and captures the default printer (set manually by the user) and then another script to reapply the settings (saved upon log off) when the user logs back in. This is because local printers

  • Issue encountered when Login as sysdba role using Thin Oracle JDBC Driver

    Hello all, we are now considering to use Thin oracle JDBC driver to create database in our project, but we met one issue when we tried to connect to oracle as sysdba role using Thin driver, and it throws java.sql.SQLException: Io Exception: SO Except