Video set to loop, but has a slight pause at end

Hi,
I have a video looping via AS3; only thing is the video
slightly pauses at the end before it loops.
Any one know how I could fix this?
I have tried the following, but no matter which method, I get
that pause:
(METHOD 1)
container.myVideo.autoRewind = true;
container.myVideo.addEventListener(VideoEvent.AUTO_REWOUND,
loopVideo);
function loopVideo(event:VideoEvent):void
container.myVideo.play();
(METHOD 2)
container.myVideo.addEventListener(VideoEvent.COMPLETE,
playAgain);
function playAgain(evt:VideoEvent):void
container.myVideo.seek(0);
container.myVideo.play();
Kind Regards,
Boxing Boom

Hi All,
Just sorted this out via an old 'WebPiper' post;
The answer is:
container.myVideo.addEventListener(VideoEvent.COMPLETE,
playAgain);
function playAgain(evt:VideoEvent):void
/*container.myVideo.seek(0);*/ This is not needed ;)
container.myVideo.play();
My video loops perfectly now.
Kind Regards,
Boxing Boom

Similar Messages

  • Slight pause at end of each ken burns effect

    In iMovie 10, there seems to be a slight pause at the end of each ken burns transition, ie it pauses for a split second at the "end" frame, and there is a stop in motion from one pic to the next. The previous iMovie didn't do this. How do I get smooth ken burns from one pic to the next, so there is no pause?

    I can not reproduce this whether there is a transition between the clips or not.

  • Video plays upside down, but is fine when paused.

      I have a video in the time line and it looks fine, until i play it, then it plays upside down.  I tried flipping it in the motion tab in the viewer but it still plays upside down.  Any ideas? -Thanks

    Click on the troublesome source file in the FCP Browser, and once it is selected, type Command + 9 to see the Item Properties for the clip. Either report what those properties are, or take a screen shot and post that screen shot here (by clicking on the little camera icon in the reply pane to add the image to your post) if that is easier.
    Then, click anywhere on your sequence timeline, and type Command + 0 {zero} to see your sequence settings. Either report what those sequence settings are, or take a screen shot and post that screen shot here (by clicking on the little camera icon in the reply pane to add the image to your post) if that is easier.
    thanks
    MtD

  • Employee No: 20227 exists but has no assignment id!

    Please could someone read through my script that uses several APIs to insert and update employee records and suggest why Im getting my error message "Employee No: 20227 exists but has no assignment id." How does it not have an assignment ID? A simpler version of this script has been working fine in LIVE Production. I can post this if required. Totally stumped.
    /* Formatted on 2009/04/29 11:52 (Formatter Plus v4.8.7) */
    SET serveroutput ON SIZE 1000000 FORMAT WRAPPED
    SET verify OFF
    SET feedback OFF
    DECLARE
    -- Debugging/error handling
    -- Work variables
       obj_vers_no_failed exception;
       emp_status_errors1 exception;
       emp_status_errors2 exception;
       location_code_errors  exception;
       v_emp_no number;
       l_employ_start_date        DATE:= TO_DATE ('01-APR-1999', 'DD-MON-YYYY');
       v_ora_loc_code number                     := 0;
       p_emp_number                     VARCHAR2 (14);
       v_rec_cnt                        NUMBER                          := 0;
       insert_flag                      VARCHAR2 (8);
       err_num                          NUMBER;
       err_msg                          VARCHAR2 (150);
       err_line                         VARCHAR2 (350);
       err_seq                          NUMBER                          := 0;
       l_validate                       BOOLEAN                     DEFAULT FALSE;
       l_std_business_group_id          NUMBER                          := '0';
       l_default_code_comb_id           NUMBER                        := '218048';
       l_organization_id                NUMBER              := '0';
       l_set_of_books_id                NUMBER              := '1';
       l_job_id                         NUMBER             := '10';
       l_obj                            NUMBER := '0';
       l_obj2          NUMBER  := '0' ;
       l_datetrack_update_mode          VARCHAR2 (30)             := 'CORRECTION';
       l_assignment_sequence            NUMBER;
       l_name_combination_warning       BOOLEAN                         := FALSE;
       l_assign_payroll_warning         BOOLEAN                         := FALSE;
       l_org_now_no_manager_warning     BOOLEAN;
       l_other_manager_warning          BOOLEAN;
       l_spp_delete_warning             BOOLEAN;
       l_entries_changed_warning        VARCHAR2 (30);
       l_tax_district_changed_warning   BOOLEAN;
       l_person_id                      NUMBER;
       l_assignment_id                  NUMBER := 0;
       l_assignment_id2           NUMBER       := 0;
       l_special_ceiling_step_id        NUMBER;
       l_per_effective_end_date         DATE:= TO_DATE ('11-Jul-2049', 'DD-MON-YYYY');
       l_people_group_id                NUMBER;
       l_group_name                     VARCHAR2 (30);
       l_assignment_number              VARCHAR2 (35);
       l_effective_end_date             DATE := TO_DATE ('11-Jul-2049', 'DD-MON-YYYY');
       l_date                           DATE                           := SYSDATE;
       ip_p_address_id                  per_addresses.address_id%TYPE;
       ip_p_object_version_number       NUMBER;
       ip_p_party_id                    per_addresses.party_id%TYPE;
       l_per_object_version_number      NUMBER;
       l_asg_object_version_number      NUMBER;
       l_full_name                      VARCHAR2 (240);
       l_per_comment_id                 NUMBER;
       l_per_effective_start_date       DATE;
       l_concatenated_segments          VARCHAR2 (240);
       l_soft_coding_keyflex_id         NUMBER;
       l_comment_id                     NUMBER;
       l_no_managers_warning            BOOLEAN;
    -- Get employee details info from work table
       CURSOR get_employee_details
       IS
          SELECT std_hire_date, std_last_name, std_sex, std_date_of_birth,
                 std_email_address, std_emp_status,
                 LPAD (std_employee_number, 8, '0') std_employee_number,
                 std_first_name, std_marital_status, std_middle_names,
                 std_nationality, std_title, std_national_identifier,
                 std_address_line1, std_address_line2, std_address_line3,
                 std_address_line4, std_post_code, std_telephone_1, std_country,
                  std_location_id, std_supervisor_id
            FROM SU_TEMPLOYEE_DETAILS     
         WHERE std_employee_number IS NOT NULL AND std_national_identifier IS NOT NULL;
    -- checks employee details info from PER_ALL_PEOPLE_F table
       CURSOR c_check_employee (p_emp_number VARCHAR2)
       IS
          SELECT per.person_id, per.business_group_id, per.last_name,
                 per.start_date, per.date_of_birth, per.email_address,
                 per.employee_number, per.first_name, per.marital_status,
                 per.middle_names, per.nationality, per.national_identifier,
                 per.sex, per.title, padd.address_id, padd.primary_flag,
                 padd.address_line1, padd.address_line2, padd.address_line3,
                 padd.town_or_city, padd.postal_code, padd.telephone_number_1, paas.assignment_id,
                 paas.assignment_number, paas.object_version_number, paas.EFFECTIVE_START_DATE,
         paas.job_id, paas.position_id, paas.location_id, paas.organization_id, paas.assignment_type, paas.supervisor_id,
                 paas.default_code_comb_id, paas.set_of_books_id, paas.period_of_service_id
          FROM   per_all_people_f per,
                 per_all_assignments_f paas,
                 per_addresses padd
           WHERE per.employee_number = p_emp_number
             AND per.person_id = padd.person_id
             AND paas.person_id(+) = per.person_id;
    --  AND per.employee_number IS NOT NULL AND per.national_identifier IS NOT NULL;
       emp_rec                          c_check_employee%ROWTYPE;
    -- Cursor retrieves latest Object Version Number from per_assignments_f table..
         CURSOR csr_ovn (cp_person_emp_no IN per_all_people_f.EMPLOYEE_NUMBER%TYPE)
        IS
          SELECT MAX (paas.object_version_number)
            FROM per_assignments_f paas, per_all_people_f per
           WHERE paas.person_id = per.person_id
             AND per.employee_number = paas.assignment_number
            -- AND per.person_id = cp_person_id;
            AND employee_number = cp_person_emp_no;
         CURSOR csr_ovn2 (cp_person_emp_no IN per_all_people_f.EMPLOYEE_NUMBER%TYPE)
        IS
          SELECT MAX (paas.object_version_number)
            FROM per_assignments_f paas, per_all_people_f per
           WHERE paas.person_id = per.person_id
             AND per.employee_number = paas.assignment_number
            -- AND per.person_id = cp_person_id;
            AND employee_number = cp_person_emp_no;
    -- Cursor to get Oracle_Loc_Code from SU CHRIS vs ORACLE Locations Table into a variable..
    CURSOR csr_ora_loc_code (cp_location_id IN SU_TEMPLOYEE_DETAILS.std_location_id%TYPE)
    IS
          SELECT sil.ORACLE_LOC_CODE
         FROM SU_TEMPLOYEE_DETAILS std, SU_IEXP_LOCATIONS sil
         WHERE std.STD_LOCATION_ID = sil.CHRIS_LOC_code
         AND std.STD_LOCATION_ID = cp_location_id;
    BEGIN
    -- Process each record in the work table
       FOR v_emp IN get_employee_details
       LOOP
    -- Obtain the most recent Object Version Numbers..
           OPEN csr_ovn (v_emp.std_employee_number);
           FETCH csr_ovn
           INTO l_obj;
    --    IF csr_ovn%NOTFOUND     THEN        RAISE NO_DATA_FOUND;   END IF;
           IF csr_ovn%NOTFOUND   THEN  RAISE  obj_vers_no_failed;
            DBMS_OUTPUT.PUT_LINE ('csr_ovn obj vers no failed..   '  );
            DBMS_OUTPUT.PUT (CHR (10));      
            END IF;
          CLOSE csr_ovn;
           OPEN csr_ovn2 (v_emp.std_employee_number);
           FETCH csr_ovn2
           INTO l_obj2;
          IF csr_ovn2%NOTFOUND     THEN        RAISE NO_DATA_FOUND;   END IF;
          -- IF csr_ovn2%NOTFOUND   THEN  RAISE  obj_vers_no_failed;
         -- DBMS_OUTPUT.PUT_LINE ('csr_ovn2 obj vers no failed..   '  );  END IF;
          CLOSE csr_ovn2;
    -- determine whether customer already exists
          OPEN c_check_employee (v_emp.std_employee_number);
          FETCH c_check_employee
           INTO emp_rec;
           v_emp_no :=  LPAD (v_emp.std_employee_number, 8, '0');
          l_assignment_id2 := emp_rec.assignment_id;
          l_assignment_id := emp_rec.assignment_id;
    -- ===================================
    -- these next 6 lines is to check the default code comb id..     
    -- ===================================
    IF emp_rec.default_code_comb_id is NULL THEN
         l_default_code_comb_id = 218048;
         END IF;     
         IF emp_rec.job_id is NULL THEN
         l_job_id = 10;
         END IF;     
          IF v_emp.std_emp_status = 'N'   and c_check_employee%NOTFOUND
          THEN
          insert_flag := 'I';
              DBMS_OUTPUT.PUT_LINE ('New Employee No: ' || v_emp.std_employee_number);
              DBMS_OUTPUT.PUT (CHR (10));
           end if;
          IF v_emp.std_emp_status = 'C' and v_emp.std_national_identifier is not null
            and c_check_employee%NOTFOUND
          THEN  
           insert_flag := 'I';
           DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.std_employee_number || ' doesnt exist but theyre goin in anyway.. ');
              DBMS_OUTPUT.PUT (CHR (10));
       --      DBMS_OUTPUT.PUT_LINE ('Insert Flag is: ' || insert_flag  );
           end if;
          IF v_emp.std_emp_status = 'C' and c_check_employee%FOUND     
           THEN
           insert_flag := 'C';
          DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.std_employee_number ||  '      ..is status C but is present in LIVE... '   );  
          DBMS_OUTPUT.PUT (CHR (10));
           DBMS_OUTPUT.PUT_LINE ('Insert Flag is: ' || insert_flag  );  
         END IF;
    --   if l_assignment_id2 is null then
      --        raise_application_error (-20010, 'Employee No: ' || v_emp.std_employee_number  || ' exists but has no assignment id!');
         --   end if;
      IF l_assignment_id2 is null then      raise emp_status_errors1;     END IF;
    --  IF l_assignment_id is null then      raise emp_status_errors1;     END IF;
          IF l_obj2 is null then  raise emp_status_errors2; END  IF;
          IF l_obj is null then  raise emp_status_errors2; END  IF;
        insert_flag := 'C';
        --      END IF;
          CLOSE c_check_employee;
    -- Open Oracle Location Code cursor
    OPEN csr_ora_loc_code(v_emp.std_location_id); 
          FETCH csr_ora_loc_code
           INTO v_ora_loc_code;
           IF csr_ora_loc_code%NOTFOUND  THEN    RAISE   location_code_errors;
           CLOSE csr_ora_loc_code;
    -- Create new PER_ALL_PEOPLE_F and PER_ADDRESSES record from
    --            info in  table record
          IF insert_flag = 'I'
          THEN
    --                      -- Importing Employee Procedure --
    DBMS_OUTPUT.PUT_LINE ('Inserting Employee.. ' || v_emp.std_employee_number  || ' ..now '); 
             Hr_Employee_Api.create_gb_employee
                     (p_validate                       => l_validate,
                      p_hire_date                      => l_employ_start_date,
                      p_business_group_id              => l_std_business_group_id,
                      p_date_of_birth                  => v_emp.std_date_of_birth,
                      p_email_address                  => v_emp.std_email_address,
                      p_first_name                     => v_emp.std_first_name,
                      p_middle_names                   => v_emp.std_middle_names,
                      p_last_name                      => v_emp.std_last_name,
                      p_sex                            => v_emp.std_sex,
                      p_ni_number                      => v_emp.std_national_identifier,
                      p_employee_number                => v_emp.std_employee_number,
                      p_person_id                      => l_person_id,
                      p_title                          => v_emp.std_title,
                      p_assignment_id                  => l_assignment_id,
                --      p_assignment_id                  => l_assignment_id2,
                      p_per_object_version_number      => l_per_object_version_number,
                      p_asg_object_version_number      => l_asg_object_version_number,
                      p_per_effective_start_date       => l_per_effective_start_date,
                      p_per_effective_end_date         => l_per_effective_end_date,
                      p_full_name                      => l_full_name,
                      p_per_comment_id                 => l_per_comment_id,
                      p_assignment_sequence            => l_assignment_sequence,
                      p_assignment_number              => l_assignment_number,
                      p_name_combination_warning       => l_name_combination_warning,
                      p_assign_payroll_warning         => l_assign_payroll_warning
             Hr_Person_Address_Api.create_person_address
                                      (p_validate                     => l_validate,
                        --            p_effective_date               => v_emp.std_hire_date,
                                       p_effective_date              =>  l_employ_start_date,
                                       p_pradd_ovlapval_override      => NULL,
                                       p_validate_county              => NULL,
                                       p_person_id                    => l_person_id,
                                       p_primary_flag                 => 'Y',
                                       p_style                        => 'GB_GLB',
                                       p_date_from                    => SYSDATE,
                                       p_date_to                      => NULL,
                                       p_address_type                 => NULL,
                                       p_comments                     => NULL,
                                       p_address_line1                => v_emp.std_address_line1,
                                       p_address_line2                => v_emp.std_address_line2,
                                       p_address_line3                => v_emp.std_address_line3,
                                       p_town_or_city                 => v_emp.std_address_line4,
                                       p_region_1                     => NULL,
                                       p_region_2                     => NULL,
                                       p_region_3                     => NULL,
                                       p_postal_code                  => v_emp.std_post_code,
                                       p_country                      => v_emp.std_nationality,
                                       p_telephone_number_1           => NULL,
                                       p_telephone_number_2           => NULL,
                                       p_telephone_number_3           => NULL,
                                       p_party_id                     => ip_p_party_id,
                                       p_address_id                   => ip_p_address_id,
                                       p_object_version_number        => l_obj
                                 --      p_object_version_number        => l_obj2
             Hr_Assignment_Api.update_emp_asg
                            (p_validate                    => l_validate,
                             p_effective_date              => SYSDATE,  -- l_date,
                             p_datetrack_update_mode       => l_datetrack_update_mode,
                             p_assignment_id               => l_assignment_id,
                     --        p_assignment_id               => l_assignment_id2,
                             p_object_version_number       => l_obj,
                       --      p_object_version_number       => l_obj2,
                             p_supervisor_id               => v_emp.std_supervisor_id,
                             p_default_code_comb_id        => l_default_code_comb_id,
                             p_set_of_books_id             => l_set_of_books_id,
                             p_concatenated_segments       => l_concatenated_segments,
                             --IN/OUT
                             p_soft_coding_keyflex_id      => l_soft_coding_keyflex_id,
                             --IN/OUT
                             p_comment_id                  => l_comment_id,
                             --IN/OUT
                             p_effective_start_date        => l_date,     --IN/OUT
                             p_effective_end_date          => l_effective_end_date,
                             --IN/OUT
                             p_no_managers_warning         => l_no_managers_warning,
                             --IN/OUT
                             p_other_manager_warning       => l_other_manager_warning
                            --IN/OUT
             Hr_Assignment_Api.update_emp_asg_criteria
                 (p_validate                          => l_validate,
                  p_effective_date                    => SYSDATE,       -- l_date,
                  p_datetrack_update_mode             => l_datetrack_update_mode,
                  p_assignment_id                     => l_assignment_id,
            --      p_assignment_id                     => l_assignment_id2,
                  p_object_version_number             => l_obj,
            --      p_object_version_number             => l_obj2,
                  p_organization_id                   => l_organization_id,
                  p_location_id                       => v_ora_loc_code,
                  p_job_id                            => l_job_id,
                  p_special_ceiling_step_id           => l_special_ceiling_step_id,
                  p_effective_start_date              => l_date,
                  --per_effective_start_date,
                  p_effective_end_date                => l_effective_end_date,
                  --IN/OUT
                  p_people_group_id                   => l_people_group_id,
                  --IN/OUT
                  p_group_name                        => l_group_name,    --IN/OUT
                  p_org_now_no_manager_warning        => l_org_now_no_manager_warning,
                  --IN/OUT
                  p_other_manager_warning             => l_other_manager_warning,
                  --IN/OUT
                  p_spp_delete_warning                => l_spp_delete_warning,
                  --IN/OUT
                  p_entries_changed_warning           => l_entries_changed_warning,
                  --IN/OUT
                  p_tax_district_changed_warning      => l_tax_district_changed_warning
                 --IN/OUT
             v_rec_cnt := v_rec_cnt + 1;
             DBMS_OUTPUT.PUT (CHR (10));
             DBMS_OUTPUT.PUT_LINE (   'There were '
                                   || v_rec_cnt
                                   || '  Insert Flag I records read in..'
    -- Updating PER_ALL_PEOPLE_F and PER_ADDRESSES record from
    --            info in  table record
       ELSE IF insert_flag = 'C'
          THEN
             l_assignment_id2 := emp_rec.assignment_id;
              DBMS_OUTPUT.PUT (CHR (10));
             DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.std_employee_number ||  '  is about to be updated.. '   );
              DBMS_OUTPUT.PUT (CHR (10));
    --  END IF;
    -- =========
    -- Section end
    -- =========
             Hr_Assignment_Api.update_emp_asg
                            (p_validate                    => l_validate,
                             p_effective_date           => SYSDATE,
                             p_datetrack_update_mode       => l_datetrack_update_mode,
                             p_assignment_id               => l_assignment_id2,
                         --    p_object_version_number       => l_obj2,
                             p_object_version_number       => l_obj,
                             p_supervisor_id               => v_emp.std_supervisor_id,
                             p_default_code_comb_id        => emp_rec.default_code_comb_id,
                             p_set_of_books_id             => emp_rec.set_of_books_id,
                             p_concatenated_segments       => l_concatenated_segments,
                             --IN/OUT
                             p_soft_coding_keyflex_id      => l_soft_coding_keyflex_id,
                             --IN/OUT
                             p_comment_id                  => l_comment_id,
                             --IN/OUT
                             p_effective_start_date        => l_date,     --IN/OUT
                             p_effective_end_date          => l_effective_end_date,
                             --IN/OUT
                             p_no_managers_warning         => l_no_managers_warning,
                             --IN/OUT
                             p_other_manager_warning       => l_other_manager_warning
                            --IN/OUT
             Hr_Assignment_Api.update_emp_asg_criteria
                 (p_validate                          => l_validate,
                  --p_effective_date                    => emp_rec.EFFECTIVE_START_DATE,
                  p_effective_date                    => SYSDATE,
                  p_datetrack_update_mode             => l_datetrack_update_mode,
                  p_assignment_id                     => l_assignment_id2,
            --      p_object_version_number             => l_obj2,
                  p_object_version_number             => l_obj,
                  p_organization_id                   => emp_rec.organization_id,
                  p_location_id                       => v_ora_loc_code,
                  p_job_id                            => emp_rec.job_id,
                  p_position_id                       => emp_rec.position_id,
                  p_special_ceiling_step_id           => l_special_ceiling_step_id,
                  p_effective_start_date              => emp_rec.EFFECTIVE_START_DATE,
                  p_effective_end_date                => l_effective_end_date,
                  --IN/OUT
                  p_people_group_id                   => l_people_group_id,
                  --IN/OUT
                  p_group_name                        => l_group_name,    --IN/OUT
                  p_org_now_no_manager_warning        => l_org_now_no_manager_warning,
                  --IN/OUT
                  p_other_manager_warning             => l_other_manager_warning,
                  --IN/OUT
                  p_spp_delete_warning                => l_spp_delete_warning,
                  --IN/OUT
                  p_entries_changed_warning           => l_entries_changed_warning,
                  --IN/OUT
                  p_tax_district_changed_warning      => l_tax_district_changed_warning
                 --IN/OUT
             v_rec_cnt := v_rec_cnt + 1;
             DBMS_OUTPUT.PUT (CHR (10));
             DBMS_OUTPUT.PUT_LINE (   'There were '
                                   || v_rec_cnt
                                   || '  INsert Flag C records read in..'
             DBMS_OUTPUT.PUT (CHR (10));
    -- End of customer related details
          END IF;
      END IF;
          END IF;
       END   LOOP;
       COMMIT;
    EXCEPTION
    WHEN OBJ_VERS_NO_FAILED THEN   ROLLBACK;
    dbms_output.put_line (' No Object version No was found.. ');
    WHEN  emp_status_errors1 THEN  ROLLBACK;
    dbms_output.put_line  ( 'Employee No: ' || v_emp_no || ' exists but has no assignment id!') ;
    WHEN  emp_status_errors2 THEN  ROLLBACK;
    dbms_output.put_line  ( 'Employee No: ' || v_emp_no  || ' Assgnmnt Obj Vers No is not being passed!');
    WHEN  location_code_errors THEN  ROLLBACK;
    dbms_output.put_line  ('Location ID unknown or not found, please check..');
       WHEN NO_DATA_FOUND     THEN     ROLLBACK;
          err_num := TO_CHAR (SQLCODE);
          err_msg := SUBSTR (SQLERRM, 1, 150);
          err_line :=   'ORACLE error occurred processing record.. ' ||  err_msg;
          DBMS_OUTPUT.PUT_LINE (err_line);
          INSERT INTO SU_ERROR_LOG  VALUES (err_msg, 'TEMPLOYEE_DTLS.sql', SYSTIMESTAMP);
        WHEN OTHERS    THEN      ROLLBACK;
          err_num := TO_CHAR (SQLCODE);
          err_msg := SUBSTR (SQLERRM, 1, 150);
          err_line :=   'ORACLE error occurred processing record.. ' ||  err_msg;
          DBMS_OUTPUT.PUT_LINE (err_line);
          INSERT INTO SU_ERROR_LOG  VALUES (err_msg, 'TEMPLOYEE_DTLS.sql', SYSTIMESTAMP);
    END;
    EXIT;Many thanks...
    Steven

    Thanks for taking the time out.
    You're 2nd suggestion was correct the employee doesn't exist in ORACLE Financials becuase its a new employee.
    Ive since placed some more lines in to give me more idea which of the 2 assignment_ids it could be. Its saying it finds the employee from the temporary table (SU_TEMPLOYEE_DTLS, that Ive loaded in) but it cant find anything in the variable 'l_assignment_id2' - which Ive got placed for the UPDATE section of the script only (insert_flag = 'C'hanged rather than 'I'nsert).
    I cant understand this. Prior to been asked to put more error handling code this has worked fine updating and inserting employee records. Ive tried this morning comparing the two scripts but no success. Would you live a new version of the scripting posting?
    Thanks again.
    Steven

  • My ipod nano isn't syncing when I try and change the setting in manually, but is however syncing when I launch the itunes by plugging it in. I'm wondering if anyone has had this issue and/or had been able to fix the problem?

    My ipod nano isn't syncing when I try and change the setting in manually, but is however syncing when I launch the itunes by plugging it in. I'm wondering if anyone has had this issue and/or had been able to fix the problem?

    Do you have any better luck with that if you update to iTunes 10.6.1.7?
    From the notes for the release:
    iTunes 10.6.1 provides a number of improvements, including:
    • Fixes several issues that may cause iTunes to unexpectedly quit while playing videos, changing artwork size in Grid view and syncing photos to devices.
    • Addresses an issue where some iTunes interface elements are incorrectly described by VoiceOver and WindowEyes.
    • Fixes a problem where iTunes may become unresponsive while syncing iPod nano or iPod shuffle.
    • Resolves an ordering problem while browsing TV episodes in your iTunes library on Apple TV.
    http://www.apple.com/itunes/download/

  • TS1398 my sons ipad 1 is not loading videos when he goes on to youtube through   his search engine (hes not on safari as he is on a parental restriction search engine) but has been able to for the last 12 months until the other day.

    My son has an ipad 1 and goes on to you tube through his search engine (which is not safari as i have put a parental restriction search engine on there for him) and up until a few days ago was working fine. now when ever he goes into youtube the video selections come up but when he presses a video to watch it doesn't load (comes up with the loading icon). However i wanted to see if this was a youtube problem so I unrestricted his youtube app and tried to get into youtube that way and it worked and the videos loaded. Does anybody know why it wouldn't work through his search engine now after working through it for so long?
    Any help would be great as i dont mind him going on youtube as long as innappropriate content is filtered (which is what his search engine did).
    Thankyou

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • I'm a new user and learning, I bought and installed Premiere Pro cs6.  I got a nice video clip but has a baby cried in the background and very annoying.  My question is, is this noise remover is separate from the cs6 or I need to get this software downloa

    I'm a new user and learning, I bought and installed Premiere Pro cs6.  I got a nice video clip but has a baby cried in the background and very annoying.  I have tried all of the sounds in Prem cs6 but didn't work. My question is, do I need to get a separate sound software download and install to be able to use it?

    In the CS versions, there was some audio capability in PrPro but you needed to get a separate audio program for major work. Lessening a baby definitely qualifies as major work. That's lessening, i dont mean eliminating. Adobe's audio program is Audition. There are others "out there'. In the CC versions one just downloads Audution also.
    Neil

  • Pricing error; ''Condition record exists, but has not been set''

    hello friends
    we created the order (credit memo req), refer to this created the credit memo.
    in the order one line item and only 2 condition records
    base price and tax (MWST)
    in the order both conditions are coming and in the invoice it is not showing the condition (mwst)  and in the Analysis it is showing as ''Condition record exists, but has not been set''
    what would be the reason?
    regards
    siva

    Hi,
    if both the condition types are showing in the order then you need to update pricing in billing because sometimes when u chnage any condtion value for base price after creation of order then system is not able to find valid condition record at billing document level.
    Narasimha

  • Condition record exists, but has not been set IN JVRD Condition

    Dear Expert,
    I am facing a problem, when trying to create P.O with Excise and Vat Condition. So i am getting Error like Condition record exists, but has not been set so all duties are Calculated Properly but JVRD condition is not Appearing. when going for analysis so that time i am finding this error.
    Thanks You.

    hi,
    Please check that have you maintained Sett-off Conditions for JVRD Condition Types in T-Code: FV11 with respect to your combinations.
    Thanks,
    Raviteja

  • Videos on iPhoto no longer play. All was fine as I was organizing photos, but suddenly no more videos would play. What has happened?

    Videos on iPhoto no longer play. All was fine as I was organizing photos, but suddenly no more videos would play. What has happened?

    Something went wrong. Now for a useful answer...
    Before anyone can help, they need information to work with. Basic stuff:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. What were you doing when the problem arose?
    - Did it ever work properly?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    Anything else you can think of that might allow someone else to understand your issue.
    With this kind of information somebody can develop a starting point for troubleshooting the issue.
    Posts that consist of "iPhoto doesn't work. Help" or "iPhoto won't print" or "Suddenly I have no photos!!!!!!!!!!" mean that any helper is simply guessing. With information, s/he may be able to get your issue resolved sooner.

  • Just bought Ipad2. Loaded Skype, can see and hear other person but cannot see myself cannot find a video setting for skype on the ipad does anyone know?

    Just bought Ipad2. Loaded Skype, I can see and hear the other person, but They and I cannot see me...just my audio. Does anyone know where or how to find sype video setting on Ipad app?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank power On again in the normal way.] It is absolutely/appsolutely safe!

  • I have set up mail but it has 37000 mails to load, obviously very old stuff but how do I get rid without loading and deleting, take days?

    I have set up mail but it has 37000 mails to load, obviously very old stuff but how do I get rid without loading and deleting, take days?

    Go under settings, mail, contacts and calendars and then choose only to sync back 50 or 100 or 1000 mails. Chances are you don't really need the old ones on your device and it'll save room (I have mine set to 50)

  • Shows no video but has sound

    Show no video but has sound what do I need to do to fix this?

    Try a reset. Press & hold the Power and Home buttons simultaneously, ignoring the red power off slider, until the Apple logo appears. Then release both buttons. This should not affect any content on the iPad, it is similar to rebooting your computer.

  • Condition record exist, but has not been set

    I am creating proforma invoice for STO replenishment delivery. I am getting error log "Billing type contains split criteria, n invoiced:123456789, invoice not required". But I am able to save it. I used all standard settings for copy control and billing type.
    For the proforma invoice the condition records are picking up some times and some times not picking up. In the analysis its showing "Condition record exist, but has not been set". When I update with carry out new pricing some times its updating with condition records some times not. I need a solution urgently. Please help.
    Edited by: k c on Nov 4, 2009 7:50 AM

    Hello,
    The message "condition record exists, but has not been set" tells you
    that the condition record exists, but has not  been set in the document.
    If pricing was carried out again for the document item, then the
    condition would be set.
    This can have different causes:
    The condition was deleted manually in the item condition screen.
    The condition record was created later. Please note that order
    processing and pricing have buffer mechanisms. This means that a newly
    added condition record might only be found after order processing have
    been left completely and then started again.
    When an item was added, the condition record was accessed with key
    fields other than change time. This could lead to different results in
    the requirements check at the time of adding and the change time. This
    can occur when modifications are made.
    In billing (or when copying orders): Certain condition types were not
    determined in the source document (this is usually controlled by the
    pricing requirements). When creating the document, the document flow
    (TVCPF,TVCPA) is processed using a pricing type that does not
    redetermine these condition types, although they are supposed to be
    called via the requirments."
    Please check if any of those reasons apply to your problem.
    Note that the condition type is determined just in the moment when
       the billing item is created. And it then that the userexit fills the
       field. When you save the billing document, pricing is called.
       Please ensure that you have any userexits switched off and then test
       this issue again.
    If you have access to OSS notes. please see:
         24832      Pricing rules / TVC
        130416     Requirements in the condition preliminary st
          27636     Message: Condition exists (removed manually)
        859876     Condition is missing: Message VE 108 or VE 008
    I hope you find this information very helpful and hopefully it will solve your problem.
    Regards,
    Martina McElwain
    SD - Forum Moderator

  • My appstore n camera icon has gone..anyone can help me..i already try to go setting and restriction but did not works..

    My appstore n camera icon has gone..anyone can help me..i already try to go setting and restriction but did not works..
    I also cannot update ios..how to solve this problem..?

    Your going to have to perform a restore.

Maybe you are looking for