Duplicate movieclip not working!!

i have create a function for duplicate movieclip but when i
call for the function it not working. Is there anyone who can help
me to trace wats going on wif my script? i have been trying to
figure out but still cant find out wat went wrong.
Below is my code:

thanks kglad! finally got the duplicate work!!!

Similar Messages

  • "Do not import duplicates" is not working

    The "Do not import duplicates" box is checked for all imports but is not working.  This is both for my Nikon DSLR, my Canon S-95 and my iPhone. This was happening with both Snow Leapord and Lion as operating system.  I have been using Aperture since the first release and only in the last few months has this been an issue.  Any thoughts?

    There's a known (and old) bug when duplicate identification fails on photos
    that have been imported from another catalog.
    Sent from phone.

  • "merge duplicate contacts" - not working

    I have roughly 3600 contacts, many of which are duplicate names. I ran 'merge duplicate contacts' and Address Book came back and advised there were 1500 duplicates (which seemed high but, hey). I said, yes, 'merge' and it went off for two to three minutes and finished. There was no change in the number of contacts! All dups were still there.
    So I ran it again and Address Book found no duplicates, even though there are still as many as there were originally.
    Mystified.
    Dave

    Rocking wrote:
    PLease help me in resolving this problem
    Hi,
    I'm sure that people will be happy to help you if you would explain better your problem.
    You simply wrote "is not working". Don't you think it is a bit too generic?
    Do you get an Oracle error, data are not updated as expected?
    We don't know what your problem is. Sorry.
    Please follow Paul advice and check the FAQ which is explaining how to post a question.
    A well written question will definitely get a good answer.
    Regards.
    Alberto

  • Import duplicate detection not working?

    I've done a lot of searching and can't seem to find the answer. All our photos live on my laptop. My wife's laptop has some of our photos but also a lot of ones for work. I'm trying to give her the complete set of all our photos.
    I did some tests and found the "Import duplicate photo?" dialog box very helpful. So I went through and compared our libraries but there were thousands to compare. So I decided to make a folder on her desktop of all our photos from my computer. My theory was I could simply import all the photos and iPhoto would detect the duplicates and I could choose to not import them. It doesn't seem to work, I did a couple tests and all the duplicates got through.
    I upgraded her iPhoto version to iPhoto '08 (7.1.2) just before doing this process since her old version didn't support the dupe detection. Interestingly when I import a photo in her current version it shows up as the filename without the extension but the existing photos all have the extension. I think this is why they aren't being seen as dupes.
    Any ideas how to remedy this? My fallback will be to use Duplicate Annihilator but that will require copying in everything (thousands of photos) and then sifting. Seems scary and unnecessary.

    iPhoto doesn't display the extension in the Info window at the lower left hand corner or in the Title field. If you use the Photos->Show Photo Info menu option you'll see the full file name. Also do you have the Finder set to display the extensions?
    *Do not import a full library into another library with iPhoto. That imports the thumbnail, modified and original files as new files which is not what you want.*
    What you can do is to use iPhoto Library Manager to merge the two libraries into a new, third library and use its duplication elimination features to cull out the duplicates. If the new library isn't what you want the original two libraries will be untouched.
    Another possibility is to copy the Originals folder from your wife's library to the desktop and import that folder and subfolders into your library. I found that importing from folders on the HD do cull out duplicates successfully. Then you can copy your library to her laptop.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Do not import duplicates - does not work

    After several Aperture and MacBrook Pro updates, Aperture does not recognozise duplicates when I check off "do not import duplicates". It has worked well in the past. Any ideas?
    Tks

    I have the same issues. i think its a 'known' bug just hope its addressed in the next release.
    I think the Aperture product manager needs a kick in the pants.

  • Duplicate selection not working

    Hi,
    here is a sample of my script :
    tell application "Finder"
    activate
    with timeout of 1000 seconds
    try
    select (every file of the folder DossierArchiveAsura whose name < DateParutionPlusUN and creation date < LaDateFin and creation date > LaDateDebut)
    if selection is not {} then
    duplicate selection to the folder DossierDateParution
    --delete selection
    else
    activate
    display dialog "Aucun fichier à copier." buttons "Ok" default button 1 giving up after 1
    end if
    select (every file of the folder DossierArchiveAsura whose name > "12_32" and creation date < LaDateFin and creation date > LaDateDebut)
    if selection is not {} then
    duplicate selection to the folder DossierDateParution
    --delete selection
    else
    activate
    display dialog "Aucun fichier à copier." buttons "Ok" default button 1 giving up after 1
    end if
    on error
    display dialog "erreur !"
    end try
    end timeout
    end tell
    and the result :
    select every file of folder "Controles asura:Archives_Asura:" whose name > "12_32" and creation date < date "samedi 14 octobre 2006 11:22:11" and creation date > date "vendredi 6 octobre 2006 23:22:09"
    {document file "3661 ACTUA NB.eps" of folder "Archives_Asura" of disk "Controles asura", document file "3661 ACTUA Q.eps" of folder "Archives_Asura" of disk "Controles asura", document file "express-558.eps" of folder "Archives_Asura" of disk "Controles asura", document file "MBA PAGE1" of folder "Archives_Asura" of disk "Controles asura", document file "MBA PAGE5" of folder "Archives_Asura" of disk "Controles asura"}
    get selection
    activate
    display dialog "Aucun fichier à copier." buttons "Ok" default button 1 giving up after 1
    {button returned:"", gave up:true}
    If I run the script later it works !!!!! Or something else is duplicated, like the content of all the volume !!!
    Oh, I forgot to tell that the script is composed of several part of the same code (of course with different source path) if it can help ?
    Thanks a lot for your precious help !
    Regards,
    Didier.

    Hi Didier,
    This doesn't look right:
    name < DateParutionPlusUN
    When you get the name of a file, it returns a string. You probably don't want to do that. If the name is a date string you probably want to coerce it to date first. That's probably why the script is duplicating the whole directory's items. What kind of value is DateParutionPlusUN?
    Also, you don't really need to select the items and then duplicate the selection. You can just do something like this:
    tell app "Finder"
    duplicate (every file of the folder DossierArchiveAsura whose name < DateParutionPlusUN and creation date < LaDateFin and creation date > LaDateDebut) to folder DossierDateParution
    end tell
    If you wanted to delete the selection later, then it might be better to use a list:
    tell app "Finder
    set fileList to (every file of the folder DossierArchiveAsura whose name < DateParutionPlusUN and creation date < LaDateFin and creation date > LaDateDebut)
    duplicate fileList to folder DossierDateParution
    delete fileList
    end tell
    Edited: Also, what form is the file name in? What kind of date? You might be able to coerce DateParutionPlusUN to short date. It's better if in the form yymmdd. For instance:
    "2006/02/01" < "
    would be true.
    gl,

  • Duplicate handling Not Working

    Hi PI EXperts,
    I need your help here.
    I am using the option of Duplicate handling in sender FTP channel as below:
    Enabled Duplicate handling: Yes, Duplicate message alert threshold:0.
    But I found few duplicate files are processed and archived twice?
    These files have same name(with extension) , are of same size and last modified time stamp is also same.
    Please let me know how I can resolve this issue so duplicate files are not processed more than once ?
    Regards,
    SV

    Hi PI experts, I have checked the message logs. I have noticed that duplicate files are being processed again. As per my understanding, PI does not have sufficient rights to delete the (duplicate) files; it can only pick, process and archive them. Due to this, a duplicate file stays for 24 hours in the FTP folder and the duplicate check gets expired the moment the file remains there for 24 hours. Due to this, PI treats this duplicate file as a new file and reprocesses it. Please let me know if my understanding is correct or there could be some other reason for this? If my understanding is correct, I believe one option to resolve the issue is as below Option 1: Modify file properties so that PI has sufficient rights to delete duplicate files. Please let me know your thoughts. Regards, SV

  • Remove numbers in front of file[working] + append number to duplicate filenames[not-working]

    Hi all,
    I have an AppleScript which removes any numbers and/or hyphens and underscores from the beginning of a filename. Thats works fine.
    However, sometimes i might have a situation like this:
    Filename Eg;,  01-Dog.jpg,  02-Dog.jpg,  03-Dog.jpg, etc.
    In such a case, the script stops/does not run, only telling me that there already is a file with that name. It does not tell me which file its conflicting with (sometimes there are ALOT of files to look through).
    Could somebody please help in modifying this script so that in such a case, a file with the same name would have a number OR letter appended to the end of a filename (before the extension). 
    Eg;, Dog2.jpg, Dog3.jpg, etc.
    on run {input, parameters}   repeat with thisFile in input   tell application "Finder"   set filename to name of (thisFile as alias)   set filename to (do shell script "echo " & quoted form of filename & " | sed 's/^[0-9_-]*//'")   set name of thisFile to filename   end tell   end repeat   return input end run 
    Thank you for your help!!

    If anyone should be interested in such a script, @jweaks helped me out on StackOverflow

  • Duplicate check not working in sender soap adapter

    Hi guys,
    I have an urgent problem.  I am using a Sender Soap Adapter (quality of service Best Effort) to receive certain web services requests and send back synchronous responses.
    I have ticked the parameters "Use Encoded Headers" and "Use Query String" to implement duplicate check.
    For this reason I am expecting XI to return errors of the following type when the sender systems posts duplicates:
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="PERSIST">MSGGUID_EXISTING</SAP:Code>
      <SAP:P1>D00B71AC7AEBDEB3E011E5E43C49D97B</SAP:P1>
      <SAP:P2>CENTRAL</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Message ID D00B71AC7AEBDEB3E011E5E43C49D97B for pipeline CENTRAL, version already exists in system</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    However, although the duplicates go into an error status, the system is responding with the following message:
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="BPE_ADAPTER">SYSTEM_FAILURE_INTERNAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>An internal error has occurred</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    Can anybody tell me how to force XI to return a message type "MSGGUID_EXISTING" when it catches duplicates?  Or if there is any configuration I can change?
    Many thanks,
    Aldo

    OK, this problem is resolved.
    XI seams to send the error SYSTEM_FAILURE_INTERNAL the first time it receives a duplicate message and sends the MSGGUID_EXISTING error on the following attempt to post the same message.
    Cheers.
    Aldo
    Edited by: Aldo Lazzarini on Sep 23, 2011 6:50 AM
    Edited by: Aldo Lazzarini on Sep 23, 2011 6:53 AM

  • "Duplicate Photo" not working?

    I've repeatedly tried to duplicate a photo using the "Duplicate" command. The app's wheels turn, it seems to be doing something, then it dumps me out at the top of whatever library window I'm in, and lo and behold, the duplicate photo is nowhere to be seen! (The original is where it always was.)
    Anyone else seen this problem, and if so what's the fix?
    Thanks

    Do a search for the word 'copy' in the iphoto search box and see if anything turns up.
    Seeya...Q

  • File - Export from Preview, iPhoto etc does not work

    Lately, normal operations from OSX-programs are not working as expected on my MacBook Air mid-2013 running OSX 10.8.5. I can reproduce in PreView and iPhoto that operations like File, Export and File, Duplicate do not work - there is just no response.
    Upon opening console, I see the following error messages:
    10/11/13 3:23:50.170 PM com.apple.security.pboxd[487]: CGSGetWindowTags: Invalid window 0xc8
    10/11/13 3:23:50.170 PM com.apple.security.pboxd[487]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    10/11/13 3:23:58.950 PM com.apple.launchd[1]: (com.crashplan.engine[735]) Exited with code: 1
    10/11/13 3:23:58.950 PM com.apple.launchd[1]: (com.crashplan.engine) Throttling respawn: Will start in 10 seconds
    10/11/13 3:24:00.167 PM Preview[456]: RVS:__54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0319 : Timeout occured while waiting for the window
    10/11/13 3:24:00.171 PM librariand[459]: [ERROR] [913.272s] com.apple. SRMessageTransport.c:498 SRConnectionCreateClient() timed out waiting for the server to post the started notification
    10/11/13 3:24:00.171 PM librariand[459]: [ERROR] [913.272s] com.apple. framework_client.c:810 IPCEnableSyncing() failed to run server: -1
    10/11/13 3:24:00.172 PM librariand[459]: [ERROR] [913.272s] com.apple. UBService.c:598 UBServiceEnableMobileDocuments() IPCEnableSyncing failed with error: The operation couldn’t be completed. (UBErrorDomain error 2.)
    10/11/13 3:24:08.972 PM com.apple.launchd[1]: (com.crashplan.engine[736]) Exited with code: 1
    10/11/13 3:24:08.972 PM com.apple.launchd[1]: (com.crashplan.engine) Throttling respawn: Will start in 10 seconds
    10/11/13 3:24:18.996 PM com.apple.launchd[1]: (com.crashplan.engine[737]) Exited with code: 1
    10/11/13 3:24:18.996 PM com.apple.launchd[1]: (com.crashplan.engine) Throttling respawn: Will start in 10 seconds
    10/11/13 3:24:20.174 PM librariand[459]: [ERROR] [933.275s] com.apple. SRMessageTransport.c:498 SRConnectionCreateClient() timed out waiting for the server to post the started notification
    10/11/13 3:24:20.175 PM librariand[459]: unable to enable mobile documents
    10/11/13 3:24:20.175 PM librariand[459]: error in _handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    Please help...

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    This time you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • PLEASE HELP - Simple movieclip click to URL is NOT working... Why???

    I've tried over 4 tutorials to make my movieclip link to a URL. It's just not working for some reason...
    Here is my code.
    ondemand.addEventListener(MouseEvent.CLICK,goThere);
    function goThere(e:MouseEvent){
    var request:URLRequest = new URLRequest("www.money.net");
    navigateToURL(request);
    ondemand.buttonMode = true;
    ondemand.useHandCursor = true;
    stop();
    ondemand is a movieclip instance with a PNG image of text.
    This should work!! There are no compilation errors...
    No mouse cursor change on hover... just like nothing is there.
    Please help...   

    I am overall confused by your description of what you have, especially when you get to doubleclicking the movie and assigning code in it.
    In any case, you need to assign the name (the same name) to every instance of a tweened object. The lack of a name in earlier frames will be inherited by instances in subsequent frames
    I'm confused about your mention of 3 instances being in the library.  Just for clarity, an instance is a library symbol (or an object) that you place on the stage.  If you place two of the same objects on the stage, then you have 2 instances.  Items in the library are instance-wanna-bes.  If you have three different symbols in the library, and you are tweening them as if they were the same, your tween can't possibly work.

  • I have 10.7.3 lion on my computers an iMac and a macbook pro plus a new iPod touch, and two older touches, now trying to sync my calendars is not working deletes some events, duplicates others, I want all my calendars to be the same.  Any ideas

    I have 10.7.3 lion on my computers an iMac and a macbook pro plus a new iPod touch, and two older touches, now trying to sync my calendars is not working deletes some events, duplicates others, I want all my calendars to be the same.  Any ideas

    Have you tried resetting the SMC ?     >  Resetting the System Management Controller (SMC)

  • Duplicate subtree in PI 7.1 (EHP1) not working as it did in XI 3.0

    Hello,
    When I duplicate a subtree with occurrence of 0---Unbounded in PI 7.1 (EHP1), the node gets duplicated but without the occurrence and type in the duplicated node.
    When duplicating a subtree with occurrence of 0---Unbounded  in XI 3.0, the occurrence and the type would be copied exactly the same to the duplicate node.
    Does anyone know how to solve this issue?  I have moved a message mapping from XI 3.0 which worked successfully there, but due to this issue, the mapping is failing in PI 7.1.
    I have already seen the following which has not helped me.
    Note 1340036 - Duplicating a subtree does not change the cardinality
    Note 1404364 - Recursive nodes are not rendered correctly after duplication
    Note 1371541 - Duplicate subtree is Message Mapping not working properly
    Duplicate subtree in PI 7.11(EHP1) not working as it works in XI 3.0
    Thank you,
    Rhonda

    Hi VK,
    Thank you so much.  Yes, after doing some more testing, I realize you are correct.  Even though we don't see the occurrences, it still works the same.
    My problem was actually something different in the mapping which I have resolved now too.
    I have given you points.
    Thanks again,
    Rhonda

  • Duplicate Handling in not working fot FTP and working for NFS in PI 7.31 SP06

    Hi Experts,
      To handle the duplicate files and I enabled the check box (Enable Duplicate Handling) in Sender File adapter , but this is working in case of NFS option and  it's not working for FTP protocol.
    What I observed is if the same file received second time from FTP server and File date and time is current file created date and time in FTP server.
    But in case of NFS file time is last file modified date and time.
    As per SAP help duplicate file is working based on last file modified date and time stamp - but this is not same for duplicate file in case of FTP.
    I am testing this in PI 7.31 SP06.
    Please help if you tested this option in PI 7.31 using sender FTP.
    Because our scenario we might received from sender FTP duplicate files and this I wanted fix using our standard check box option.
    Appreciate your help.
    Regards,
    Venu.

    May be have a look at the below blogs if it helps..
    http://scn.sap.com/people/sandeep.jaiswal/blog/2008/05/13/adapter-module-to-stop-processing-of-duplicate-file-ftp-location
    http://scn.sap.com/community/pi-and-soa-middleware/blog/2012/06/05/how-to-handle-duplicate-files-sender-file-adapter-scenarios-in-process-integration

Maybe you are looking for

  • Issue in Dependent poplist in Advanced table

    Hi, I am facing problem while implementing dependent poplist in advanced table. I have a query region and the results are populated in advanced table. In advanced table i have 2 poplists A and B. A is dependent on one of the column C1 in the advanced

  • Retrieving user data from Directory Server using java code

    Can anyone send java code to bind to directory server and retrieve the user information from server instance.

  • Trying to underline the rectangle of a Text Field

    I am trying to underline the rectangle of a Text Field with a Line Annotation, but I am a little confused. The first doubt is about the "Square" vs, the "Rectangle" annotations. What is the difference between them? Has Adobe changed those recently? I

  • List all authorized EKORGs as F4 help

    Anyone can you let me know how to do this. I want to identify all the purchasing organizations a user have access to and show that list as F4 help on the selection screen of report. Is there a function module or table which gives this list? Thanks in

  • Jdeveloper 11g deployed jar not running - Windows 7

    After I deployed a simple form to a jar, the following message comes up when trying to run with command: java -jar  sw.jar Exception in thread "main" java.lang.NoClassDefFoundError: oracle/jbo/uicli/controls/JUNavigationBar Caused by: java.lang.Class