Simple TweenEvent works strange?

Hi there,
I have a simple example of some tweening action.
There are some strange things that happen that would not
happen before in AS 2.0
If you press the button some times (fast) then suddenly the
squares will freeze at a certain moment.
It could be a bug, but maybe i am doing something wrong?
Also i tried to make an eventListener, so when tween is
finished, then fire a function. That works, but only
for one movie!
Isn't there a way to make a multiple tween Listener like
this?
this["myTweenAlpha"+i].addEventListener(TweenEvent.MOTION_FINISH,
removeSquares);
This way the movieclips will remove or change not at once,
but one by one.
To test this example you have to place a button on your stage
and call the instance name: button_btn
And create a small square and convert it to a movieclip. Then
delete it from the stage And go to your
Library and call it's linkageId =" square"
See, the attached Code.
I hope someone has a solution, because i already spend more
then 4 hours to figure it out.

Thanks for that tip, i tried to implement this, but with an
aditional timer funciton it still
works strange. When you press the button, the squares will
now build after 50 miliseconds.
It all works fine. But when you press multiple times on the
button (very fast) ..it still freezes the squares
at a certain moment.
I also tried to make the timer event unique, using a counter.
At some forum in our country i read about
that the classes Adobe released (tweens) are very buggy. And
that they recommend to use another
class (like
caurina).
But perhaps there is a fix for these strange behaviour when
using the Adobe tween class?
i updated the attached script (14:32). I discoverd the
eventListener from the timer must be reset, that's why
i used a boolean. It's more stable now, but still if you
press long enough and fast it will freeze at some moment.

Similar Messages

  • Does 11.1.1.6 OBIEE simple install work properly on Windows 7 64 bit OS?

    Can anyone confirm if the simple install for 11.1.1.6 simple install works normally on Windows 7 64 bit OS? I have run into a slew of issues including:
    1. hanging on the Create Domain. Stays at 0% for 2 hours and then fails
    2. Pre requisite checks do not work in a stable way (sometimes they fail and need to be ignored and other times they succeed)
    I removed all Oracle software and tried a completely clean install (DB, RCU, OBIEE, etc)..I have my loopback adapter set and also have JDK.
    Do we need to manually do the WLS + Software only to get this to work or does the Simple install actually work on Win 7 64 bit??
    Thanks.

    According to the certification matrix, it should work: http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/bi-11gr1certmatrix-166168.html
    Check row 72/73 in Current System Certification. Also, what do the logs say about the errors you are facing?

  • Simple Query working on 10G and not working on 11gR2 after upgrade

    Hi Folks,
    This is the first time i am posting the query in this Blog.
    I have a small issue which preventing the UAT Sigoff.
    Simple query working fine on 10.2.0.1 and after upgrade to 11.2.0.1 its error out
    10.2.0.4:
    =====
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1;
    COUNT(*)
    1
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=00001;
    COUNT(*)
    1
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1;
    ATTRIBUTE1
    00001
    11.2.0.1:
    =====
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=00001
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='1';
    no rows selected
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='00001';
    COUNT(*)
    1
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='00001';
    ATTRIBUTE1
    00001
    ++++++++++++++++++++++++++++++++++++++++++++++
    SQL > desc APPS.HZ_PARTIES
    Name Type
    ======== ======
    ATTRIBUTE1 VARCHAR2(150)
    ++++++++++++++++++++++++++++++++++++++++++++++
    Changes:
    Recently i upgraded the DB from 10.2.0.4 to 11.2.0.1
    Query:
    1.If the type of that row is VARCHAR,why it is working in 10.2.0.4 and why not working in 11.2.0.1
    2.after upgrade i analyzed the table with "analyze table " query for all AP,AR,GL,HR,BEN,APPS Schemas--Is it got impact if we run analyze table.
    Please provide me the answer for above two questions or refer the document is also well enough to understand.Based on the Answer client will sigoff to-day.
    Thanks,
    P Kumar

    WhiteHat wrote:
    the issue has already been identified: in oracle versions prior to 11, there was an implicit conversion of numbers to characters. your database has a character field which you are attempting to compare to a number.
    i.e. the string '000001' is not in any way equivalent to the number 1. but Oracle 10 converts '000001' to a number because you are asking it to compare to the number you have provided.
    version 11 doesn't do this anymore (and rightly so).
    the issue is with the bad code design. you can either: use characters in the predicate (where field = 'parameter') or you can do a conversion of the field prior to comparing (where to_num(field) = parameter).
    I would suggest that you should fix your code and don't assume that '000001' = 1I don't think that the above is completely correct, and a simple demonstration will show why. First, a simple table on Oracle Database 10.2.0.4:
    CREATE TABLE T1(C1 VARCHAR2(20));
    INSERT INTO T1 VALUES ('1');
    INSERT INTO T1 VALUES ('0001');
    COMMIT;A select from the above table, relying on implicit data type conversion:
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    C1
    1
    0001Technically, the second row should not have been returned as an exact match. Why was it returned, let's take a look at the actual execution plan:
    SELECT
    FROM
      TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,NULL));
    SQL_ID  g6gvbpsgj1dvf, child number 0
    SELECT   * FROM   T1 WHERE   C1=1
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |       |       |     2 (100)|          |
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    24 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("C1")=1)
    Note
       - dynamic sampling used for this statementNotice that the VARCHAR2 column was converted to a NUMBER, so if there was any data in that column that could not be converted to a number (or NULL), we should receive an error (unless the bad rows are already removed due to another predicate in the WHERE clause). For example:
    INSERT INTO T1 VALUES ('.0001.');
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    SQL> SELECT
      2    *
      3  FROM
      4    T1
      5  WHERE
      6    C1=1;
    ERROR:
    ORA-01722: invalid numberNow the same test on Oracle Database 11.1.0.7:
    CREATE TABLE T1(C1 VARCHAR2(20));
    INSERT INTO T1 VALUES ('1');
    INSERT INTO T1 VALUES ('0001');
    COMMIT;
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    C1
    1
    0001
    SELECT
    FROM
      TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,NULL));
    SQL_ID  g6gvbpsgj1dvf, child number 0
    SELECT   * FROM   T1 WHERE   C1=1
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |       |       |     2 (100)|          |
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    24 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("C1")=1)
    Note
       - dynamic sampling used for this statement
    INSERT INTO T1 VALUES ('.0001.');
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    SQL> SELECT
      2    *
      3  FROM
      4    T1
      5  WHERE
      6    C1=1;
    ERROR:
    ORA-01722: invalid numberAs you can see, exactly the same actual execution plan, and the same end result.
    The OP needs to determine if non-numeric data now exists in the column. Was the database characterset possibly changed during/after the upgrade?
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Ac adaptor not detecting, keyboard working strange

    Hi all,
    I need your help. I bought Hp pavilion g6 g6 - 2231TX . Serial no : [Personal Information Removed]
    Product no : C9L68PA#ACJ.
    Approximately 1.5 years back I bought with windows 8 pre installed. Now I facing sudden problem. Charger not get detecting. Keyboard working strange and some keys not at all working. And my laptop not able to charge .it's fully discharged. I need ur help to recover from this problem.

    Hi Bharthi,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP Pavilion g6-2231tx Notebook and getting multiple errors. Try performing a hard reset. When performing a hard reset please note remove any and all USB devices, and remove memory cards from the card reader slot. Disconnect all non-essential devices. If that does not help try to turn on the computer you start to press F11 repeatedly till the menu opens. You can do a system restore. System restore could be returned back in time to when no errors occurred. You also have the ability to perform a refresh on the system. Please read the document entirely before starting and make sure you back up all documents and files.
    Here is a link to the HP Support Assistant. This will update any drivers or software that is needed.
    Hope this is helpful.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • JDialog works strange.

    Thank you for interesting this thread.
    I found JDialog works strange in the code below.
    child1 appears strangely.
    It might be a bug ??
    or any way to avoid this ?
    I'm using...
    Windows' 64bit.
    JDK 1.6.0_24 64bit.
    import java.awt.Dialog.ModalityType;
    import javax.swing.JDialog;
    import javax.swing.SwingUtilities;
    public class Test {
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        JDialog root = new JDialog();
                        root.setBounds(0, 0, 100, 100);
                        root.setVisible(true);
                        JDialog child1 = new JDialog(root);
                        child1.setSize(200, 200);
                        child1.setLocationRelativeTo(null);
                        child1.setVisible(true);                    
                        JDialog child2 = new JDialog(child1);
                        child2.setModalityType(ModalityType.DOCUMENT_MODAL);
                        child2.getContentPane().setBackground(Color.RED);
                        child2.setUndecorated(true);
                        child2.setSize(100, 100);
                        child2.setLocationRelativeTo(null);
                        child2.setVisible(true);
    }Edited by: user7028083 on 2011/06/15 4:29
    Edited by: Darryl Burke -- fixed the code tags

    Thank you for your explain !!
    I always want to be able to create better English sentence like you.
    well, I create a class, which is named MySwingWoker and is extend SwingWorker.
    And I want to show loading message while the background job is running with MySwingWorker class.
    Why loading message is setUndecorated(true) is I think it looks better.
    (Actually, it's not important for anything, but my sense of accomplishment.)
    While testing, I found that dialog is appearing strangely some cases.
    So I started to search what is wrong, as other programmer do.
    While searching, I created the example I wrote above,
    and found that if I remove "child2.setUndecorated(null)" or "child1.setLocationRelativeTo(null)", it works normally.
    I wondered this is a bug or spesification or something else.
    I don't know if asking here is right way, or not.
    But I thought someone, knows Java very well, would give me a advice.
    thanks.

  • Bluez-simple-agent works for me

    The task was to transfer spreadsheets from a NOKIA E63 to an XPERIA X120 arc with
    some manual amendments by 'gnumeric' (on the PC).
    While getting bluez-simple-agent going was very much trial and error, it works on 2 machines (out
    of 3). One of them has a fairly old system, and one of them a 1-day old new installation (both work).
    BTW, there were a few problems with already installed libraries, so I simply renamed
    the elements PREVIOUSname... and ran pacman -S again and again till it worked.
    Tom.
    Following is the script for the job.
    # Run this under ArchLinux in X-Window (terminal xterm)
    # Whazitdo?
    # Use bluetooth to get spreadsheets from NOKIA E63 mobile phone,
    # put them on PC, edit them with program 'gnumeric' under ArchLinux,
    # and send the edited spreadsheets to XPERIA X10 arc mobile phone.
    # On NOKIA: switch Bluetooth ON
    # On X10    : switch Bluetooth and Bluetooth Settings ON,
    #                   start program 'Bluetooth File'
    # Tom Butz (TSB), Hamilton New Zealand, 27 Oct 2011
    /sbin/modprobe -a fuse
    /etc/rc.d/dbus stop
    /etc/rc.d/dbus start
    /etc/rc.d/bluetooth start
    # Check that scan discovers NOKIA
    # (sometimes it doesn't discover X10, but works all the same)
    hcitool scan
    echo 'If pairing is required, start it on your phone'
    echo 'Wait a few seconds, then push Ctrl-c to continue'
    bluez-simple-agent
    obexftp -b A8:7E:33:4E:AE:30 -g e:/Documents/2011.xls
    obexftp -b A8:7E:33:4E:AE:30 -g e:/Documents/budget.xls
    # Do SAVE files - even if there are no changes - to keep colours etc
    gnumeric ./2011.xls
    gnumeric ./budget.xls
    clear
    # Transfer to Xperia X10
    obexftp -b 84:00:D2:81:ED:44 -p 2011.xls
    obexftp -b 84:00:D2:81:ED:44 -p budget.xls
    /etc/rc.d/bluetooth stop
    /etc/rc.d/dbus stop
    echo Done

    The task was to transfer spreadsheets from a NOKIA E63 to an XPERIA X120 arc with
    some manual amendments by 'gnumeric' (on the PC).
    While getting bluez-simple-agent going was very much trial and error, it works on 2 machines (out
    of 3). One of them has a fairly old system, and one of them a 1-day old new installation (both work).
    BTW, there were a few problems with already installed libraries, so I simply renamed
    the elements PREVIOUSname... and ran pacman -S again and again till it worked.
    Tom.
    Following is the script for the job.
    # Run this under ArchLinux in X-Window (terminal xterm)
    # Whazitdo?
    # Use bluetooth to get spreadsheets from NOKIA E63 mobile phone,
    # put them on PC, edit them with program 'gnumeric' under ArchLinux,
    # and send the edited spreadsheets to XPERIA X10 arc mobile phone.
    # On NOKIA: switch Bluetooth ON
    # On X10    : switch Bluetooth and Bluetooth Settings ON,
    #                   start program 'Bluetooth File'
    # Tom Butz (TSB), Hamilton New Zealand, 27 Oct 2011
    /sbin/modprobe -a fuse
    /etc/rc.d/dbus stop
    /etc/rc.d/dbus start
    /etc/rc.d/bluetooth start
    # Check that scan discovers NOKIA
    # (sometimes it doesn't discover X10, but works all the same)
    hcitool scan
    echo 'If pairing is required, start it on your phone'
    echo 'Wait a few seconds, then push Ctrl-c to continue'
    bluez-simple-agent
    obexftp -b A8:7E:33:4E:AE:30 -g e:/Documents/2011.xls
    obexftp -b A8:7E:33:4E:AE:30 -g e:/Documents/budget.xls
    # Do SAVE files - even if there are no changes - to keep colours etc
    gnumeric ./2011.xls
    gnumeric ./budget.xls
    clear
    # Transfer to Xperia X10
    obexftp -b 84:00:D2:81:ED:44 -p 2011.xls
    obexftp -b 84:00:D2:81:ED:44 -p budget.xls
    /etc/rc.d/bluetooth stop
    /etc/rc.d/dbus stop
    echo Done

  • Simple Script works on 10.6 but not 10.5.8

    Hi,
    Brand new to Applescript...I made a simple script (saved as an application) to rename Excel Sheet Tabs and it works on my MBP (10.6.2) however when I try sharing with other users (10.5.8), it fails to carry out properly. It opens a blank workbook rather than the "test.xls" workbook and won't go any further. Am thinking it might be due to:
    1) where the script and .xls file were originally created/saved?
    2) 10.6.2 vs. 10.5.8?
    3) method of sharing? Tried attaching to Mac OSX Server Wiki, NAS and e-mailing but still wouldn't work.
    here's the script-
    tell application "Microsoft Excel"
    try
    open workbook workbook file name "test.xls"
    activate object worksheet "names"
    set myRange to range "A2" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 3 to myName
    set myRange to range "A3" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 4 to myName
    set myRange to range "A4" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 5 to myName
    set myRange to range "A5" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 6 to myName
    set myRange to range "A6" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 7 to myName
    set myRange to range "A7" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 8 to myName
    set myRange to range "A8" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 9 to myName
    set myRange to range "A9" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 10 to myName
    set myRange to range "A10" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 11 to myName
    set myRange to range "A11" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 12 to myName
    end try
    end tell
    Any suggestions will be greatly appreciated! THANKS!

    more info:
    a co-worker with a MacBook (10.5.8) was able to download the script and .xls file from our server and it worked...
    An eMac (10.4.11) was not able to run the script.
    All machines are running 2008 Office for Mac

  • 2nd display/monitor not working (strange problem)

    hello,
    I have a mac pro with this specification...
    Model Name:          Mac Pro
      Model Identifier:          MacPro1,1
      Processor Name:          Dual-Core Intel Xeon
      Processor Speed:          2.66 GHz
      Number Of Processors:          2
      Total Number Of Cores:          4
      L2 Cache (per processor):          4 MB
      Memory:          2 GB
      Bus Speed:          1.33 GHz
      Boot ROM Version:          MP11.005C.B08
      SMC Version (system):          1.7f10
      Serial Number (system):          Y***Q2
      Hardware UUID:          00000000-0000-1000-8000-0017F207E704
    Display monitor Specs :
      Chipset Model:          NVIDIA GeForce 7300 GT
      Type:          GPU
      Bus:          PCIe
      Slot:          Slot-1
      PCIe Lane Width:          x16
      VRAM (Total):          256 MB
      Vendor:          NVIDIA (0x10de)
      Device ID:          0x0393
      Revision ID:          0x00a1
      ROM Revision:          3008
      Displays:
    Cinema:
      Resolution:          1680 x 1050
      Pixel Depth:          32-Bit Color (ARGB8888)
      Mirror:          Off
      Online:          Yes
      Rotation:          Supported
    Cinema HD:
      Resolution:          1920 x 1200
      Pixel Depth:          32-Bit Color (ARGB8888)
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Rotation:          Supported
    Problems facing....
    My cinema HD is set to primary display and Cinema as 2nd display. Everything was working fine but suddenly my 2nd display stopped working. It remains black as if its in sleep mood. The small power led light on the monitor is On(not blinking). In Graphics/Displays shows both monitors are connected. I can drag any window to the 2nd display as if its working but its still black. In display preferences it shows both monitor on arrangement section. I can even change the resolution size of both monitors.
    My cinema display monitor has no problem. I have checked it already. I have swapped the DVI ports at the back of my cpu but it seems only the 2nd port is giving this problem. As if no matter what my 2nd port of graphics card is on sleep mood. I have taken it to our local apple center and both ports were working fine there, the only difference is they checked it using none apple lcd monitor. But when I brought it back to office, it had the same problem again. The strange thing is....one day while I was working the 2nd display suddenly appeared but when I restarted my mac, it went back to the same problem. Till now my 2nd display not showing anymore. I have reinstalled to new OSx but the problem remains. So can anyone pls tell me how I can solve this problem.
    thanks
    <Edited by Host>

    only the 2nd port is giving this problem
    You have an older card, and the second port is flaky. The problem follows the port.
    I am sorry to be so blunt, but the problem is YOU.
    No one wants to be the one to club you on the head and point out that your card is dying, and you are going to have to get a new(er) one. There is no "quick fix" for dying Hardware, and no fix at all for you when you will not connect the dots and realize your card is on its last legs.
    If running 10.6.4 or later, you can install the 5770 and it will work, but not at quite the advertised speeds if your slot will only go up to 8x.

  • Why won't it (simple dataset) work!

    I'm trying to use spry to open a simple xml file. But all I
    get are the table headings.
    This is the xml:
    <xml version="1.0" encoding="UTF-8">
    <dtable name='table1'>
    <datum>
    <name>Robby</name>
    </datum>
    <datum>
    <name>Bob</name>
    </datum>
    </dtable>
    </xml>
    This is the code:
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry/">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Spry Example</title>
    <!--Link the Spry libraries-->
    <script type="text/javascript"
    src="includes/xpath.js"></script>
    <script type="text/javascript"
    src="includes/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript"
    src="includes/SpryXML.js"></script>
    <!--Create a data set object-->
    <script type="text/javascript">
    var dsData = new
    Spry.Data.XMLDataSet("sample.xml","dtable/datum");
    </script>
    </head>
    <body>
    <div id="dataDiv" spry:region="dsData">
    <table id="Data_Table">
    <tr>
    <th>Name</th>
    <th>Date</th>
    </tr>
    <tr spry:repeat="dsData">
    <td>{name}</td>
    <td>---</td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    Can someone point out the problem? Thanks in advance!

    2 small things.
    Change the first line of the XML file to
    <?xml version="1.0" encoding="utf-8"?>
    and then get rid of the closing </xml> tag and it will
    work fine.
    Or, change your XPath to "xml/dtable/datum"
    Hope this helps.
    Don

  • Simple JS works in Acrobat 7, but not 8 - why?

    I have a simple form with 2 fields: "myname" and "phone". "myname" is a drop down list populated with 3 names. I want to be able to populate the "phone" field with a phone number corresponding to the "myname" field automatically.
    I have the following JS attached to the calculate event of the myname field. This works perfect in Acrobat 7.0.9, but does not work at all in Acrobat 8.0 professional or Adobe Reader 8. Does anyone know why?
    switch (myname.rawValue){
    case "Beth Voigt" :
    phone.rawValue = "431-3833";
    break;
    case "Bobbie Hartfiel" :
    phone.rawValue = "431-2019";
    break;
    case "Dave Brown" :
    phone.rawValue = "431-2448";
    break;
    default : phone.rawValue = "";
    event.newText = myname.rawValue;

    I was just asking where those scripts are located.
    You can configure Chrome to use Reader instead of its built-in viewer: http://blogs.adobe.com/vikrant/2010/12/use-adobe-plugins-to-view-pdfs-inside-google-chrome /

  • Procedure / Funtion works strangely at times

    Hi All,
    I am using
    Forms [32 Bit] Version 6.0.8.23.2 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Oracle Toolkit Version 6.0.8.23.0 (Production)
    PL/SQL Version 8.0.6.3.0 (Production)
    Oracle Procedure Builder V6.0.8.20.0 Build #1377 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 6.0.7.1.0 - Production
    Oracle Virtual Graphics System Version 6.0.5.38.0 (Production)
    Oracle Tools GUI Utilities Version 6.0.8.20.1 (Production)
    Oracle Multimedia Version 6.0.8.20.0 (Production)
    Oracle Tools Integration Version 6.0.8.18.0 (Production)
    Oracle Tools Common Area Version 6.0.8.18.0
    Oracle CORE Version 4.0.6.0.0 - Production
    I am facing a problem with the execution of Procedure / Function since long.
    For example the following function returns Null value sometimes:
    FUNCTION GET_LUD_KEY (P_LSE_NUM NUMBER) RETURN NUMBER IS
         CURSOR SEL_LUD_NUM IS
              SELECT NVL (MAX (LUD_NUM), 0) + 1
              FROM RE_LEASE_UNIT_DTLS
              WHERE LUD_LSE_NUM = P_LSE_NUM
              AND LUD_COM_NUM = :COMM.COMPANY;
         V_KEY     NUMBER;
    BEGIN
         OPEN SEL_LUD_NUM;
         FETCH SEL_LUD_NUM INTO V_KEY;
         CLOSE SEL_LUd_NUM;
         RETURN V_KEY;
    END;
    and then if i will change the funtion as follows and just add a Pause it works and then if I remove the pause then also it works.
    FUNCTION GET_LUD_KEY (P_LSE_NUM NUMBER) RETURN NUMBER IS
         CURSOR SEL_LUD_NUM IS
              SELECT NVL (MAX (LUD_NUM), 0) + 1
              FROM RE_LEASE_UNIT_DTLS
              WHERE LUD_LSE_NUM = P_LSE_NUM
              AND LUD_COM_NUM = :COMM.COMPANY;
         V_KEY     NUMBER;
    BEGIN
         OPEN SEL_LUD_NUM;
         FETCH SEL_LUD_NUM INTO V_KEY;
         CLOSE SEL_LUd_NUM;
    pause;
         RETURN V_KEY;
    END;
    I am having trouble with such a problem since long. Hopefully I am waiting for the solution for it is it because of any forms developer bug or I need any patch for it. Was this problem faced by any one else.
    Thanks and Best Regards
    Arif Khadas

    Dear Baig thanks for your quick response once again.
    The company item which belongs in every form and it belongs to a non database block called comm.
    The value for the company item is assigned in the pre form trigger and its working quite well.
    This are the company standards and its working quite well for each and every form in dozens of Modules.
    The problem is not with :comm.company for sure.
    The problem I am facing is the function works fine then sometimes in between it stops working then i just add a pause then it starts working again and then once again when i remove it works.
    Its as if the this procedure does not gets executed at all sometimes. I would like to know the reason for such strange behaviour.

  • X-Fi Xtreme Gamer wont work - strange noises

    Hello!
    I just bought my new soundcard today - disabled the onboard sound
    clean uninstalled the drivers with drivercleaner and installed the drivers from the attached cd.
    After rebooting strange noises appeared instead of normal sound
    - no normal usage is possible
    I tried several solutions, installed the web update 4, switched pci slots but the problem is still there...
    Hopefully someone will be able to help me because i'm getting really mad...
    Here my system specs :
    AMD Athlon 64 X2 5000+ 65nm Brisbane core
    DFI Infinity NF UltraII-M2 @ present bios & 6.86 whql chipset drivers
    2x 024 MB DDR2 Corsair TWIN2X2048-5400C4
    Leadtek Geforce 7950 GX2 @ Forceware 94.24
    Windows XP Professional with SP 2 up-to-date
    Tevion analog 5. Soundsystem
    Cooltek Real Plug Power 500W
    The system is completly @ default - non overclocked !
    Thanks in advance !
    RBMessage Edited by RunenBlut on 07-07-200709:32 AM
    Message Edited by RunenBlut on 07-07-200709:34 AM
    Message Edited by RunenBlut on 07-07-200709:37 AM
    Message Edited by RunenBlut on 07-07-2007:29 PM

    the strange point is that i turned on my pc yesterday morning - everything was the same - than i hit 3 times the reset to default button (i did not change anything from the beginning) and after the 3rd time everything worked fine...
    hopefully this will continue as its now
    thx for your reply anyway.

  • Condotion working strange

    Hello
    I noticed strange way of working of the condition in my query. I built the report which contains two characteristics in lines (shop, article) and three columns (value 1, value 2, difference). I built the condition like "difference <> 0" do present only the combinations to be explained. The matter is that it works perfectly, but not in case, when the summary of differences is 0. For example, when I have two lines with differences, one is "2" and second is "-2", the report presents no lines. For another selection, I can have for example three differences, like "1", "2", "-4" - in this case report will give me those three lines as a result.
    Any idea?
    Arelis

    Hi Arelis,
    Please check in your query designer if "supress Zero" is active for Rows and column. If yes select "Do Not Supress" You will find this option in Query Properties -> Rows/Column.
    Regards,
    kams

  • Illustrator CC tools working strangely on Cintiq 24HD on OsX Yosemite.

    Hello everyone. A couple of weeks ago I got a Cintiq 24HD to replace a previous one. I mostly use the tablets to work with PS but do some illustrator work with them too. So far I've used 3 different tablets with this same 27" iMac, a 21Ux, a 22HD (for only a day) and this 24HD one.
    Ever since I switched to the 24HD, I haven't been able to use Illustrator due to a strange bug that messes up with every tool.
    It seems like the tools "snap" to a point outside the area of the 24HD, to the far left of the screen, "pulling" everything I try to do towards that point, be it a selection or a figure or whatever I try.
    Im attaching a picture to better illustrate this. In this picture my mouse pointer was located on the upper right corner of the long rectangle you see there. I was actually trying to pull the square tool to the right to create a perfect square, and that is what happens.
    This only happens with illustrator. Photoshop works perfectly.
    Anyone else having or experienced this sort of issue? Any ideas on how to fix it?
    Thanks a bunch, all help is most welcomed.
    George.

    IIRC this issue has been brought up couple of weeks ago. Seems to be some issue with Yosemite (maybe only 10.10.2). There's not much you can do about it, but you might try and search for it in the forum.

  • Illustrator CC tools working strangely using Cintiq 24HD on OsX Yosemite.

    Hello everyone. A couple of weeks ago I got a Cintiq 24HD to replace a previous one. I mostly use the tablets to work with PS but do some illustrator work with them too. So far I've used 3 different tablets with this same 27" iMac, a 21Ux, a 22HD (for only a day) and this 24HD one.
    Ever since I switched to the 24HD, I haven't been able to use Illustrator due to a strange bug that messes up with every tool.
    It seems like the tools "snap" to a point outside the area of the 24HD, to the far left of the screen, "pulling" everything I try to do towards that point, be it a selection or a figure or whatever I try.
    Im attaching a picture to better illustrate this. In this picture my mouse pointer was located on the upper right corner of the long rectangle you see there. I was actually trying to pull the square tool to the right to create a perfect square, and that is what happens.
    This only happens with illustrator. Photoshop works perfectly.
    Apparently, this is one more issue related to this Yosemite thing.
    Anyone else having or experienced this sort of issue? Any ideas on how to fix it?
    Thanks a bunch, all help is most welcomed.
    George.

    IIRC this issue has been brought up couple of weeks ago. Seems to be some issue with Yosemite (maybe only 10.10.2). There's not much you can do about it, but you might try and search for it in the forum.

Maybe you are looking for