Strange glitch in PSE 10...please help!?

Two or more files open in the project bin. All files are opened as saved...no unsaved changes.
I adjust the layer opacity of any layer in any of the open images.
Before saving, I click on any of the other images to switch to it.
The layer opacity change is carried over to the image that I switched to on whatever layer was already selected in that image.
Example:
Image A has 2 layers (Background and Levels 1). Image B has the same. The opacity of Levels 1 is 100% on both images.
I open both files in the project bin. The Levels 1 layer is selected in both images.
I adjust the opacity of Levels 1 (IMG A) to 50%.
If I immediately click on IMG B before saving IMG A, then the Levels 1 opacity in IMG B is also changed to 50% without me adjusting it.
This has just recently started happening. I usually work with multiple files open and I'm sure I would have noticed this before now. Has anyone else encountered a similar issue or can anyone else replicate this situation? Any ideas on what might be causing this? Any help would be greatly appreaciated.

I actually uninstalled PSE and then reinstalled and I still have the same problem. No preferences have been changed at all.
Also, the ctrl+alt+shift while restarting does not work. It just brings up the program / icon properties window. It does not allow the program to start at all.
Anyone have any other ideas?

Similar Messages

  • Very strange behaviour master-detail-detail please help

    Very strange behaviour master-detail-detail please help
    Hello,
    I have a parent-child-grandchild report which show's some really strange behaviour.
    The data template has 3 queries Q1, Q2 and Q3.
    Q2 is bound to Q1 using a bind variable
    Q3 is bound to Q2 using another bind variable
    For a certain record in Q1 the output should be
    2 records in Q2
    and 1 record in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q2 record B
    Q3 record BC
    The results conforms to the expected output.
    For another record in Q1 the output should be
    2 records in Q2
    and 2 records in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    In stead of the expected output, the result shows
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record AB
    For another record in Q1 the output should be
    5 records in Q2
    and 2 records in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    Q2 record C
    Q3 record CE
    Q3 record CF
    Q2 record D
    Q3 record DG
    Q3 record DH
    Q2 record E
    Q3 record EI
    Q3 record EJ
    In stead of the expected output, the result shows
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    Q2 record C
    Q3 record CE
    Q3 record CF
    Q2 record D
    Q3 record DG
    Q3 record DH
    Q2 record E
    Q3 record DH
    So for the last record of Q2 I don't get the appropriate records from Q3 when there are multiple records to be shown, but only the last record which belongs to the previous Q2
    What is going on?
    Please help me out...
    Kind regards,
    Jan-Marcel

    Hi Tim,
    Thanks for your reply. Below you will find the datatemplate on the scott/tiger schema.
    Please help me out.
    Kind regards,
    Jan-Marcel
    <dataTemplate name="scott" description="Template scott" dataSourceRef="otcy001" version="1.1">
      <parameters>
        <parameter name="p_deptno" dataType="number"/>
      </parameters>
      <dataQuery>
        <sqlStatement name="Q1">
          <![CDATA[
            select empno            mgr_empno
                 , ename            mgr_name
                 , job              mgr_job
                 , hiredate         mgr_hiredate
                 , sal              mgr_sal
                 , comm             mgr_comm
              from emp
             where deptno = nvl(:p_deptno, deptno)
               and mgr is null
          ]]>
        </sqlStatement>
        <sqlStatement name="Q2">
          <![CDATA[
            select empno            mgr2_empno
                 , ename            mgr2_name
                 , job              mgr2_job
                 , hiredate         mgr2_hiredate
                 , sal              mgr2_sal
                 , comm             mgr2_comm
                 , mgr              mgr2_mgr
              from emp
             where mgr = :mgr_empno
          ]]>
        </sqlStatement>
        <sqlStatement name="Q3">
          <![CDATA[
            select empno            emp_no
                 , ename            emp_name
                 , job              emp_job
                 , hiredate         emp_hiredate
                 , sal              emp_sal
                 , comm             emp_comm
                 , mgr              emp_mgr
              from emp
             where mgr = :mgr2_empno
          ]]>
        </sqlStatement>
      </dataQuery>
      <dataStructure>
        <group name="G_mgr1" source="Q1">
          <element name="q1_mgr_empno"    value="mgr_empno"/>
          <element name="q1_mgr_name"     value="mgr_name"/>
          <element name="q1_mgr_job"      value="mgr_job"/>
          <element name="q1_mgr_hiredate" value="mgr_hiredate"/>
          <element name="q1_mgr_sal"      value="mgr_sal"/>
          <element name="q1_mgr_comm"     value="mgr_comm"/>
          <group name="G_mgr2" source="Q2">
            <element name="q2_mgr_empno"    value="mgr2_empno"/>
            <element name="q2_mgr_name"     value="mgr2_name"/>
            <element name="q2_mgr_job"      value="mgr2_job"/>
            <element name="q2_mgr_hiredate" value="mgr2_hiredate"/>
            <element name="q2_mgr_sal"      value="mgr2_sal"/>
            <element name="q2_mgr_comm"     value="mgr2_comm"/>
            <element name="q2_mgr2_mgr"     value="mgr2_mgr"/>
            <group name="G_emp" source="Q3">
              <element name="q3_emp_empno"    value="emp_empno"/>
              <element name="q3_emp_name"     value="emp_name"/>
              <element name="q3_emp_job"      value="emp_job"/>
              <element name="q3_emp_hiredate" value="emp_hiredate"/>
              <element name="q3_emp_sal"      value="emp_sal"/>
              <element name="q3_emp_comm"     value="emp_comm"/>
              <element name="q3_emp_mgr"      value="emp_mgr"/>
            </group>
          </group>
        </group>
      </dataStructure>
    </dataTemplate>

  • Very Strange Logic Studio Installing Problem, please help !

    Hello .
    I wanted to install Logic Studio 9 on a brand new imac and somehow installation was failed .
    Than i erased what ever i could which was left from the failed installation .
    And now i am trying to reinstall, but this time Installation is not asking me Audio Content 1, 2 and 3
    And also after Jam Pack 1, instead of continuing to 2 and 3, is asking to put install disk , and after that point installation getting failed again .
    So far what i erased after failure was (only the ones i could find out of this list )
    Application Files
    /Applications/Compressor
    /Applications/Logic Node
    /Applications/Logic Pro
    /Applications/MainStage
    /Applications/Soundtrack Pro
    /Applications/WaveBurner
    /Applications/Utilities/Apple Loops Utility
    /Applications/Utilities/Impulse Response Utility
    Factory Settings, Instruments
    /Library/Application Support/Logic/
    /Library/Application Support/Garageband/
    /Library/Application Support/Garageband Content/ (Legacy)
    /Library/Application Support/Soundtrack Pro/
    /Library/Application Support/WaveBurner/
    Impulse Responses
    /Library/Audio/Impulse Responses/
    Receipts
    Receipts can vary quite a bit depending on your system. Try to find all those that look like the following:
    /Library/Receipts/AudioContentforSoundtrackProXX.pkg
    /Library/Receipts/CompressorXX.pkg
    /Library/Receipts/EXS24SamplerLibrarySamples.pkg
    /Library/Receipts/EXS24SamplerLibraryStudio.pkg
    /Library/Receipts/GarageBandXX.pkg
    /Library/Receipts/ImpulseData.pkg
    /Library/Receipts/ImpulseResponseUtility.pkg
    /Library/Receipts/JamPackXX.pkg
    /Library/Receipts/LogicXX.pkg
    /Library/Receipts/MainStageXX.pkg
    /Library/Receipts/RemixToolsXX.pkg
    /Library/Receipts/RhythmSectionXX.pkg
    /Library/Receipts/SharedLogicStudioHelpFiles.pkg
    /Library/Receipts/SoundtrackProXX.pkg
    /Library/Receipts/UltrabeatXX.pkg
    /Library/Receipts/WaveburnerXX.pkg
    User Preferences:
    ~/Library/Preferences/com.apple.logic.pro.plist
    ~/Library/Preferences/com.apple.logic.pro.cs
    ~/Library/Preferences/Logic/ (Legacy preferences)
    License
    /Library/Application Support/ProApps/Logic Studio System ID
    Apple Loops
    /Library/Audio/Apple Loops/Apple/Apple Loops for GarageBand/
    /Library/Audio/Apple Loops/Apple/Apple Loops for Soundtrack Pro/
    /Library/Audio/Apple Loops/Apple/iLife Sound Effects/
    /Library/Audio/Apple Loops/Apple/Jam Pack 1/
    /Library/Audio/Apple Loops/Apple/Jam Pack Remix Tools/
    /Library/Audio/Apple Loops/Apple/Jam Pack Rhythm Section/
    /Library/Audio/Apple Loops/Apple/Jam Pack Symphony Orchestra/
    /Library/Audio/Apple Loops/Apple/Jam Pack World Music/
    /Library/Audio/Apple Loops Index/
    But what ever i tried, gives no solution . At the end a fail .
    How can i wipe out all the Logic existence from my computer to make new install ?
    Or, what is this problem i am having? As installation is not asking some discs which is necessary for the setup anymore .
    Did anyone experienced that ?
    I will be very happy if someone can assist on me this . Since 5 hours i am trying to setup this thing .
    Thanks a lot

    it is very frustrating to see such an installation problem happening from a "professional" called DAW .
    I am actually a Protools user , and i have never had this type of complications .
    I mean come on, i am just trying to install the thing .
    On a new system, on a new computer and from an original purchase .
    I believe i have enough computer knowledge to instal a simple software .
    But i am spending almost 10 hours since yesterday to install Logic .
    Instead of making designer boxes or giving fancy advertisements, i am inviting Apple Engineers to create proper working software .
    Especially to see a professional audio software like Logic in this epic fall, is very very bad .
    I mean you can say i am problematic and don't know how to instal a simple software, but than please write to google, Logic installation problems , and you will see thousands of issues .
    Whatever i am writing here not against to the people who are replying and want to help , i just want Apple to read this .
    Ah , i am sure Apple won't put attention on it , but doesn't matter .
    You just lost 1 customer for Logic
    I am erasing this thing now from my computer and continue with Protools as the way i was doing .
    Sorry if i am bitter, but this is not acceptable .
    Message was edited by: timbre2010

  • Strange issue with iWeb site, please help

    Hi everyone,
    Until recently, I've been keeping an iWeb blog of my time in India. Nothing too complicated, just stories and photo albums. However, recently something strange has happened, and the website is no longer displaying correctly. It looks fine in iWeb, and when I publish it in a folder and open it locally, everything is fine. However, after uploading it to my hosting provider, it looks like this:
    http://www.egbertopreis.nl/India/
    (screenshot of what it looks like here: http://egbertopreis.nl/website_screenshot.PNG )
    This is a screenshot from iWeb of what it should look like: http://www.egbertopreis.nl/iWeb_screenshot.png
    I'm using the 'darkroom' theme, but as you can see, something is clearly wrong. It is not displaying the menu correctly, the layout looks strange and it isn't loading any of the articles. The other pages are accessible if you navigate there directly, but there you have the same problem.
    It looks like, for some reason, the CSS and javascript elements cannot be loaded, although I have no idea why this might be the case. They are all just static files, and it worked fine until about a week ago.
    Although I'm an IT professional, I have literally no idea what could cause a problem like this. I went with iWeb because I wanted to use an 'easy' solution and not over-engineer something for once
    Usually what I'd do in a situation like this, is just purge the whole site and re-upload it. However, since I'm traveling around, I don't have fast internet access anywhere and the site is now so large that it would take forever to completely re-upload. This is also the reason why I can't troubleshoot it properly myself...
    Any help (or even words of encouragement :-)) whatsoever would be extremely welcome. Thanks in advance!
    Message was edited by: Heliode
    Edit: Forgot to mention what I already tried myself;
    - deleted the HTML and XML files and let iWeb do 'publish changes'. Everything was re-uploadeded, but issue remained.
    - Deleted the 'Scripts' folder on the remote host, and manually re-uploaded from locally published folder. No effect.
    - Tried randomly changing layout items in the hope that any potentially corrupted files might be overwritten after publishing. No effect.

    Hi Roddy, thanks for your reply. It wasn't just me though; a lot of other people from back also reported the same issue. I was also getting the same thing from behind a wired connection. You can still see and experience the issue yourself if you look here.
    I've since 'resolved' the issue by getting a .Mac trial account. A friend helped me move the whole blog over there, where the site works as it is supposed to:
    http://web.me.com/eggmeister/India/
    Therefore the issue has to be with the hosting. Right now I'm suspecting it might be some obscure configuration issue with the hosting company's server. Maybe something like too low a setting for Apache's 'MAX REQUESTS'. This might cause issues with all the javascript going on in the iWeb pages, loading elements back and forth. I'm in contact with the hosting provider, and will let you know what I find. Might be useful for future reference.

  • Strange MIDI error message. Please Help

    I keep getting a strange message when I load logic: “Logic Pro has detected a possible conflict between one or more third party MIDI or audio drivers. Be sure to install the latest drivers for all audio and MIDI equipment connected to your computer, and remove any older or unused drivers”. After a few attempts to get the message to go away, Logic finally loaded. Does anyone have any idea what this is? I’ve searched the forums and can’t seem to find any info. Thanks.

    Did you recently upgrade to Logic Pro 7.2?
    If so, then the reason for the error message is that the latest MIDI and audio drivers of your plug-ins need to be updated before you upgrade Logic.
    Try this... Under the file menu at the top left corner, go to Logic Pro, then down to preferences, and then Start Logic AU manager. You will then get a dialogue box that asks if it is OK to quit the current program and start the AU manager. Click the start AU manager. A screen then pops up showing all of the plug-ins of your system. Logic scans them to validate them. Those in which there is a problem (crashing, etc), indicates likely that the drivers for those AU units need to be updated.
    Once all of them pass validation, then the error message should go away.
    This information was gleaned from one of the tutorials that I watched on VTC.com, the Logic Pro section, and on Martin Sitter' tutorials on MacProvideo.com. I highly recommend the tutorials... they are excellent.
    Hope the above helps.

  • Strange GUI freezing TrayIcon + PopupMenu, please help

    Can anybody help me ?
    I wrote very simple program demostrating some GUI activities (changing JPanel background color and tray icon). The problem is that my program freez when I popup tray icon menu (right click) ! :(
    I checked it on Windows XP and 2000 on Java 6.0 b105 and u1 b03.
    I also tryed popup menu manually via .show() from new thread, but it still blocks my program GUI.
    Can you just copy & paste this program, run it and tell me behaviour on your computer ???? Thank you very much.
    Maby somebody know what I am doing wrong and how to use PopupMenu without blocking other GUI operations ???
    //====================================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class IsTrayIconMenuBlocking3
            public static void main( String[] args ) throws Exception
                    // --- JFrame & JPanel section
                    final JPanel jp = new JPanel();
                    JFrame jf = new JFrame();
                    jf.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
                    jf.add( jp );
                    jf.setSize( 300 , 300 );
                    jf.setVisible( true );
                    // --- menu item action
                    ActionListener itemExitAction = new ActionListener()
                            public void actionPerformed( ActionEvent e )
                                    System.out.println( "item action: exit" );
                                    System.exit( 0 );
                    // --- popup menu
                    PopupMenu pm = new PopupMenu( "Tray Menu" );
                    MenuItem mi = new MenuItem( "Exit" );
                    mi.addActionListener( itemExitAction);
                    pm.add( mi );
                    // --- system tray & tray icon
                    final TrayIcon ti = new
              TrayIcon( ((ImageIcon)UIManager.getIcon("OptionPane.questionIcon")).getImage() ,"Tray Icon" , pm );
                    SystemTray st = SystemTray.getSystemTray();
                    ti.setImageAutoSize( true );
                    st.add( ti );
                    // --- color & icon changing loop
                    final Image[] trayIcons = new Image[3];
                    trayIcons[0] = ((ImageIcon)UIManager.getIcon("OptionPane.errorIcon")).getImage();
                    trayIcons[1] = ((ImageIcon)UIManager.getIcon("OptionPane.warningIcon")).getImage();
                    trayIcons[2] = ((ImageIcon)UIManager.getIcon("OptionPane.informationIcon")).getImage();
                    Runnable colorChanger = new Runnable()
                            private int counter = 0;
                            private int icon_no = 0;
                            public void run()
                                    System.out.println( "Hello from EDT " + counter++ );
                                    if( jp.getBackground() == Color.RED )
                                            jp.setBackground( Color.BLUE );
                                    else
                                            jp.setBackground( Color.RED );
                                    ti.setImage( trayIcons[icon_no++] );
                                    if( icon_no == trayIcons.length ) icon_no = 0;
                    while( true )
                            javax.swing.SwingUtilities.invokeLater( colorChanger);
                            try{Thread.sleep( 500 );} catch ( Exception e ){}
    //==================================== Once again, thanks !!
    Artur Stanek, PL

    Yes. It happens to me too.
    I have tried using SwingWorker but nothing changes.
    It seems to me that PopupMenu blocks the EDT, try
    to put on you test frame a popup, probably when pop-up
    your gui stops to change colors.
    package test;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class IsTrayIconMenuBlocking3
       public static void main(String[] args) throws Exception
          final JPanel jp = new JPanel();
          JFrame jf = new JFrame();
          jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          jf.add(jp);
          jf.setSize(300, 300);
          jf.setVisible(true);
          WorkerTray vTray  = new WorkerTray();
          vTray.execute();
          ColorChanger vColor = new ColorChanger(jp, vTray.get());
          vColor.execute();
    package test;
    import java.awt.Color;
    import java.awt.Image;
    import java.awt.TrayIcon;
    import javax.swing.ImageIcon;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import javax.swing.SwingWorker;
    import javax.swing.UIManager;
    public class ColorChanger extends SwingWorker<Boolean, Void>
       JPanel      jp;
       TrayIcon    ti;
       private int counter   = 0;
       private int icon_no   = 0;
       Image[]     trayIcons = new Image[3];
       public ColorChanger(JPanel aPanel, TrayIcon anIcon)
          jp = aPanel;
          ti = anIcon;
          trayIcons[0] = ((ImageIcon) UIManager.getIcon("OptionPane.errorIcon"))
                .getImage();
          trayIcons[1] = ((ImageIcon) UIManager
                .getIcon("OptionPane.warningIcon")).getImage();
          trayIcons[2] = ((ImageIcon) UIManager
                .getIcon("OptionPane.informationIcon")).getImage();
       @Override
       protected Boolean doInBackground() throws Exception
          boolean vCicle = true;
          while (vCicle)
             System.out.println("Hello from EDT " + counter++);
             if (jp.getBackground() == Color.RED)
                SwingUtilities.invokeLater(new Runnable()
                   public void run()
                      jp.setBackground(Color.BLUE);
             else
                SwingUtilities.invokeLater(new Runnable()
                   public void run()
                      jp.setBackground(Color.RED);
             ti.setImage(trayIcons[icon_no++]);
             if (icon_no == trayIcons.length)
                icon_no = 0;
             Thread.currentThread().sleep(500);
          return new Boolean(true);
    package test;
    import java.awt.MenuItem;
    import java.awt.PopupMenu;
    import java.awt.SystemTray;
    import java.awt.TrayIcon;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.ImageIcon;
    import javax.swing.SwingWorker;
    import javax.swing.UIManager;
    public class WorkerTray extends SwingWorker<TrayIcon, Void>
       TrayIcon wTray;
       public WorkerTray()
       @Override
       protected TrayIcon doInBackground() throws Exception
          PopupMenu pm = new PopupMenu("Tray Menu");
          MenuItem mi = new MenuItem("Exit");
          // mi.addActionListener(itemExitAction);
          pm.add(mi);
          // --- system tray & tray icon
          wTray = new TrayIcon(((ImageIcon) UIManager
                .getIcon("OptionPane.questionIcon")).getImage(), "Tray Icon", pm);
          mi.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent aE)
                      System.out.println("quiquiquiquqi");
                      System.exit(0);
          SystemTray st = SystemTray.getSystemTray();
          wTray.setImageAutoSize(true);
          st.add(wTray);
          return wTray;
    }

  • Strange Error, could not resolve, please help

    Does any body know why would one get this error
    Error: File C:\GenevaSqlj\src\com\wellmanage\csm\handler\OnlineHandler.java does not contain type OnlineHandler as expected. Please adjust the class path so that the file does not appear in the unnamed package.

    The OnlineHandler.java file should have:
    package com.wellmanage.csm.handler;
    as the first line... as it looks to be in that package.

  • Strange thing with GFX 4 (Please help)

    OK. I bought MSI Mobo i875P neo-FIS2R. Then I bought this Gfx: Ti4800SE-VTD8X. It worked great. Then all of a sudden nothing would show up on the screen anymore. I thought that was strange and I tried my old GFX and then it worked again. Then I tried the new GFX in my old PC, and that worked as well.
    But when I put the new GFX on the new MOBO, nothing happens. The PC boots fine, but no picture.
    Any ideas as to what this is?
    Sune.

    I figured it out.
    It was the ram that was the problem. I removed 1 stick and it booted. I turned up the voltage for the ram and put in the other stick again. Works fine. :D
    Sune

  • Strange behavior from my Macbook Please help!

    Hi there:
    3 days ago my MacBook stopped working! but in a weird way.
    When I press the power button the display shows a Grey screen for 1 second and thats it. I can't hear the boot sound anymore . It seems that the CPU fan is not working BUT the hard drive spins! I mean when I press the power button the hard drive turns on and when I hold it for 3 seconds it turns off.
    So here are the facts when I press the power button:
    1-Screen splashes grey for 1 second
    2-Hard drive starts spining
    3-Magsafe shows green light
    and here are the things that doesnt work when I press the power button:
    No sound
    No Superdrive
    No CPU sound
    No battery (when disconnect Magsafe unit wont power up)
    My laptop is still under warranty until November, anyone can identify the symptom? One of my friends told me it could be a fried logic board. But if it was fried nothing should work right?
    I can send signal from keyboard to power on and it powers on/off the hard drive. then something works... I don't know you experts out there help me....
    Thank you so much in advance

    You might try to reset the SMC and/or PRAM.

  • Neither iPod nor iTunes play the music, please help

    Well, i bought a second-hand ipod mini 4 gb in ebay and when i put music on it and i hit the play button it doesn't play! I can see the play icon, but the song "level" doesn't move. And when i use iTunes and i hit play, i have the same problem!It's so strange, isn't it? Please help me, i have already restored it and reinstalled iTunes, don't know what to do...

    The first question to ask is are you using Windows 98 as your profile suggests? That OS does not support the iPods use. You need Windows 2000 (SP4), or XP (SP2).

  • PSE icons instead of the photo. I need to view photos at a glance. Please help me????

    Please help, this is driving me crazy.  I have downloaded my free PSE #9, it came with my Leica Camera.  I cannot view at a glance any of my photos.  There is only an icon that reads, PSE.  To view any of my photos, I must click select and then preview.  This gets old, and I am doing 4 times the work. I am having to use the dates to guess where my photos might be.  I hate this!  My old Photo Shop #5 didn't do this.  When you went to my pictures, you could see every photo.
    I have tried the right click and open as any program.  What ever program I choose, that is the icon that appears.  No photo. Still no good.
    Please help.
    Thanking anyone in advance,
    Leica

    Hi,
    Are you using Windows Explorer to view the files?
    If so, load Explorer, go to the Tools menu and select Folder Options.
    Click on the View tab and make sure the first option (Always show icons, never thumbnails) is not checked.
    Click on OK and see if that is any better.
    Brian

  • I am facing a strange problem on new iphone 5 that I bought last week. The maps app and the places in photo gallery shows the pin and my location, however there is no information of locations. Tried to close the apps, phone restart, reset etc. Please help

    I am facing a strange problem on new iphone 5 that I bought last week. The maps app and the places in photo gallery shows the pin and my location, however there is no information of locations. Tried to close the apps, phone restart, reset etc. I am accessing it via strong wireless connection and it works fine on other devices. Please help.

    zapgrap wrote:
    there is no information of locations.
    Then no information exists.  Use the Report a Problem button within the app to report it.

  • How can I get my Bluetooth to connect? I took it to the apple store in San Francisco and got horrible service and my phone still doesn't work in regards to Bluetooth and glitches ? Please help

    I am very disappointed, I can not connect my Bluetooth to any device (ie. beatpill) and I took it to the store they reset my phone and told me everythibg should work and it turns out that nothing works. Not only the Bluetooth but my phone glitches while in use (ie. It freezes, it'll reset randomly, and the apps freeze or won't close, whrn texting it will close out my messages) things of that nature. Please help because thus far no one else has and it has become a problem for me to use my phone.

    What does the beat pill manual say on how to pair to iphone?
    We have no issue connecting an iphone 4S/5/5S or 6 to it.

  • PSE 7 is frozen with images in it - i dont want to force close and loose them - please help!!

    I load to iphot and transfer to PSE - my computer is very full and PSE has given me nothing but a colorwheel - i dont want to force close and lose what's in there  - please help me!!
    Thanks!!

    well, I can't answer questions about iPhoto, but either the photos are on your hard disk somewhere (in which case you won't lose them), or they are not on your hard disk somewhere (in which case I hope you have made recent backups).
    So which is it? Can you find the photos on your hard disk, or not?

  • Please help--Error message in PSE 7

    When I open PSE 7 I'm getting an error message that says:
    Microsoft Visual C ++ Runtime Library
    Runtime Error Program....Adobe Photoshop, etc
    This application has requested the Runtime to terminate in an unusual way. Please contact the application support team for information.
    and a couple times the message just says Adobe Photoshop has stopped working and must close.
    When I click "okay" the entire program shuts down.
    This started about 10 days ago.  I uninstalled the program and re-installed and it worked okay.  Now today the message is back again.  I've tried unplugging everything, restarting the computer and nothing is working.   I am using Windows Vista.
    Please help.
    Thanks, Doris

    I do not know enough about my computer etc. to
    follow the troubleshooting
    information that you referenced. But  I was able to check my system
    information and everything was okay in that area.  I've been using
    the PSE 7 program for almost a year with no problem until now.  Is there some way that I can talk to
    a "real live" person to get help.   Thank you for taking time to try and help me.  I'm just not computer savvy enough to follow the instructions as given.
    Thanks,Doris

Maybe you are looking for