Problem with existing script, can't get text of item

I'm taking an earlier script and condensing it so that it will only work from one SELECTED folder. I thought it would be simple but i seam to be running into a few issues
This is the error I get
Result:
error "Can’t get last text item of alias \"Images:2012-2013:WK21:Freedom:Freedom_WK21_PSD:\"." number -1728 from last text item of alias "Images:2012-2013:WK21:Freedom:Freedom_WK21_PSD:"
property type_list : {"8BPS"}
property extension_list : {"psd"}
script o
          property theseNames : {}
end script
-- empty log file
do shell script "echo  'Files not processed in Photoshop :'  > ~/Desktop/LogPhotoshopError.txt"
set noError to true
--at the beginning of the script, ask whether to replace or skip existing files? to apply to all?
--use the result for the if file exists?
display dialog "Should I replace or skip exisiting files?" buttons {"Replace", "Skip (Faster)"} default button 2 with icon 1
set skipFiles to (button returned of the result) is "Skip (Faster)"
--Below is what I removed
--set dtF to paragraphs of (do shell script "ls -F ~/Desktop | grep '/' | cut -d'/' -f1")
--set tc to (count dtF)
--repeat with i from 1 to tc
--          set folderName to item i of dtF --<:  is the folder name, no need to use text item delimiters -->":"
--          if folderName does not start with "2_" and folderName does not start with "Hot" and folderName does not start with "Press" and folderName does --not start with "Design" and folderName does not start with "Keywords" and folderName does not start with "Season" and folderName does not
--start with "Sue" and folderName does not start with "Design" then
--Setup list of folders and process details of folders
tell application "Finder" to set folderName to (choose folder with prompt "Select Folder")
set {oldTID, my text item delimiters} to {my text item delimiters, "_WK"}
set FolderEndName to last text item of folderName
set brandName to first text item of folderName
set my text item delimiters to "_PSD"
set weekNumber to first text item of FolderEndName
set my text item delimiters to oldTID
set theFolder to ("Hal 9000:Users:matthew:Desktop:" & folderName)
--set up names to destination folders and create locally based on brand name and week number
set this_local_folder to "Images:2012-2013"
set localWeekFolder to my getFolderPath("WK" & weekNumber, this_local_folder)
set localBrandFolder to my getFolderPath(brandName, localWeekFolder)
set localBrandFolder_Low_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", localBrandFolder)
set localBrandFolder_High_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", localBrandFolder)
set localBrandFolder_PSD to my getFolderPath(brandName & "_WK" & weekNumber & "_PSD", localBrandFolder)
set this_Network_folder to "DCKGEN:Brands:Zoom:Brand - Zoom:Upload Photos:2013:"
set networkWeekFolder to my getFolderPath("Week" & weekNumber, this_Network_folder)
set networkBrandFolder_Low_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", networkWeekFolder)
set website_images to "DCKGEN:Website_Images:"
--set up names to destination folders and create over Netwrok for FTP collection (based on a mounted drive)
set this_ftp_folder to "Impulse:"
set ftpWeekFolder to my getFolderPath("Week" & weekNumber, this_ftp_folder)
set ftpBrandFolder to my getFolderPath(brandName, ftpWeekFolder)
set ftpBrandFolder_Low_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", ftpBrandFolder)
set ftpBrandFolder_High_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", ftpBrandFolder)
--taking the folder identify which process it must follow.  F R E E D O M   W I T H  P N G
if brandName is equal to "Freedom" then
          try
                    tell application "Finder" to set o's theseNames to (name of files of alias theFolder whose file type is in the type_list or name extension is in the extension_list)
          on error
                    set o's theseNames to {} -- no psd files or "8BPS"
          end try
          set numOfNames to (count o's theseNames)
          repeat with j from 1 to numOfNames
                    set thefile to theFolder & ":" & (item j of o's theseNames)
  --    F R E E D O M     Folder Photoshop Process W I T H  P N G
                    set thisName to (item j of o's theseNames)
                    tell application "Finder"
                              set t_ext to name extension of file thefile
                              if t_ext is not "" then set thisName to text 1 thru -((count t_ext) + 2) of thisName
                              set b to exists file (localBrandFolder_PSD & thisName & ".psd")
                    end tell
                    if not b or (b and not skipFiles) then -- not exists file or file exists and "replace" (continue the rest of the script).
                              tell application "Adobe Photoshop CS5.1"
  -- I remove the command activate, Photoshop stay in background
                                        set ruler units of settings to pixel units
                                        try
  open (alias thefile) showing dialogs never
                                                  set origName to name of current document
                                                  set myOptions to {class:JPEG save options, quality:12}
                                                  set myPNGOptions to {class:PNG save options, interlaced:false}
                                                  set myPSDOptions to {class:Photoshop save options, embed color profile:true, save layers:true}
                                                  tell current document
  --If the quick mask mode has been left on then delete the channel Quick Mask
                                                            if (quick mask mode) then delete channel ¬
                                                                      "Quick Mask"
  --If the Layer is incorrectly labeled with Original Layer it needs renaming to original Image
                                                            if (exists layer "Original Layer") then ¬
                                                                      tell layer "Original Layer" to set name to "Original Image"
  save in (localBrandFolder_PSD & origName) as Photoshop format with options myPSDOptions without copying
                                                            (delete layer "Original Image") flatten
  resize image resolution 300 resample method none
  --sharpen image
  filter current layer using unsharp mask with options {amount:80, radius:3.2, threshold:0}
  save in (ftpBrandFolder_High_Res & name) as JPEG with options myOptions without copying
  --Prepare for Low RES by resetting image history
                                                            set current history state to history state 3
  delete current layer
  merge visible layers
                                                            resize image width 1020
  resize image resolution 300 resample method none
  filter current layer using unsharp mask with options {amount:80, radius:3.2, threshold:0}
  --add save to lowResFolder with same options
  save in (networkBrandFolder_Low_Res & name) as PNG with options myPNGOptions without copying
  flatten
  save in (networkBrandFolder_Low_Res & name) as JPEG with options myOptions without copying
                                                            set newFile to file path
                                                            set newFile2 to newFile as string -- for testing end of name
                                                            if newFile2 ends with "_2.jpg" or newFile2 ends with "_3.jpg" or newFile2 ends with "_4.jpg" or newFile2 ends with "_5.jpg" or newFile2 ends with "_6.jpg" or newFile2 ends with "_7.jpg" or newFile2 ends with "_8.jpg" or newFile2 ends with "_9.jpg" or newFile2 ends with "_10.jpg" or newFile2 ends with "11.jpg" then -- exclude website_images
                                                                      my duplicateFile(newFile, {ftpBrandFolder_Low_Res})
                                                            else
                                                                      save in (website_images & name) as JPEG with options myOptions without copying
                                                            end if
  close saving no
                                                  end tell
                                        on error
                                                  set noError to false
                                                  my myLogs(thefile) -- write path to log file in Desktop
                                                  try
  close saving no --if exists, close current document
                                                  end try
                                        end try
                              end tell
                    end if
          end repeat
  --End F R E E D O M  W I T H  P N G
end if
if not noError then do shell script "/usr/bin/open  ~/Desktop/LogPhotoshopError.txt'"
on myLogs(t)
          try
                    do shell script "echo " & (quoted form of t) & ">> ~/Desktop/LogPhotoshopError.txt'"
          end try
end myLogs
on duplicateFile(tFile, foldersPath) -- tFile is an alias, foldersPath is a list of folder
          tell application "Finder" to repeat with folderPath in foldersPath
                    with timeout of 200 seconds -- adjust it,  error if the copy  is longer that 200 seconds
  duplicate tFile to folder folderPath with replacing
                    end timeout
          end repeat
end duplicateFile
on getFolderPath(tName, folderPath)
          tell application "Finder" to tell folder folderPath
                    if not (exists folder tName) then
                              return (make new folder at it with properties {name:tName}) as string
                    else
                              return (folder tName) as string
                    end if
          end tell
end getFolderPath
tell application "Finder"
          open "Hal 9000:Users:matthew:Desktop:LogPhotoshopError.txt"
end tell

I'm getting close or at least I hope this is how it looks now, but appears not pick up the files in the folder?
The result
          exists folder "Freedom_WK20_HR" of folder "impulse:Week20:Freedom:"
          get folder "Freedom_WK20_HR" of folder "impulse:Week20:Freedom:"
          get name of every file of alias (alias "Images:2012-2013:WK20:Freedom:Freedom_WK20_PSD:") whose {"8BPS"} contains file type or {"psd"} contains name extension
          open "Hal 9000:Users:matthew:Desktop:LogPhotoshopError.txt"
end tell
--------------------MAIN SCRIPT BELOW__------------------
property type_list : {"8BPS"}
property extension_list : {"psd"}
script o
          property theseNames : {}
end script
-- empty log file
do shell script "echo  'Files not processed in Photoshop :'  > ~/Desktop/LogPhotoshopError.txt"
set noError to true
--at the beginning of the script, ask whether to replace or skip existing files? to apply to all?
--use the result for the if file exists?
display dialog "Should I replace or skip exisiting files?" buttons {"Replace", "Skip (Faster)"} default button 2 with icon 1
set skipFiles to (button returned of the result) is "Skip (Faster)"
--Setup list of folders and process details of folders
tell application "Finder"
          set theFolder to (choose folder with prompt "Select Folder")
          set folderName to name of theFolder
          set {oldTID, my text item delimiters} to {my text item delimiters, "_WK"}
          set FolderEndName to last text item of folderName
          set brandName to first text item of folderName
          set my text item delimiters to "_PSD"
          set weekNumber to first text item of FolderEndName
          set my text item delimiters to oldTID
  --set up names to destination folders and create locally based on brand name and week number
          set this_local_folder to "Images:2012-2013"
          set localWeekFolder to my getFolderPath("WK" & weekNumber, this_local_folder)
          set localBrandFolder to my getFolderPath(brandName, localWeekFolder)
          set localBrandFolder_PSD to my getFolderPath(brandName & "_WK" & weekNumber & "_PSD", localBrandFolder)
          set this_Network_folder to "DCKGEN:Brands:Zoom:Brand - Zoom:Upload Photos:2013:"
          set networkWeekFolder to my getFolderPath("Week" & weekNumber, this_Network_folder)
          set networkBrandFolder_Low_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", networkWeekFolder)
          set website_images to "DCKGEN:Website_Images:"
  --set up names to destination folders and create over Netwrok for FTP collection (based on a mounted drive)
          set this_ftp_folder to "Impulse:"
          set ftpWeekFolder to my getFolderPath("Week" & weekNumber, this_ftp_folder)
          set ftpBrandFolder to my getFolderPath(brandName, ftpWeekFolder)
          set ftpBrandFolder_Low_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", ftpBrandFolder)
          set ftpBrandFolder_High_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", ftpBrandFolder)
  --taking the folder identify which process it must follow.
          if brandName is equal to "BHS" then
                    try
                              tell application "Finder" to set o's theseNames to (name of files of alias theFolder whose file type is in the type_list or name extension is in the extension_list)
                    on error
                              set o's theseNames to {} -- no psd files or "8BPS"
                    end try
                    set numOfNames to (count o's theseNames)
                    repeat with j from 1 to numOfNames
                              set thefile to theFolder & ":" & (item j of o's theseNames)
  --    B H S    Folder Photoshop Process
                              set thisName to (item j of o's theseNames)
                              tell application "Finder"
                                        set t_ext to name extension of file thefile
                                        if t_ext is not "" then set thisName to text 1 thru -((count t_ext) + 2) of thisName
                                        set b to exists file (localBrandFolder_PSD & thisName & ".psd")
                              end tell
                              if not b or (b and not skipFiles) then -- not exists file or file exists and "replace" (continue the rest of the script).
                                        tell application "Adobe Photoshop CS5.1"
  -- I remove the command activate, Photoshop stay in background
                                                  set ruler units of settings to pixel units
                                                  try
  open (alias thefile) showing dialogs never
                                                            set origName to name of current document
                                                            set myOptions to {class:JPEG save options, quality:12}
                                                            set myPSDOptions to {class:Photoshop save options, embed color profile:true, save layers:true}
                                                            tell current document
  --If the quick mask mode has been left on then delete the channel Quick Mask
                                                                      if (quick mask mode) then delete channel ¬
                                                                                "Quick Mask"
  --If the Layer is incorrectly labeled with Original Layer it needs renaming to original Image
                                                                      if (exists layer "Original Layer") then ¬
                                                                                tell layer "Original Layer" to set name to "Original Image"
  save in (localBrandFolder_PSD & origName) as Photoshop format with options myPSDOptions without copying
                                                                      (delete layer "Original Image") flatten
  resize image resolution 300 resample method none
  --sharpen image
  filter current layer using unsharp mask with options {amount:80, radius:3.2, threshold:0}
  save in (ftpBrandFolder_High_Res & name) as JPEG with options myOptions without copying
  --Prepare for Low RES by resetting image history
                                                                      set current history state to history state 3
                                                                      flatten
                                                                      resize image width 1348
  resize image resolution 300 resample method none
  filter current layer using unsharp mask with options {amount:80, radius:3.2, threshold:0}
  --add save to lowResFolder with same options
  save in (networkBrandFolder_Low_Res & name) as JPEG with options myOptions without copying
                                                                      set newFile to file path
                                                                      set newFile2 to newFile as string -- for testing end of name
                                                                      if newFile2 ends with "_2.jpg" or newFile2 ends with "_3.jpg" or newFile2 ends with "_4.jpg" or newFile2 ends with "_5.jpg" or newFile2 ends with "_6.jpg" or newFile2 ends with "_7.jpg" or newFile2 ends with "_8.jpg" or newFile2 ends with "_9.jpg" or newFile2 ends with "_10.jpg" or newFile2 ends with "11.jpg" then -- exclude website_images
                                                                                my duplicateFile(newFile, {ftpBrandFolder_Low_Res})
                                                                      else
                                                                                my duplicateFile(newFile, {ftpBrandFolder_Low_Res, website_images})
                                                                      end if
  close saving no
                                                            end tell
                                                  on error
                                                            set noError to false
                                                            my myLogs(thefile) -- write path to log file in Desktop
                                                            try
  close saving no --if exists, close current document
                                                            end try
                                                  end try
                                        end tell
                              end if
                    end repeat
  --End BHS
  --taking the folder identify which process it must follow. B U R T O N
          else if brandName is equal to "Burton" then
                    try
                              tell application "Finder" to set o's theseNames to (name of files of alias theFolder whose file type is in the type_list or name extension is in the extension_list)
                    on error
                              set o's theseNames to {} -- no psd files or "8BPS"
                    end try
                    set numOfNames to (count o's theseNames)
                    repeat with j from 1 to numOfNames
                              set thefile to theFolder & ":" & (item j of o's theseNames)
  --    B U R T O N    Folder Photoshop Process
                              set thisName to (item j of o's theseNames)
                              tell application "Finder"
                                        set t_ext to name extension of file thefile
                                        if t_ext is not "" then set thisName to text 1 thru -((count t_ext) + 2) of thisName
                                        set b to exists file (localBrandFolder_PSD & thisName & ".psd")
                              end tell
                              if not b or (b and not skipFiles) then -- not exists file or file exists and "replace" (continue the rest of the script).
                                        tell application "Adobe Photoshop CS5.1"
  -- I remove the command activate, Photoshop stay in background
                                                  set ruler units of settings to pixel units
                                                  try
  open (alias thefile) showing dialogs never
                                                            set origName to name of current document
                                                            set myOptions to {class:JPEG save options, quality:12}
                                                            set myPSDOptions to {class:Photoshop save options, embed color profile:true, save layers:true}
                                                            tell current document
  --If the quick mask mode has been left on then delete the channel Quick Mask
                                                                      if (quick mask mode) then delete channel ¬
                                                                                "Quick Mask"
  --If the Layer is incorrectly labeled with Original Layer it needs renaming to original Image
                                                                      if (exists layer "Original Layer") then ¬
                                                                                tell layer "Original Layer" to set name to "Original Image"
  save in (localBrandFolder_PSD & origName) as Photoshop format with options myPSDOptions without copying
                                                                      (delete layer "Original Image") flatten
  resize image resolution 300 resample method none
  --sharpen image
  filter current layer using unsharp mask with options {amount:80, radius:3.2, threshold:0}
  save in (ftpBrandFolder_High_Res & name) as JPEG with options myOptions without copying
  --Prepare for Low RES by resetting image history
                                                                      set current history state to history state 3
                                                                      flatten
                                                                      resize image width 1020
  resize image resolution 300 resample method none
  filter current layer using unsharp mask with options {amount:80, radius:3.2, threshold:0}
  --add save to lowResFolder with same options
  save in (networkBrandFolder_Low_Res & name) as JPEG with options myOptions without copying
                                                                      set newFile to file path
                                                                      set newFile2 to newFile as string -- for testing end of name
                                                                      if newFile2 ends with "_2.jpg" or newFile2 ends with "_3.jpg" or newFile2 ends with "_4.jpg" or newFile2 ends with "_5.jpg" or newFile2 ends with "_6.jpg" or newFile2 ends with "_7.jpg" or newFile2 ends with "_8.jpg" or newFile2 ends with "_9.jpg" or newFile2 ends with "_10.jpg" or newFile2 ends with "11.jpg" then -- exclude website_images
                                                                                my duplicateFile(newFile, {ftpBrandFolder_Low_Res})
                                                                      else
                                                                                my duplicateFile(newFile, {ftpBrandFolder_Low_Res, website_images})
                                                                      end if
  close saving no
                                                            end tell
                                                  on error
                                                            set noError to

Similar Messages

  • Problem with action script 3 make input text box and button....

    Hi every one I am trying to make a family book using "Air for Android" with a simple search engin in the book
    air for android only work with AS3,
    the search function is to type a person's name and hit submit then go to a specific frame.
    have a problem making below code to work in AS3 and hopefully one of you guys can lead me in the right direction to fix the issue.
    Currently, I have an input text box and a button. When you type specific words into the input box and then hit the button it sends you to a specific frame.
    (it work find in AS2 but not in AS3,)
    Here is my current code that is placed on the main timeline, first frame:
    stop();
    onEnterFrame = function () {
        submit.onRelease = function() {
            switch (yourname.text) {
            case "name1" :
                gotoAndStop(2);
                break;
            case "name2" :
                gotoAndStop(3);
                break;
    My button that checks if the phrase is correct is called "submit" and my input box has an instance of "yourname".
    My phrases that will be accepted in the input box are "name1" and "name2" which bring me to two different frames.
    Basically, I'm having a problem with making this to work with AS3.

    you should use the default option in the switch statement
    that way yourname contains something not in one of the case statements it will go to the default bit and execute teh code there
    function onSubmit(e:MouseEvent):void
                                  switch (yourname.text)
                                            case "name1":
                                                      gotoAndStop(2);
                                                      break;
                                            case "name2":
                                                      gotoAndStop(3);
                                                      break;
                                            default:
                                                      goToAndStop(you frame you want);
                                            break;

  • I can't get text messages through ford sync on my 2013 explorer with my new iphone5

    I Can't get text messages in my 2013 explorer through ford sync, is this an iphone5 problem or a Ford problem?

    Mike Osborn wrote:
    Bmg, have you actually got an iPhone sending text messages to Ford's Sync system, or are you simply guessing that a Sync update will do it?
    I do infact have one done through Sync with a 4S, AND a 3GS.... In a Ford.  When iOS was released, both phones were updated and would no longer connect... Looked here for an answer and couldn't find one.  A week later, the car was taken to Ford for an oil change and they did a software update for the GPS and operation of the system, and that update fixed the Sync issue.  As soon as we started the car, both phones were able to connect.

  • Problem with non iPhone users receiving my text sent pictures. Can I make them smaller files?

    Problem with non iPhone users receiving my text sent pictures.  Can I make them smaller files? I know that is possible for email sent pics.

    My bad,  It was a Verizon problem.  When they upgraded my phone they were supposed to remove all blocks on messaging . Found out they did not do this.  All messaging now works.  Thanks for listening.

  • I can't get text-to-speech to work in Mountain Lion

    I am running a MacBook Pro Retina with mountain lion and I can't get text-to-speech to work. I have selected the text and pressed the key to initiate it, but it just doesn't start to talk.

    (cross-posting from another thread)
    I'm having the same problem. It's as if my iPhone and MacBook Pro now have two separate calendars.
    Basically, I have a MacBook Pro (Mountain Lion, 13", late 2011) that I sync via USB with an iPhone 4S (iOS 5.1.1). Before upgrading to Mountain Lion, all of my iCal events would sync flawlessly. But none of the events I've created in iCal (Calendars) since upgrading have synced to the iPhone. Likewise, no new events that I create on the iPhone Calendar will sync to iCal. Also, changes to an existing event (even one created before upgrading to Mountain Lion) don't get synced either.
    Everything else seems to be syncing just fine though (music, apps, contacts, etc).

  • Problem with a script to remove graphics

    Hello,
    I have tried to build a javascript to remove all graphics whose extension is not ".EPS" (with "EPS" really in upper cases, as it is for Mathtype equations in Word import).
    But It doesn't work and I can't understand why.
    Here is the script:
    //The script intend to remove all graphics whose extension is not ".EPS"
    var myDoc = app.activeDocument;
    var myGraphics = myDoc.allGraphics
    //Remove graphic if graphic extension is different from ".EPS"
    for (var p = 0; p < myGraphics.length; p++) {
        var myImage = myGraphics[p]
        if (CheckExtEps(myImage) != 0){
        myImage.remove ()
    //Compare graphic extension with ".EPS" and return myExtValue = 0 if it matches exactly
    function CheckExtEps(myImage) {
        var  myString = myImage.name
        myExt = myString.substr(myString.lastIndexOf( "." ))
        myExtValue = myExt.localeCompare(".EPS")
        return myExtValue
    When I run this script, ALL the graphics are removed, ".EPS" included.
    I do have ".EPS" graphics in my document and I expected them not to be removed.
    So there is something wrong somewhere, but I don't know what to change.
    Any ideas?
    By the way, I have a more generic question as a beginner:
    I am working with ExtendScript Toolkit. How can I do to check my script step by step?
    For exemple, how can I display my variables values as "myString", "myExt", "myExtValue" at each step?
    Actually, this script is a step for a bigger script I intend to build to deal with Mathtype equations in Word import.
    After not-EPS graphics beeing removed, I wish to relink all remaining equation prewiews to eps in a selected folder, by consecutive order.
    But this is a big piece of scripting to swallow for me, so I'm working slowly, step by step.
    TIA
    Best regards
    Nicolas

    Hello Ariel
    Thank you very much for your help.
    1. I added semicolons at the end of lines, but the script result is the same.
    2. Running line by line, I could see in the Console where is the problem:
    variable "myString" is always undefined.
    Well, I have to get more inside my script...
    Thank's again
    Best regards
    Nicolas
    Nicolas BALBO  
    [email protected]
    22, rue d'Hauteville  75010 PARIS
    Tel : 33 (0)1 42 57 14 31
    Le 18 avr. 2012 à 17:36, Arïel a écrit :
    Re: Problem with a script to remove graphics
    created by Arïel in InDesign Scripting - View the full discussion
    Well, I can't see any semicolons in your script. Maybe that's just the
    email interface, but there should be semicolons at the ends of lines.
    In the ESTK, you can step through a script a line at a time. Just click
    on the downwards pointing arrow instead of the "play" arrow. Each time
    you click, the script will advance one line. In the Console window
    (Windw>Console) you can then type the name of the variable you wish to
    examine.
    Ariel
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4344039#4344039
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4344039#4344039. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in InDesign Scripting by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • All the sudden I can't get text form my daughters phone (I phone) she can get mine. Her phone no longer shows as an iPhone when I text her.

    I all the sudden can't get text form my daughter. She can get mine . When I text her it no longer comes up in blue like iPhone to iPhone does.

    I just had this issue today with a company phone and it was fixed by a reset: Hold down the home button along with the sleep/wake button until you see the apple, then let go.

  • HP 8500 printer will not print fast on firefox, but does on Safari. HP support says it is a problem with firefox. Can you help me out?

    Question
    HP 8500 printer will not print fast on firefox, but does on Safari. HP support says it is a problem with firefox. Can you help me out? edit

    Thank you for posting your list of installed Extensions. One of them might be intercepting the menu command. Since you have the Add-on Compatibility Reporter, it's possible that an older add-on that doesn't actually work well with Firefox 5 could be to blame. Could you try disabling the "HP Smart Web Printing" extension and see whether that makes any difference?
    Also, you can simulate a print button on a web site by pasting this to the location bar and pressing Enter. You also can save it as a bookmark for easier access (when scripts are saved as bookmarks, we call them bookmarklets). Hopefully you won't need it for long.
    <br>javascript:void(window.print());

  • Little execution problem with the script

    declare
    i number(1):=1;
    name varchar2(10);
    id number(2);
    begin
    loop
    id:=&id;
    name:='&name';
    insert into emp values(id,name);
    i:=i+1;
    exit when id<=5;
    end loop;
    end;
    When i tried to execute the script, it is going through the loop only once..What the problem with this script...Can any body help the script work?

    if id is less or equal to 5 then loop will execute only once.
    What is the variable i for ?

  • HT201401 I need to restore my iPhone. When I connect to my pc in iTunes it asks me to unlock the phone using my password.  Problem is that I can't get to the password lock screen to do so. I can only get either the iTunes screen or the Emergency Call scre

    I need to restore my iPhone.  Once in iTunes, I get an error message asking me to use my passowrd to unlock phone. The problem is that I can't get to the password lock screen. All I can get is the iTunes screen or the emergency call only screen.

    yes did you buy it of somebody or a well known company such as apple or carphone warehouse?
    and i mean the phone would have been activated in the first place with the sim card you get given when you first get the phone.
    trying to activate the phone with another sim card that you did not get when you brought the phone may result in you not being able to activate it
    no worries

  • HT1688 Can't get texts from Android, SMS or MMS

    Can't get texts from Android, SMS or MMS

    Is this every Android phone or only ones with a certain cell carrier? Can you get texts from Windows phones?

  • Problem with navigation script

    Hi I'm having trouble getting a button work correctly when
    pressed it should take user to a particular label on the main
    scene. Is there a problem with my script? The button is inside a
    movie clip which is inside another movie clip. Thanks in
    advance.

    this quite difficult to explain but here goes. i have a
    complex button with a roll in roll out effect. ie. a movie clip
    acting as a button that shows different buttons (in another movie
    clip) when it is rolled over. I then want the different buttons to
    go to other parts in the main timeline. the code works fine when
    the buttons are on the main timeline but because it is within
    another two movie clips it doesnt work like it should. In fact the
    script i have used in the first movie clip also affects the button.
    This script is as follows and belongs in the first frame of the
    first movie clip. In other words, I need the button not to be
    effected by the following script but by the gotoAndPlay script.
    Thanks

  • I can't get texts on my ipad but I do on my iPhone. I have iMessage turned on.

    I can't get texts on my ipad but I do on my iPhone. I do have iMessage turned on.

    Under no circumstances can you receive a text from an Android phone on the iPad. Using your iPhone number on your iPad, only allows you to keep the messages in sync across all iOS devices.
    The messages app doesn't work with Android phones. It only works with other iOS devices and Macs running Mountain Lion or Mavericks. You can text with Android phones using an iPhone because that uses standard SMS text messaging.
    So if your whole theory about the fact that you can't receive texts on the iPad was predicated on the fact that you don't get the texts from your husband's phone, now you know why. It's never going to happen with an Andriod device.

  • TS3899 iPad mail account says problem with 'ssl settings' - can you help me?

    iPad mail account says problem with 'ssl settings' - can you help me?

    The 4Gs hardware, only 256 MB of RAM, prohibits updating beyond 6.1.6.
    Starting when iOS 7 was released, Apple now allows downloading the last compatible version of some apps (iOS 4.2.1 and later only)
    App Store: Downloading Older Versions of Apps on iOS - Apple Club
    App Store: Install the latest compatible version of an app
    You first have to download the non-compatible version on your computer. Then when you try to purchase the version on your iPod you will be offered a compatible version if one exists.

  • I have an Ipad mini and an iphone 4.  Can i get text messages on both at the same time?

    I have an Ipad mini and an iphone 4.  Can I get text messages to appear on both devices at the same time?

    Yes if the messages are sent to an ID which is in the receive section of Settings > Messages > Send and Receive on both devices.

Maybe you are looking for

  • Cash discount calculated even after the due date in F110

    Hi Friends, Invoice and Credit memo is created with the reference to PO, but when the payment is made to the vendor through F110 the cash discount is calculated on the credit memo even though it has passed the due date. Let me know what else is remai

  • Request property set proper usage

    How to use request property set from datasync project properly ? Should I just set a property and then dynamically do get and set header with the property. Any suggestion will be quite helpful Thanks, Subhabrata

  • Slow As A Turtle

    Line state Connected Connection time 0 days, 9:40:23 Downstream 4,864 Kbps Upstream 448 Kbps ADSL settings VPI/VCI 0/38 Type PPPoA Modulation ITU-T G.992.1 Latency type Interleaved Noise margin (Down/Up) 6.4 dB / 24.0 dB Line attenuation (Down/Up) 39

  • Cancelling an LOV

    I have an LOV setup for a field, the field is required and needs validating from list. (i have set these in properties) The form enters in query mode and when you click on execute query the LOV comes up as it should but when you click cancel when it

  • Can't get large video file from iPod to Mac

    It seems to be working for everything else, but... I shot a 1.9GB video on my new iPod Touch 4G, and it won't import. Both Image Capture and iPhoto throw import errors for that file. Any ideas? It plays back fine on the iPod, and the smaller files I'