IMAGE DISSAPPEARS AND SELECTING PROBLEMS.

Hi,
i recently purchased the photoshop Cs6 from a store, the student version.
i have it downloaded on my comptuer and everything's fine however when i start editing a photo, half of the photo actually dissappears like it has been cropped out, so when i save it and reopen it, half my image is removed. Also when i unlock the layer to start editing it, it disappears?
Also when i select a photo it will unselect it straight way.
im not sure if because of my computer or somethings wrong with the photoshop i purchased.
if someone could get back to me asap as i need to start editing things for my art for hsc.
thank you!

okay so it just stuffed up again, the image is appearing but its still being randomly cropped out, ill attach an image, do you think doing what you said before will still help?

Similar Messages

  • Setting up an Image Server and Selecting boot Images

    I am setting up my first image server and when i perform a network boot I can see that i am reaching the DHCP server but i dont i am not getting a boot image.  I have configured the server with an install image and a boot image but still getting nothing. 
    Can someone please help a novice set up this server.

    If this is for ConfigMgr enter the following in your DHCP 
    Option 066 - the FQDN of your SCCM server.
    Option 067 - the path smsboot\x86\wdsnbp.com 
    Cheers
    Paul | sccmentor.wordpress.com

  • Image size and placement problems

    I recently posted my website with iWeb. It shows up well on some computers, but on some computers the image is too large to fit on the screen and (bizarrely) the image sometimes starts halfway down the screen. This seems to happen without regard to browswers -- I have had problems on Firefox, Safari, and Explorer, but have also had it show up fine on all three of those browsers (on different computers).
    I checked that the padding around the image is zero. What else could I change? I understand that the image could appear as a different size on different computers, but I don't understand why the image should show up halfway down the screen on some and on the top (as it should be) on other computers. Thanks!

    The image apparently was added it to the page since it can be clicked on and dragged to the desktop. The image size is 1200 pixels wide by 600 high. You can trim off either side of that image to make is narrower so it will not force the page so wide. If you set the browser's background to the color of the the photo's background, the page background to none and make that photo narrower that will make it fit better.
    Since Apple suggests that a page be 980 for iPhone compatibility trim 110 pixels off the left and right edges of the photo and make sure the photo is placed at the top of the page (remove the navbar and set the header to zero in the Inspector/Page/Layout jpane).

  • Chrome and Safari image alignment and color problems after upgrading to 10.8

    I have just upgraded from lion to mountain lion with a clean install. My website davidandora.com now displays image sliced improperly aligned in chrome and with slightly adjusted colors on some slices in Safari. They appear fine in the same version browsers on Macbook also running the most current mac OS. I suspect this is not a browser problem since there are issues with both browsers, but what could be causing this? I have run all updates on my computer and browsers.
    Checkout this address for a clear example in both browsers:
    http://www.davidandora.com/andoracam/
    and this image for what I am seeing:
    https://www.evernote.com/shard/s16/sh/eb7ce0f4-4735-418d-8793-f867d7e4d642/b7caf 9b1a7e6671b0fd714ac3e98de08

    I will add that the current Firefox is displaying everything correctly. So strange.

  • Difference  between image version and selection

    I am trying to write a script that aperture will execute when I import files.  When I run the script after passing it a selection the script runs perfectly. When I run the script using ImportActionsForVersions which supposedly passes in a list of image versions the script has an issue when I export what I thought is an image version. It seems that there is an issue in the datat type being passed in from aperture vs what I get when I select them myself when I run the code on its own.
    Anyone have any thoughts?

    Frank,
    You actually helped me out a while ago just to get the ImportActionForVersion to work - started small. 
    First let me start with experience - I am just starting out with Applescript, I have written a fair amount of software for numerical analyses over the past 30 years. Startedin FORTRAN and then moved to C.  I am somewhat familiar with OO coding but not nearly as familiar as FORTRAN and C.  Applescript appears to me to be something different as well. Powerful but I have no idea what really goes on inside a program like Aperture.
    I have read and continue to re-read the Aperture Applescript manual, as well as several other Applescript guides, web resources and books.  I suspect that something hasn't yet sunk in that needs to sink in.
    I have not tried the exact example because quite frankly it didn't seem to fit what I wanted to do and I assume it would work just fine, running it wouldn't tell me anyting helpful. Perhaps that is simple minded.  I am guessing that the repeat loop is stepping through individual versions passed in by aperture and the tell block is for each version changing the preset based on the exif tag.
    I am hoping that I can loop through image versions in a similar fashion and then for each image version that has a CRW, CR2 or NEF file suffix I can export the file, convert it into a DNG and then reimport the DNG as master. 
    The code may not yet be complete but that is the intent and it works reasonably well using "on run".  I'd like this to work so it does this automatically in the future.
    So my code is below. Following my code is a sample of the output I am getting in the log file I am writing.
    To test this I import a couple of files from a compact flash card into aperture which then calls this script - as the log files indicate the script runs and the statement immediately before export curImg to exportFolder metadata embedded appears to be the last statement executed. Again when I use essentially the same code in a script that starts with on run and is called after I select a couple of pictures in aperture it runs just fine.
    property p_dngPath : "/Applications/Adobe DNG Converter.app/Contents/MacOS/Adobe DNG Converter"
    property p_dngArgs : " -p1 -c "
    property p_rawSuffices : {"crw", "cr2", "nef", "CRW", "CR2", "NEF"}
    property doLog_importAction : true
    property doLog_checkSetup : false
    property firstLog : true
    -- ------------------------------------------------------- log_event -------------------------------------------------------------------------------
    on importActionForVersions(imageVersionList)
              set tempDir to path to temporary items folder
              set numProc to 0
              set numErr to 0
              set numIgnore to 0
              set numOffline to 0
              set numImage to 0
              set completedFiles to 0
              set theMessage to "Executing importActionForVersion"
      log_event(theMessage, doLog_importAction) of me
              tell application "System Events"
                        set exportFolder to tempDir
                        set theMessage to "exportFolder is " & exportFolder
      log_event(theMessage, doLog_importAction) of me
              end tell
              tell application "Aperture"
                        set numVersions to count of imageVersionList
                        set shouldProceed to checkSetup() of me
                        set theMessage to "-----Starting Convert: " & numVersions & " version(s) passed in and shouldProceed is " & shouldProceed
      log_event(theMessage, doLog_importAction) of me
                        if shouldProceed is true then
                                  set theMessage to "----------If shouldProceed: Beginning evaluation of selected images versions"
      log_event(theMessage, doLog_importAction) of me
                                  repeat with versionReference in imageVersionList
                                            set curImg to contents of versionReference
                                            set numImage to numImage + 1
                                            set theMessage to "---------------Repeat with: Operating on image version " & numImage & " of " & numVersions
      log_event(theMessage, doLog_importAction) of me
                                            set fileName to value of other tag "FileName" of curImg
                                            set theMessage to "---------------Repeat with: The file filename is " & fileName
      log_event(theMessage, doLog_importAction) of me
                                            set curImgonline to online of curImg
                                            set theMessage to "---------------Repeat with: curImg online " & curImgonline
      log_event(theMessage, doLog_importAction) of me
                                            if online of curImg is true then
                                                      set theMessage to "--------------------if online: curImg " & numImage & " of " & numVersions & " is online"
      log_event(theMessage, doLog_importAction) of me
                                                      set theSuffix to (rich text -3 thru -1 of fileName) as string
                                                      set theMessage to "--------------------if online: The file suffix is " & theSuffix
      log_event(theMessage, doLog_importAction) of me
      -- if the suffix identifies files as needing to be converted
                                                      if p_rawSuffices contains theSuffix then
                                                                set theMessage to "--------------------if p_rawSuffices: p_rawSuffices contains theSuffix " & theSuffix
      log_event(theMessage, doLog_importAction) of me
      -- --------------------------------------------------------------------- determine the image's containing Project
                                                                set srcProjPath to value of other tag "MasterLocation" of curImg
                                                                if srcProjPath contains ">" then
                                                                          tell AppleScript
                                                                                    set originalDelimiters to text item delimiters
                                                                                    set the text item delimiters to " > "
                                                                                    set p_list to text items of srcProjPath
                                                                                    set the text item delimiters to originalDelimiters
                                                                                    set srcProjName to (item -1 of p_list)
                                                                          end tell
                                                                else
                                                                          set srcProjName to srcProjPath
                                                                end if
                                                                set theProject to project srcProjName
                                                                set theMessage to "--------------------if p_rawSuffices: Source Project Path is " & srcProjPath & " and the project name is " & srcProjName
      log_event(theMessage, doLog_importAction) of me
                                                                set numProc to numProc + 1
                                                                set theMessage to "--------------------if p_rawSuffices: Number Processed is " & numProc
      log_event(theMessage, doLog_importAction) of me
                                                                set theMessage to "--------------------if p_rawSuffices: tempDir is " & tempDir
      log_event(theMessage, doLog_importAction) of me
                                                                set theMessage to "--------------------if p_rawSuffices: curImg is not empty"
      log_event(theMessage, doLog_importAction) of me
      export curImg to exportFolder metadata embedded
      --naming folders with folder naming policy "Project Name"
                                                                set theMessage to "--------------------if p_rawSuffices: curImg was exported"
      log_event(theMessage, doLog_importAction) of me
      --set theRAWs to export curImg to tempDir
                                                                set theMessage to "--------------------if p_rawSuffices: theRAWS have been set"
      log_event(theMessage, doLog_importAction) of me
                                                                set theRAW to item 1 of theRAWs
                                                                set theMessage to "--------------------if p_rawSuffices: theRaw is " & theRAW & "numProc is " & numProc
      log_event(theMessage, doLog_importAction) of me
                                            --          tell application "Finder" to reveal theRAW
                                            set RAWPOSIX to POSIX path of theRAW
                                            set theMessage to "Convert: RawPOSIX Path is " & RAWPOSIX
                                            log_event(theMessage, doLog_importAction) of me
                                            set s_script to ((quoted form of p_dngPath) & space & p_dngArgs & space & (quoted form of RAWPOSIX)) as string
                                            do shell script (s_script)
                                            set DNGPOSIX to ((rich text 1 thru -4 of (RAWPOSIX as string)) & "dng") as string
                                            set theMessage to "Convert: The DNG POSIX Path is " & DNGPOSIX
                                            log_event(theMessage, doLog_importAction) of me
                                            tell application "Finder"
                                                      set theDNG to (POSIX file DNGPOSIX) as alias
                                                      delete theRAW
                                            end tell
                                            set theNewMasters to import {theDNG} by moving into theProject
                                            set theNewMaster to (item 1 of theNewMasters)
                                            -- ---------------------------------------- Copy annotations from curImg to theNewMaster
                                            repeat with curTag in IPTC tags of curImg
                                                      set tagName to name of curTag
                                                      set tagValue to value of curTag
                                                      tell theNewMaster
                                                                try
                                                                          make new IPTC tag with properties {name:tagName, value:tagValue}
                                                                end try
                                                      end tell
                                            end repeat
                                            repeat with curTag in custom tags of curImg
                                                      set tagName to name of curTag
                                                      set tagValue to value of curTag
                                                      tell theNewMaster
                                                                try
                                                                          make new custom tag with properties {name:tagName, value:tagValue}
                                                                end try
                                                      end tell
                                            end repeat
                                                                set theMessage to "--------------------if p_rawSuffices: Finished processing item " & numProc
      log_event(theMessage, doLog_importAction) of me
                                                      else -- No conversion needed
                                                                set numIgnore to numIgnore + 1
                                                                set theMessage to "--------------------if NOT p_rawSuffices: p_rawSuffices DOES NOT contains theSuffix " & theSuffix & "numIgnore= " & numIgnore
      log_event(theMessage, doLog_importAction) of me
                                                      end if -- if Suffix
                                            else
                                                      set numOffline to numOffline + 1
                                                      set theMessage to "---------------if online: curImg " & numImage & " of " & numVersions & "is OFFLINE numOffline files =" & numOffline
      log_event(theMessage, doLog_importAction) of me
                                            end if -- ---------------------- image is online
                                            set completedFiles to completedFiles + 1
                                            set theMessage to "---------------Repeat with: completedFiles " & completedFiles
      log_event(theMessage, doLog_importAction) of me
                                  end repeat -- imageVersionList
                                  set theMessage to "-----ImportActionsForVersions: Just Finished imageVersionList repeat loop"
      log_event(theMessage, doLog_importAction) of me
                                  set theOut to ("Images selected:    " & numVersions & return)
                                  set theOut to (theOut & "                   Images ignored:     " & numIgnore & return)
                                  set theOut to (theOut & "                   Images processed: " & numProc & return)
                                  set theOut to (theOut & "                   Offline images:       " & numOffline & return)
                                  set theOut to (theOut & "                   Errors:                   " & numErr)
                                  set theMessage to theOut
      log_event(theMessage, doLog_run) of me
      -- display alert "Done!" message theOut
                        else
                                  display alert "Error on setup" message "There was an error with your setup. Please verify that you are running Mac OS X 10.5.2 or later and have the Adobe DNG Converter installed in your Applications folder."
                        end if -- ------------------------- shouldProceed
              end tell
    end importActionForVersions
    -- ------------------------------------------------------- checkSetup -------------------------------------------------------------------------------
    on checkSetup()
              set isOK to true
              set theMessage to "Entered checkSetup"
      log_event(theMessage, doLog_checkSetup)
      -- -------------------------------------- Check Mac OS X's version
              tell application "Finder"
                        set theMessage to "checkSetup-1 tell finder"
      log_event(theMessage, doLog_checkSetup) of me
                        set theVers to (get version)
                        considering numeric strings
                                  if theVers ≥ "10.5.2" then
                                            set isOK to true
                                  else
                                            set isOK to false
                                  end if
                        end considering
              end tell
              set theMessage to "checkSetup-1 theVers is " & theVers
      log_event(theMessage, doLog_checkSetup) of me
      -- -------------------------------------- Check for the DNG converter
              tell application "Finder"
                        set theMessage to "checkSetup: tell Finder"
      log_event(theMessage, doLog_checkSetup) of me
                        try
                                  set theMessage to "checkSetup: tell trying"
      log_event(theMessage, doLog_checkSetup) of me
                                  set theApp to item "Adobe DNG Converter" of folder "Applications" of startup disk
                                  set theMessage to "checkSetup: set theApp"
      log_event(theMessage, doLog_checkSetup) of me
                        on error
                                  set theMessage to "checkSetup: on error"
      log_event(theMessage, doLog_checkSetup) of me
                                  set isOK to false
                                  set theMessage to "checkSetup: set isOK" & isOK
      log_event(theMessage, doLog_checkSetup) of me
                        end try
              end tell
              set theMessage to "checkSetup-on exit isOK is " & isOK
      log_event(theMessage, doLog_checkSetup) of me
              return isOK
    end checkSetup
    -- ------------------------------------------------------- log_event -------------------------------------------------------------------------------
    on log_event(theMessage, yesDo)
              if yesDo then
                        set theLine to (do shell script ¬
                                  "date +'%Y-%m-%d %H:%M:%S'" as string) ¬
                                  & " " & theMessage
                        if firstLog then
                                  do shell script "echo " & quoted form of theLine & "> ~/Library/Logs/Aperture_Convert-events.log"
                                  set firstLog to false
                        else
                                  do shell script "echo " & quoted form of theLine & ">> ~/Library/Logs/Aperture_Convert-events.log"
                        end if
              end if
    end log_event
    -------- LOG FILE
    2012-08-13 20:38:41 Executing importActionForVersion
    2012-08-13 20:38:41 exportFolder is Macintosh HD:private:var:folders:rk:24mylhfd1h7dflbsg90x51100000gn:T:TemporaryItems:
    2012-08-13 20:38:48 -----Starting Convert: 2 version(s) passed in and shouldProceed is true
    2012-08-13 20:38:48 ----------If shouldProceed: Beginning evaluation of selected images versions
    2012-08-13 20:38:48 ---------------Repeat with: Operating on image version 1 of 2
    2012-08-13 20:38:49 ---------------Repeat with: The file filename is IMG_2025.JPG
    2012-08-13 20:38:49 ---------------Repeat with: curImg online true
    2012-08-13 20:38:49 --------------------if online: curImg 1 of 2 is online
    2012-08-13 20:38:49 --------------------if online: The file suffix is JPG
    2012-08-13 20:38:49 --------------------if NOT p_rawSuffices: p_rawSuffices DOES NOT contains theSuffix JPGnumIgnore= 1
    2012-08-13 20:38:49 ---------------Repeat with: completedFiles 1
    2012-08-13 20:38:50 ---------------Repeat with: Operating on image version 2 of 2
    2012-08-13 20:38:50 ---------------Repeat with: The file filename is CRW_2037.CRW
    2012-08-13 20:38:50 ---------------Repeat with: curImg online true
    2012-08-13 20:38:50 --------------------if online: curImg 2 of 2 is online
    2012-08-13 20:38:50 --------------------if online: The file suffix is CRW
    2012-08-13 20:38:50 --------------------if p_rawSuffices: p_rawSuffices contains theSuffix CRW
    2012-08-13 20:38:50 --------------------if p_rawSuffices: Source Project Path is Untitled Project and the project name is Untitled Project
    2012-08-13 20:38:51 --------------------if p_rawSuffices: Number Processed is 1
    2012-08-13 20:38:51 --------------------if p_rawSuffices: tempDir is Macintosh HD:private:var:folders:rk:24mylhfd1h7dflbsg90x51100000gn:T:TemporaryItems:
    2012-08-13 20:38:51 --------------------if p_rawSuffices: curImg is not empty

  • Image size and stacking problem with FF12 even in safe mode. Images are 5x the right size and overlayed on top of other pictures or text. how to fix?

    OK this problems limited to Facebook only. When logged in FF12 the entire page is scrambled. The pictures are stacked over each other and are 5 to 6 times the size their supposed to be. I have tried everything I could think of to fix this it even runs like this when in safe mode. I have uninstalled all plugins and all extensions I have uninstalled and even tried back dating FF. it's still so massively out of proportion that you can't do anything. .even when zoomed out 3x it's so large the pictures are larger than my screen. They are still overlapped so bad you can't do a thing with it. Even worse I uninstalled and installed pale moon and the effects migrated to that browser as well. Only browser I found unaffected by this is IE. Lord knows I don't wanna ever have to go that rout so I'm asking for help. I have a whole list of parsing errors and decoration drops, to many to post. any help would be much appreciated until it's fixed I'm stuck with IE. Chrome wont work with the software I run only IE or FF will.

    -> press '''CTRL''' + '''0''' (zero) to '''Reset''' Zoom
    * For details, see this article -> [[How do I use Zoom?]]
    Check and tell if its working.

  • TWO CRITICAL BUGS: 1) File, "Save Page As" and 2) right-click the picture and select "Save Image As", both do not work at all in Firefox 27, 28, and 29!

    Note: capitals are used only to highlight important words.
    PLEASE, TAKE THESE COMMENTS ON TWO CRITICAL BUGS VERY SERIOUSLY BECAUSE THE BUGS DESCRIBED BELOW ARE SO CRITICAL THAT I CANNOT USE THE LATEST VERSION OF FIREFOX UNLESS THEY DO NOT APPEAR IN THE LATEST VERSION AND THEREFORE I AM FORCED TO REVERT BACK TO FIREFOX 26.
    I have Windows 7 64-bit and Firefox 26. I could not install Firefox 27, 28, and 29 due to the persistent presence of the two critical bugs described below. I have 8 GB of RAM and an Intel quad-core processor and a lot of hard disk space available.
    I installed Firefox 27 and then Firefox 28 a while back and these two bugs described below were still present and now I have just checked again with Firefox 29 by installing it and yet again, these two bugs described below are present!! UNBELIEVABLE THAT THESE TWO CRITICAL BUGS ARE STILL PRESENT IN FIREFOX 29 WHEN I CLEARLY INFORMED YOU ABOUT THEM IN THE HELP, SUBMIT LINK OF FIREFOX!!
    I am forced to revert to Firefox 26!
    First, I use Windows 7 64-bit and I always use Firefox with at least 120 tabs opened. BUT I have 8 GB of RAM, an Intel core i7 quad-core processor and more than 1 TB of hard disk space. Consequently, I do not understand why I would have these two critical bugs.
    With Firefox 26, I also have at least 120 tabs opened when I start Firefox and I do not have the two critical bugs described below, therefore I do not believe that the number of tabs is the reason of the two critical bugs that are present in Firefox 27, 28, and 29.
    ---FIRST CRITICAL BUG:
    When I open ANY web page and do File, "Save Page As", the window that is supposed to open to locate the folder where I want to save this web page does NOT open at all, even if I wait a long time to see if it opens.
    Same problem happened with Firefox 27, 28, and now 29!! When I reverted back to Firefox 26, this problem did NOT happen anymore!
    ---SECOND CRITICAL BUG:
    When I use Google Images, for instance entering model in the search field of Google Images and then pressing enter.
    Then I select any picture, open to a new tab this selected picture, then open a new tab by selecting the option View for this picture. Then right-click the picture and select "Save Image As".
    Again, the window that is supposed to open to locate the folder where I want to save this picture does NOT open at all, even if I wait a long time to see if it opens.
    Same problem happened with Firefox 27, 28, and now 29!! When I reverted back to Firefox 26, this problem did NOT happen anymore!
    ---THESE TWO CRITICAL BUGS DO NOT APPEAR WHEN I USE INTERNET EXPLORER 11.
    I have no idea if you will be able to reproduce these two critical BUGS but I can assure you that they are not present when I use Firefox 26 and they are present when I use Firefox 27, 28, and 29. More, be aware that I have at least 100 tabs opened but I also have this same number of tabs opened in Firefox 26 and yet I do not experience these two critical bugs when I have Firefox 26!
    Once again, these two bugs touch at two vital, critical very basic functions of Firefox and therefore I will NOT be able to use any version above 26 if these two bugs are still present, as they are present in Firefox 27, 28, and now 29!!!
    Please, make it a priority to solve these two critical bugs. Thanks.
    I did read a post related to the same issues “Firefox stops responding when trying to "save page" or "save image" | Firefox Support Forum | Mozilla Support” at https://support.mozilla.org/en-US/questions/991630?esab=a&as=aaq
    I am still reading it again to try to figure out exactly what the person did to make his problems be solved, as the post is not clear at all on what solved the problems!
    In any case, all the suggestions proposed in this post do not work and I surely cannot do a system restore when it is obvious that the two bugs do not appear in Internet Explorer.

    First, I sent an email to the author of PhotoME to inform him of the serious issues his addon caused with Firefox latest versions.
    Now, for those of you who do not have the PhotoME addon and yet experience the same problem that I had and that I described above, I suggest the following strategy.
    As PhotoME did cause these problems with Firefox latest versions, I am pretty covinved other addons probably might cause these problems too. Therefore, adopt the following method.
    Test one addon at a time to see if this particular addon is behind your Firefox issues like the ones I had.
    So, disable one addon only at a time. Then close your Firefox and restart it from scratch and see if you still have your Firefox problems. You must restart the Firefox browser from scratch. If you still have these Firefox problems, re-enable the disabled addon, restart your Firefox (again!) and repeat the same method for every single addon that you have.
    Try to be selective by choosing first addons that are more likely to cause your Firefox problems such as not very well-known or not very popular addons (like it was the case for the PhotoME addon).
    If this method works or if it does not work, report it on this web page so that others can be helped with your comments.
    I hope this method will help you because I was really upset that I had these Firefox problems and I first thought it was the fault of Firefox, only to discover later that this PhotoME addon was the culprit and had caused me such upset.

  • Every time I right click on an image and select Download image Firefox crashes . I have reinstalled; uninstalled and deleted folders and then reinstalled; added

    Every time I right click on an image and select Download image Firefox crashes . I have reinstalled; uninstalled and deleted folders and then reinstalled; added no plugins; checked I can DL the same images in IE-works good.I use Win7 pro and it works in other profiles in Windows 7. I created a new profile in Windows and that worked for about 2 months and now that has gone the same way as my admin profile has done. I deleted the sqlite download file-still same prob..Please help. I use Firefox 13.0.1

    That sounds very frustrating.
    By the way, does it say "Download image" or "Save Image As"? Just checking whether you have an add-on downloader in the mix that might be relevant. If you do have an add-on, try using the built-in command.
    Do you also crash if you save from here:
    right-click page > View Page Info > Media tab > (select image) > Save As
    I assume you have seen this article and tried these things: [[What to do if you can't download or save files]].
    Have you tried the new Reset feature in Firefox 13? This duplicates certain key data from your active settings folder into a new one, bypassing some add-ons and custom settings. Your plugins will still be active, but could be disabled manually if you like.
    More information in this article: [[Reset Firefox – easily fix most problems]].
    If the new settings folder has the same problem, you can switch back if you like using Firefox's Profile Manager.
    Does it make any difference?

  • Because I have taken over 9,999  pics, my phone is now duplicating image numbers. The problem is when I am importing with Image Capture, when I select images, the program is importing BOTH the old images of the same number as well as the new ones. Help?

    Because I have taken over 9,999 images, my phone is now duplicating image numbers. The problem is that Image Capture now imports BOTH images when I select the new ones that share numbers with old ones.  The images were completely mixed when they showed up in Image Capture - Old image 0001, new image 0001, old image 0002, new image 0002 and so forth. I clicked on "date," which then rearraged the images, and I selected only the new ones, but when they actually import to my computer BOTH old and new images are importing. Has anyone figured out how to solve this problem?

    Well, obviously all I needed to do  to solve the problem was to post about it. It has stopped, so all is well!

  • A few selection of websites after fully loading become blank and start an infinite loop of loading. I reinstalled firefox once already and the problem persists. What can I do?

    A few selection of websites after fully loading become blank and start an infinite loop of loading. I reinstalled firefox once already and the problem persists. What can I do?

    Sorry I do not know what the problem may be. <br />
    If no-one comes up with better ideas of what causes this then my questions and suggestions:
    What do you mean by an infinite loop ? <br />
    The page loads and then goes blank. What exactly happens next, does the page fully load and fully display again before going blank, and repeat this cycle endlessly in the same tab.
    You do say the problem persisted in safe-mode and you had looked at the basic troubleshooting article. Buy that you can stop the problem by disabling javascript.
    * did you disable all plugins - and did you still get the problem then ?
    As you mention disabling javascript stops the problem, have you tried with<br /> Java script enabled but
    * block popups ON
    * load images automatically OFF
    * advanced options - ALL OFF<br /> What happens do you get the problem then or not.
    While on this firefox site if I look at the error console Ctrl+Sift+J or Tools -> Error console If I clear the console content and reload the webpage the error console shows only a couple of messages. YouTube home page give a lot of yellow triangle warnings about 200, but no red warnings, do you get red warnings.
    You could also try on the problem sites eg YouTube changing the permissions with tools -> Page Info | Permissions
    Did you try the Basic Troubeshooting suggestion of making a new profile. (Heeding the warning not to delete settings, otherwise you loose all bookmarks etc) did that help ?

  • Bounding box and selection tool problems (CS5.5 Illustrator OSX)

    When I select objects by dragging arrow tool (i.e. logos, headlines, etc.) I often have a problem that other objects are also selected (images, things that are not visible or not actually there) and I can't unselect them easily to get just my selection of objects and be able to resize them by dragging corners. It's like you have to scale everything including the weird extra invisible items across the page somewhere. Sometimes if it's an image that gets selected in addition I can click on and off it to get just my selected objects. And then sometimes the bounding box does not work at all and I can't resize my selected objects by dragging the corners (scale tool works though). Showing and hiding bounding box from drop down menu does nothing. This seems random but happens all the time. It also happened in CS5 on a different Mac computer. Anybody run into this? I know other designers in the office have experienced this. Is there a weird selection preference I need to set? Should I try resetting preferences? Could it be Ram issues? (Sometimes have Illustrator, Photoshop, and InDesign open all at once)
    I've just been dealing with it up to this point but I am really ready for a fix for this issue. It seems buggy.

    Pam,
    You may try to move the folder, following the first hint here: http://www.bugge.com/Family-and-friends/Illy/illy.html

  • Problem winth drag and selection on textfields (Possible BUG?)

    Hello
    I've been trying to eneble draging of images and selections on RichTextEditor to make them more interactive. I've been successfull at doing this and it wasn´t that hard to make once you learn the right functions on textfields. But, my current problem is that when I start a drag operation from a text field and then I make the drop on the same textField some mouse events seem not to be reaching the selection control of the textfield.
    What happens is that once the drag operation is over, the textfield behaves as if the mouse is still pressed, marking a text selection. This behavior tends to finish once you click the mouse.
    I was wondering if this is a bug on the TextField or if I have to have some extra considerations when draging on a text field.
    Thanks.
    Sebastian

    OK it seems that it's actually a bug, but I was able to narrow it down a bit.
    When you change the state of the textfield from selectable = true to selectable = false while a selection n the textfield is been made, then when you set selectable back to true, the textfield continue to make a selection even though the mouse is no longer down. This is more likely a problem with the textField form flash than a problem with flex.

  • Iphoto gives message "no images were selected" when hit print button.  Yet the the images are clearly selected in the print window.  I've printed hundreds of images without a problem before.  Iphoto 6.0.6, MAC 10.5.8

    Iphoto gives message "no images were selected" when hit print button.  Yet the the images are clearly selected in the print window.  I've printed hundreds of images without a problem before.  Iphoto 6.0.6, MAC 10.5.8, Suggestions?

    I have recently started having this problem in PSE8. The Adobe workaround
    did work, but I don't fancy having to re register each time I use it.
    What I have discovered is that it's nothing to do with the image metadata as it occurs before any image is opened.
    It SEEMS to only occur if you use file/open with to open an image in the editor - IE start PSE with that command.
    If you close elements down, and start it using programs/PSE/Elements (or your desktop shortcut) - the panorama feature magically works.
    Each time I've opened the editor 'automatically' using image/open with, it seems to create the problem.
    Hope this helps

  • Problem with focus and selecting text in jtextfield

    I have problem with jtexfield. I know that solution will be very simple but I can't figure it out.
    This is simplified version of situation:
    I have a jframe, jtextfield and jbutton. User can put numbers (0-10000) separated with commas to textfield and save those numbers by pressing jbutton.
    When jbutton is pressed I have a validator which checks that jtextfield contains only numbers and commas. If validator sees that there are invalid characters, a messagebox is launched which tells to user whats wrong.
    Now comes the tricky part.
    When user presses ok from messagebox, jtextfield should select the character which validator said was invalid so that user can replace it by pressing a number or comma.
    I have the invalid character, but how can you get the focus to jtextfield and select only the character which was invalid?
    I tried requestFocus(), but it selected whole text in jtextfield and after that command I couldn't set selected text. I tried with commands setSelectionStart(int), setSelectionEnd(int) and select(int,int).
    Then I tried to use Caret and select text with that. It selected the character I wanted, but the focus wasn't really there because it didn't have keyFocus (or something like that).
    Is there a simple way of doing this?

    textField.requestFocusInWindow();
    textField.select(...);The above should work, although read the API on the select(...) method for the newer recommended approach on how to do selection.
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)",
    see http://homepage1.nifty.com/algafield/sscce.html,
    that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    Don't forget to use the "Code Formatting Tags",
    see http://forum.java.sun.com/help.jspa?sec=formatting,
    so the posted code retains its original formatting.

  • Hi I have been having a problem with Bridge in CS4 recently. So uninstalled CS4 and Lightroom 4.4 and reinstalled them on my Desktop PC. When I turned on Bridge through CS4, My thumb nail images disappeared and a thumb nail icon with CR2 appeared. Now som

    Hi I have been having a problem with Bridge in CS4 recently. So uninstalled CS4 and Lightroom 4.4 and reinstalled them on my Desktop PC. When I turned on Bridge through CS4, My thumb nail images disappeared and a thumb nail icon with CR2 appeared. Now some of my images have disappeared from Light room 4.4, but I can find them in CS4 and Bridge now shows some thumb nails as images and some as an icon with CR2. I have spent two weeks going through preferences etc. to find how to resolve my problem. Please can you Help? Meany thanks in advance
      Derek Randall

    I don't use LR and rarely use the bridge so I can not answers about thumbnails in them,  However thumbnails in windows file explorer and windows dialog for CS2 files will only show if you have installed codec into windows that will produce them. Windows does not do CR2 thumbnails on its own. I use FastPictureViewer Codec package for RAW File and PSD files thunbmail support.

Maybe you are looking for

  • How do you relink video from low res to high res and keep audio synced?

    Hello, I'm trying an offline to online workflow but my synced audio from my offline clips are not transfering to my online clips. Anyone have a solution?

  • Reg:ABAP Query

    Hi,      my requirement is to create a screen layout like VA05 and add the extra radiobutton for that and print the values corresponding to that radiobutton .. how we can write the code in SQ02 i am not that much familiar in ABAP Query can any help m

  • ASO cube Migration Steps from Backend

    Hi Gurus, What would be the Essbase ASO cube migration steps from the Backend. Edited by: Hkag on 18-Apr-2013 04:11

  • File Reporter Save Report Error

    when trying to save a detailed report i receive the error: Click 'Start' to start the report. Starting report all sequence. Opening report socket: IP Address - 10.2.2.1 Port - 4260 Exception: Could not open listener on port 4260: The requested addres

  • What version flash player i have and what version to download

    i have an asus eee pc 900 and can't do certain things because i have not downloaded the latest version of adobe flash player i want to also find out what version i do have - want to know how to obtain that info also - i do not know what version flash