Cursor does not properly... Gives entry each record last records.

Hi all.

a simple for someone, I'm sure...

I've just added the cursor:

-- ***************************************************
-The cursor for Oracle_Loc_Code de SU CHRIS vs ORACLE table locations in a variable...
-- ***************************************************

CURSOR csr_ora_loc_code IS
SELECT sil. ORACLE_LOC_CODE
OF std, sil SU_IEXP_LOCATIONS SU_TEMPLOYEE_DETAILS
WHERE STDS. STD_LOCATION_ID = sil. CHRIS_LOC_code;

.. the script I paste below in order to complete each record with what in LIS. Field ORACLE_LOC_CODE.

But, although it works fine when you have 1 card to run at, where several records need to be loaded together, the script, well between records in ORACLE thin, fills all records with the same store code - whatevers in the last record (instead of dealing with each of them individually). How can I fix?

Thanks for looking...

The code...
/* 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
-- *********

   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                        := '217269';
   l_organization_id                NUMBER                          := '0';
   l_set_of_books_id                NUMBER                          := '1';
   l_job_id                         NUMBER                          := '10';
   l_obj                            NUMBER;
   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;
   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,
             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_region, std_location_id, std_organization_id,
             std_supervisor_id, std_person_id, std_position_id
        FROM SU_TEMPLOYEE_DETAILS;

-- *****************************************
-- 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_number, paas.object_version_number
        --  padd.telephone_number_2, padd.telephone_number_3, paas.job_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;

   emp_rec                          c_check_employee%ROWTYPE;

-- ***************************************************
-- Cursor retrieves latest Object Version Number from per_assignments_f table..
-- ***************************************************
   CURSOR csr_ovn (cp_person_id IN per_all_people_f.person_id%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;


-- ***************************************************
-- Cursor to get Oracle_Loc_Code from SU CHRIS vs ORACLE Locations Table into a variable..
-- ***************************************************

     CURSOR csr_ora_loc_code IS
      SELECT sil.ORACLE_LOC_CODE
     -- INTO ora_loc_code
     FROM SU_TEMPLOYEE_DETAILS std, SU_IEXP_LOCATIONS sil
     WHERE std.STD_LOCATION_ID = sil.CHRIS_LOC_code;


BEGIN
-- ***********************************
-- Process each record in the work table
-- ***********************************
   FOR v_emp IN get_employee_details
   LOOP
-- ************************************
-- determine whether customer already exists
-- ************************************
      OPEN c_check_employee (v_emp.std_employee_number);

      FETCH c_check_employee
       INTO emp_rec;

      IF c_check_employee%NOTFOUND
      THEN
         insert_flag := 'I';
         DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.std_employee_number);
      ELSE
         DBMS_OUTPUT.PUT (CHR (10));
         insert_flag := 'X';
       RAISE_APPLICATION_ERROR (-20001,  'Employee No: ' || v_emp.std_employee_number  || '  already 

exists - please  UPDATE  manually..'    );
       END IF;

      CLOSE c_check_employee;

-- ************************************
-- Obtain the most recent Object Version Number..
-- ************************************
      OPEN csr_ovn (v_emp.std_person_id);

      FETCH csr_ovn
       INTO l_obj;

      -- IF csr_ovn%NOTFOUND     THEN        RAISE NO_DATA_FOUND;   END IF;
      CLOSE csr_ovn;

-- ************************************
-- Open Oracle Location Code cursor 
-- ************************************
      OPEN csr_ora_loc_code;   -- (v_emp.std_person_id);
      FETCH csr_ora_loc_code
       INTO ora_loc_code;
      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
--         BEGIN                             -- Importing Employee Procedure --
         Hr_Employee_Api.create_gb_employee
                 (p_validate                       => l_validate,
                  p_hire_date                      => v_emp.std_hire_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_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_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
                                  );
         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_object_version_number       => l_obj,
                         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_object_version_number             => l_obj,
              p_organization_id                   => l_organization_id,
              p_location_id                       => ora_loc_code,
              p_job_id                            => l_job_id,
              p_position_id                       => v_emp.std_position_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
                               || '  records read in..'
                              );
         DBMS_OUTPUT.PUT (CHR (10));
-- ******************************
-- End of customer related details
-- ******************************
      END IF;
   END LOOP;

   COMMIT;
EXCEPTION
   WHEN NO_DATA_FOUND
   THEN
      ROLLBACK;
   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_SL_ERRORS  VALUES (err_num, err_msg, SYSTIMESTAMP);
END;
/

EXIT;

CURSOR csr_ora_loc_code IS

SELECT sil. ORACLE_LOC_CODE
-BY ora_loc_code
OF std, sil SU_IEXP_LOCATIONS SU_TEMPLOYEE_DETAILS
WHERE STDS. STD_LOCATION_ID = sil. CHRIS_LOC_code; OPEN csr_ora_loc_code. -(v_emp.std_person_id);
EXTRACTION csr_ora_loc_code
IN ora_loc_code;
CLOSE Csr_ora_loc_code;

Of course Yes.

He chooses a sil. ORACLE_LOC_CODE, you are to pick up a. Which may be one of the sil. ORACLE_LOC_CODE, you don't like Oracle to choose an individual.
If you want to get a few specific sil. ORACLE_LOC_CODE, you need to put a filter on it.

     CURSOR csr_ora_loc_code(p_your_parameter NUMBER) IS -- whatever datatype you wan to pass
      SELECT sil.ORACLE_LOC_CODE
     -- INTO ora_loc_code
     FROM SU_TEMPLOYEE_DETAILS std, SU_IEXP_LOCATIONS sil
     WHERE std.STD_LOCATION_ID = sil.CHRIS_LOC_code
     AND your_column = p_your_parameter;
      OPEN csr_ora_loc_code(v_emp.std_person_id);   -- (v_emp.std_person_id); -- I'm not sure why did you comment this out.
      FETCH csr_ora_loc_code
       INTO ora_loc_code;
      CLOSE csr_ora_loc_code;

By
VAMSi

Tags: Database

Similar Questions

  • procedure with cursor does not properly

    Hai
    I m just a beginner I m trying to retrieve some records of my database and for this I m write the code as follows: -.


    create or replace procedure (p_month in NUMBER, p_year in NUMBER) export
    is
    Start
    declare
    v_ddoregcode VARCHAR2 (10);
    v_ddocode VARCHAR2 (6);
    v_prancode VARCHAR2 (12);
    v_Name VARCHAR2 (30);
    v_gc NUMBER (12,2).
    v_ec NUMBER (12,2).
    v_month NUMBER (2);
    v_year number 4;
    cursor c1 is select m.ddo_reg_code, m.ddo_code, m.pran_code, $m.name, i.gc, i.ec, i.month, i.year
    of nps_mst_new m, i_nps_trans I
    where m.pf_no = i.pf_no
    and i.month = p_month
    and i.year = p_year;
    Start
    Open c1;
    loop;
    Fetch c1 in v_ddoregcode, v_ddocode, v_prancode, v_name, v_gc, v_ec, v_month, v_year;
    dbms_output.put_line (v_ddoregcode | "| v_ddocode |" | v_prancode | "| v_Name |" | v_gc | "|)
    When exit c1% notfound;
    end loop;
    Close c1;
    end;
    end export;

    and it is compiled with errors please help me so that I can compile correctly and get the result I need.

    you could tell us what mistakes...

    loose the semicolon after the LOOP

    simplified version of the procedure (put it in a package)

    create or replace procedure export(p_month in NUMBER,p_year in NUMBER)
    is
    begin
       for rec in (select m.ddo_reg_code
                        , m.ddo_code
                        , m.pran_code
                        , m.name
                        , i.gc
                        , i.ec
                        , i.month
                        , i.year
                     from nps_mst_new m,i_nps_trans i
                    where m.pf_no=i.pf_no
                      and i.month=p_month
                      and i.year=p_year)
       loop
          dbms_output.put_line(rec.ddo_reg_code
                               ||rec.ddo_code
                               ||rec.pran_code
                               ||rec.name
                               ||rec.gc
                               ||rec.ec
                               ||rec.month
                               ||rec.year
                               );
       end loop;
    end export;
    
  • If I click on Favorites and then scroll through the list of favorites, it does not show the entries in each file.

    * Original title: to access Favorites

    If I click on Favorites and then scroll through the list of favorites, it does not show the entries in each file but suddenly close showing the list of favorites. . I use Chrome and it happened all of a sudden. It was functional this morning. All the advice to fix this will be greatly appreciated

    Have you tried the Chrome forum? https://productforums.google.com/forum/#! forum/chrome

  • Its satellite A210-131 driver does not support DirectSound entry

    From Premiere Pro CS3, an error message is displayed:

    -"Der zurzeit installierte Soundkartentreiber unterstuetzt keine DirectSound-Eingaenge"Es ist keine Audioaufnahme possible".
    -"The its installed card driver does not support the entry of DirectSound. The sound recording is not possible.

    Please help me find a working driver. Operating system is Windows Visat Ulimate.

    Thank you
    Siegwin

    Hello

    To my knowledge the DirectSound is an addition to the system of Microsoft DirectX. It should be included in DirectX.
    Please check if you have installed the latest version of DirectX 9 C.

    In addition, I would recommend updating the audio driver. On the Toshiba page, you can find the latest two versions of Realtek sound dirver;
    -6.0.1.5374
    -6.0.1.5406

    If the two will not support the DirectSound input try another on the homepage of Realtek.
    The chip is called Realtek ALC268

  • Error message: Shockwave, Flash Player does not properly during playback Slotomania

    Original title: shockwave flash player

    Hi I have problems with some games. Especially slotomania. When I enter the RM of slotomania that flashing message saying that Flash shockwave Player does not properly can give to interrupt or stop options taken but its gone too fast for me to do something. Then the really slow game. Can you help me?

    Hello Marilyn,.

    Thanks for posting your query in the Microsoft Community Forum.

    According the information, you are facing problems to play games online as Slotomania due to the Adobe Shockwave, Flash Player error messages.

    It would be useful that you can answer these questions to help you further.

    1. are you facing problems that when you play online game Slotomania?

    2. using Internet Explorer or another web browser?

    3. what version of the Windows operating system is installed on your computer?

    4. have you made a recent software or hardware changes to the system?

    If you use Internet Explorer, you can see the article and check if it helps to solve the problem.

    The problems of games online using Internet Explorer

    It will be useful.

    Let us know if you need help with Windows related issues. We will be happy to help you.

  • The mouse cursor does not appear on the center of the screen to start upward.

    The mouse cursor does not appear on the center of the screen to start upward.  If the mouse moves a mobile cursor appears in the upper left corner of the screen.  Have to keep rebooting until the mouse cursor properly supported.

    The mouse cursor does not appear on the center of the screen to start upward.  If the mouse moves a mobile cursor appears in the upper left corner of the screen.  Have to keep rebooting until the mouse cursor properly supported.

    Suggestions:

    Go to Safe Mode:

    Shut down your computer > turn it back on and immediately and repeatedly tab key F8 until you see a black and white screen. Use the up/down arrow and selectSafe Mode with command prompt.

    1. in safe mode, please do a system restore. Choose the date where you did not have this problem as your restore point.
    Start button > Search box, type system restore > press the Enter key > uac prompt > click on choose a different restore point > next > select dates as your restore point, until the click > next > finish
    To sit and wait. The machine restarts when it's done.

    2. always in safe mode, do a check of the file system. See if file check will check for corrupted files and repair them.

    Start button > Search box type cmd > look up, do a RIGHT click oncmd.exe > click onRun As Administrator > in this window cmd black and white, type at the prompt flashing sfc/scannow > press the ENTER key.
    Note: there is a space between 'sfc' and ' / '.
    To sit and wait. It will take time.
    When finished, exit the cmd window.
    Reboot (restart your computer)

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Scrolling the page does not properly respond to BlackBerry Curve9360

    Hello friend

    I have developed applications for BlackBerry (JqueryMobile, Phonegap) the application works fine in BlackBerry Torch 9800.

    But once I've installed in BlackBerry Curve9360, scrolling of the page does not properly, that I am not able to view the complete list of items and long text.

    Help, please

    I came up with the solution, the problem occurs because BlackBerry Curve 9360 isn't a touchscreen, there fore scroll doesn't work.

    In my applications, I add 2 pages "index.html."

    on the first page, you have to test if the device is not touch and redirect to the second page.

    Do not use the page for "BB Curve" scroll and any other animation like CSS "" - webkit - transform: translate3d "»

    The other js script go without a problem.

    The page "BB Curve" to redesign the html for use with the cursor,
    For example, the menu is smaller, the police is smaller.
    the size of the screen is fixed.
    Dimension height is better indicate a value min eg 300px
    etc...

  • Cursor does not work using an external mouse

    Internal cursor does not currently work with an external mouse

    Yes, I use a laptop.  How can I disable the touchpad?

    The procedure for doing this is different for every brand and model of laptop.  You will need to read the user guide to find out how to do it on your computer.  I promise you that it will not give you leprosy for this!  :-)

    One possibility would be via the mouse control panel applet.  Click Start-> Control Panel-> mouse.  Click the device settings tab, and you should see a button to turn off the touchpad.  Make sure that you are disabling the touchpad and not by the mouse.  However, the procedure of your user guide will be easier and more user-friendly.

    Good luck.

  • now, I'm using windows 7 Home Basic but in my google chrome and firefox does not please give me suggestion?

    now, I'm using windows 7 Home Basic but in my google chrome and firefox does not please give me suggestion?

    Looks like you may have a virus or other malware. Get your updated antivirus program and boot into Safe Mode. Note that some viruses can hide from your normal antivirus program, so you really need to scan in Safe Mode. To enter in Safe Mode when you turn on first, press F8 on every seconds until you get the menu, and then select Safe Mode. Then run a complete system scan.

    -

    Microsoft has suggestions and offerings to

    http://Windows.Microsoft.com/en-us/Windows7/how-do-I-remove-a-computer-virus

    -

    Moderator Forum Keith has a few suggestions along this line to

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-performance/Windows-Explorer-has-stopped-working/6ab02526-5071-4DCC-895F-d90202bad8b3

    -

    If that suits him fine. If this is not the case, use system restore to go back to an earlier date at the beginning of the problem. To run system restore, click Start-> programs-> Accessories-> System Tools-> system restore. Click on the box that says show more restore points.

    -

    You can check the corrupted system files. Open an administrator command prompt and run SFC if the above does not help. Click START, and then type CMD in the search box, right-click on CMD. EXE and click run as administrator. Then, from the command prompt type sfc/scannow.

    -

    Finally if all else fails, you can look at the rather cryptic system event log. To do that click on start-> Control Panel-> administration-> event viewer tools. Once in Event Viewer system log-click and scroll entries looking for these "error" with indicator see if you can find guidance on where the problem may be.

    `

    When you get your system in good working condition, I invite you to back up your system up to an external hard drive and make it regular periodic updates.

    -

    I hope this helps. Good luck.

  • Cursor does not focus on the newly created line.

    I use JDeveloper 11.1.1.4. Whenever I create a new line in the table of the adf, the cursor does not focus on new line. He always focuses on the last line that clicked before adding the new line.

    see that this can give some ideas

    Information about ADF: creating a new line and create update auto focus

  • Prblem with buttons; Cursor does not turn in the pointer (finger) into the mouseover state

    I'm programming the buttons on board animate, which are just symbols with their own timeline. I gave them actions to clicks, mouseover and mouseout/mouseouthandler(). They just call URL and are working properly, but I noticed that the cursor does not turn in the pointer (the hand with the index pointig) in the mouseover state. This creates a strange feeling, because users are not sure they are before buttons they click on them...

    Is there any solution for this?

    Thanks in advance!

    Hi Gzapiram,

    Click your button and in the properties panel, you will find a slider, with the auto default value section. Simply select the familiar hand cursor

    Gil

  • Safari Web Clip does not properly

    Hello everyone

    I have a problem with safari Web Clip and that is does not properly for almost all pages, as example, I participate in a contest of therapy dbrand/unbox, and I really don't want to open the web page, whenever a new winner is announced, so I created a web clip, but it does not work well When I click the web clip icon he asked the location of the clip and when click on done, the web clip is from a different region and I can't fix.

    Is this some sort of bug or can I fix it myself?

    Web Clip still didn't work if the cut element remains in the exact same on exactly the same site. This is apparently not the case here.

    Dashboard widgets in general, are an old technology that has not been updated in many years.

  • Satellite T110-107 - Touchpad does not properly

    I love my Satellite T110-107, but there are problems with the touchpad.

    (1) the mouse cursor does not move sometimes. With this one, I get to move taking both hands away from the laptop for a while.
    (2) the cursor of the mouse all of a sudden 'draws' of the right hand of the screen.

    I tried to change the sensitivity of the touchpad to the minimum and maximum levels, I adjusted the sensitivity 'Palm', but nothing seems to help other than by the low sensitivity that helps a little.

    I also noticed that when the laptop is on my lap, the problem is worse than if it's on a table.

    I think it's a problem with an accumulation of static electricity on the case.

    Other ideas?

    Hey Buddy,

    I use the Satellite T110 for months now and really and no problem. Everything is great and I don t have problems. It the laptop really great s!

    There must be something wrong with your installation.
    First of all, I would recommend updating the driver from the touchpad. You can download the Toshiba site:
    http://EU.computers.Toshiba-Europe.com

    After that you should test again. Also check the settings of the touchpad again. There are a large number of settings to improve the touchpad.

  • Toshiba 47L7453DG - CEC does not properly using exernal amplifier

    I bought Toshiba 47L 7453 a few days ago.

    It is connected to the amplifier Onkyo TX-NR535 but CEC does not properly. Volume control works fine but On / Off or stanby does not at all.

    My previous TV Toshiba 42XV635DG was communicated by the CEC with the Onkyo even without any problem.

    The wire connection is HDMI 1.4 certified.
    Maybe the problem is with the firmware of the TV.

    Maybe someone had the same problem.

    Any suggestion?

    Thank you

    Hello

    From my point of few TV and amplifier are connected some CEC (Volume control) functions that work. I think you should check the auto power settings and HDMI CEC standby control system.

    Manual, you will find some important notes:
    http://www.Toshiba-OM.NET/LCD/PDF/English/L7453-424755-English.PDF

    _Page: 11_
    + You can control the basic functions of audio/video devices connected with s TV remote if you connect an HDMI-CEC compatible AV amplifier or playback device. +
    + If several devices are connected, the HDMI CEC control function may not work correctly. +

    _Page: 86 - 87_
    + When the point to activate the HDMI CEC control in the menu of HDMI CEC control configuration is defined on.
    + On, also allocated to individual features will be activated. +
    + When the connected equipment work, HDMI CEC control automatically detects the TV input selection. If the TV is in standby mode, it will be automatically reactivated. +
    + If the TV is off (standby), television will send a message turns off (standby) all devices HDMI CEC control connected to the TV. +

  • EQUIUM A60: graphic ATI does not properly

    I HAVE AN EQUIUM A60 1 YEAR MESSAGE SUDDENLY CRASH SAID: ATI GRAPHICS CARD DOES NOT PROPERLY.
    CAN'T FIND THE DRIVERS UPDATED ON ATI OR MICROSOFT HELP PLEASE?

    Hello

    Can you tell me when this message appears?
    First of all, you can try to update the graphics driver from Toshiba. It is a first step that you can try.
    Check this page for the driver download.
    http://EU.computers.Toshiba-Europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp

    Good bye

Maybe you are looking for

  • Restricted mode is always on using Youtube on Firefox, any ideas?

    When I connect to Youtube with Firefox, mode restricts always 'on' and % 95 of Youtube is blocked. It is said: "Restricted Mode is turned on by your network administrator" and I am not able to change that. But when I connect with Chrome, I can change

  • ZORIN 11 operating system?

    I bought a computer laptop off eBay, has an operating Zorin 11 system installed on it, I've never heard of him, and I don't know anything about computers or operating systems. The bottom of the laptop has a sticker saying product key Windows XP Media

  • latest version of bittorrent works not properly

    I use xp and you just download bittorrent 7.2.1 it downloads sometimes, but most of the time he crashes and is really slow to respond.  apparently a lot of people have this problem, it has something to do with an update of microsoft, and there is a p

  • Pre installed HP plug impression in vs. HP e-print

    Should I still the application of e-print hp if my s4 galaxy came pre-installed with HP print sheet?

  • BBM works does not in a Simulator

    Hi all, I am fairly new to the Blackberry 10 development, I started the Simulator and tested if BBM works, I followed all the steps requred to make it work but I get "temporary server error, please try again later", I looked through all of the thread