1.3.1 bug with clock (easily seen)

Just more of a quirk but I was wondering if when the Pre is in the locked screen, the time no longer shows "AM" or "PM" as it did before. Not really a big issue just wondering if this was intentional or did it get overlooked/or a bug. In WebOS 1.2.1, the AM/PM font was displayed in the lock screens.
Thanks.
Post relates to: Pre p100eww (Sprint)

Chris,
This feature didn't make it into preview, so rather than removing the field from the UI, it was decided to just disable the field. This has now been implemented in 10.1.3 Prodcution.
Regards,
Lisa Sherriff
JDev QA

Similar Messages

  • Has anyone seen this BUG with Time Warp and Dissolve?

    I'm doing some real basic slow-mo clips, transitioning with various dissolve wipes. I've come across a problem that is extreemly frustrating! I'm wondering if anyone has insight on a fix or if Adobe does service packs or fixes that I might be able to install.
    If you put two clips adjacent to each other on a timeline, apply time warp, set percentage to say 30% of realtime, then apply a dissolve between the clips, clip B, the outclip will play in reverse for a period equal to about 1/3 of the duration of the clip.
    This is true scrubbing through the timeline and even rendering.
    VERY ANNOYING!
    I'm going to call support tomorrow, but that's not going to help me get my project finished any sooner since this is a critical element in this composition. I've tried the time remapping method, but the frame-blend is no match for the pixel motion of time warp.

    Steve,
    I think your post #11 was being sarcastic, but you left a little wiggle room for it not to be. With the sarcastic interpretation, I must add my thoughts:
    Here is the link to the Adobe bug report form
    . It is important that users who discover bugs with reproducible steps file them - otherwise they don't stand a chance of ever getting fixed. Steven Gotz's advice was sound in this regard.
    As to the discussion of workarounds - since this is a User-to-User forum, the best that we as a community can do is help each other out with workarounds, since none of us here have the power to actually fix anything.
    The important thing to glean from SG's post is the definite need to file a bug report.

  • Bug with creation of DVR controls/indicators

    When creating a DVR control/indicator from the "New Data Value Reference" primitive on the block diagram, the control is created with "Size to Text" behaviour turned OFF for its label/caption. This is easily seen by attempting to modify the name of any newly created DVR control/indicator.
    This is inconsistent with all other LabVIEW controls where "Size to Text" is ON by default.
    The issue seems to occur for ALL situations where a DVR control/indicator is created from a block diagram object, leading me to think that it is likely an issue with the DVR control's template, wherever that is... 
    Chris Virgona

    Hi Chris,
    This was reported to R&D (#175625) for further investigation.  Thanks again for the feedback, Chris!  Have a great day!
    Taylor G.
    Product Support Engineer
    National Instruments
    www.ni.com/support

  • Optimization bug with C++ inlining

    Hi,
    While evaluating Sun Studio 11 I have identified an optimization bug with C++ inlining.
    The bug can easily be reproduced with the small program below. The program produces
    wrong results with -xO2, because an inline access function always returns the value 0.0
    instead of the value given on the commandline:
    djerba{ru}16 : CC -o polybug  polybug.cc
    djerba{ru}17 : ./polybug 1.0
    coeff(0): 1.000000
    djerba{ru}18 : CC -o polybug -xO2 polybug.cc
    djerba{ru}19 : ./polybug 1.0
    coeff(0): 0.000000            <<<<<<<<<< wrong, should be 1.000000This occurs only with optimization level O2; levels below or above O2 don't
    exhibit the bug.
    Compiler version is
    Sun C++ 5.8 Patch 121017-01 2005/12/11
    on Solaris 8 / Sparc.
    I include a preliminary analysis at the end.
    Best Regards
    Dieter R.
    -------------------- polybug.cc -------------------------
    // note: this may look strange, but this is a heavily stripped down
    // version of actual working application code...
    #include <stdio.h>
    #include <stdlib.h>
    class Poly {
      public:
        // constructor initializes number of valid coefficients to zero:
        Poly() { numvalid = 0; };
        ~Poly() {};
        // returns coefficient with index j, if valid. Otherwise returns 0.0:
        double coeff(int j) {
         if (j < numvalid) {
             return coefficients[j];
         } else {
             return 0.0;
       // copies contents of this Object to other Poly:
        void getPoly(Poly& q) { q = *this; };
        // data members:
        // valid coefficients: 0 ... (numvalid - 1)
        double coefficients[6];
        int numvalid;
    void troublefunc(Poly* pC) {
        // copies Poly-Object to local Poly, extracts coefficient
        // with index 0 and prints it. Should be the value given
        // on commandline.
        // Poly constructor, getPoly and coeff are all inline!
        if (pC) {
         Poly pol;                      
         pC->getPoly(pol);
         printf("coeff(0): %f\n",pol.coeff(0));
    int main(int argc,char* argv[]) {
        double d = atof(argv[1]);
        // creates Poly object and fills coefficient with index
        // 0 with the value given on commandline
        Poly* pC = new Poly;
        pC->coefficients[0] = d;
        pC->numvalid = 1;
        troublefunc(pC);   
        return 0;
    The disassembly fragment below shows that the access function coeff(0), instead
    of retrieving coefficient[0] simply returns the fixed value 0.0 (presumably because the
    optimizer "thinks" numvalid holds still the value 0 from the constructor and that therefore
    the comparison "if (i < numvalid)" can be omitted).
    Note: disassembly created from code compiled with -features=no%except for simplicity!
    00010e68 <___const_seg_900000102>:
            ...     holds the value 0.0
    00010e80 <__1cLtroublefunc6FpnEPoly__v_>:
       10e80:       90 90 00 08     orcc  %g0, %o0, %o0      if (pC) {   
       10e84:       02 40 00 14     be,pn   %icc, 10ed4
       10e88:       9c 03 bf 50     add  %sp, -176, %sp
                                                       local Poly object at %sp + 120
                                                             numvalid at %sp + 0xa8 (168)
       10e8c:       c0 23 a0 a8     clr  [ %sp + 0xa8 ]      Poly() { numvalid = 0; };
                                                             pC->getPoly(pol):
                                                             loop copies *pC to local Poly object
       10e90:       9a 03 a0 80     add  %sp, 0x80, %o5
       10e94:       96 10 20 30     mov  0x30, %o3
       10e98:       d8 5a 00 0b     ldx  [ %o0 + %o3 ], %o4
       10e9c:       96 a2 e0 08     subcc  %o3, 8, %o3
       10ea0:       16 4f ff fe     bge  %icc, 10e98
       10ea4:       d8 73 40 0b     stx  %o4, [ %o5 + %o3 ]
                                                             pol.coeff(0):
                                                             load double value 0.0 at
                                                             ___const_seg_900000102 in %f0
                                                             (and address of format string in %o0)
       10ea8:       1b 00 00 43     sethi  %hi(0x10c00), %o5
       10eac:       15 00 00 44     sethi  %hi(0x11000), %o2
       10eb0:       c1 1b 62 68     ldd  [ %o5 + 0x268 ], %f0
       10eb4:       90 02 a0 ac     add  %o2, 0xac, %o0
       10eb8:       82 10 00 0f     mov  %o7, %g1
                                                             store 0.0 in %f0 to stack and load it
                                                             from there to %o1/%o2
       10ebc:       c1 3b a0 60     std  %f0, [ %sp + 0x60 ]
       10ec0:       d2 03 a0 60     ld  [ %sp + 0x60 ], %o1
       10ec4:       d4 03 a0 64     ld  [ %sp + 0x64 ], %o2
       10ec8:       9c 03 a0 b0     add  %sp, 0xb0, %sp
                                                             call printf
       10ecc:       40 00 40 92     call  21114 <_PROCEDURE_LINKAGE_TABLE_+0x54>
       10ed0:       9e 10 00 01     mov  %g1, %o7
       10ed4:       81 c3 e0 08     retl
       10ed8:       9c 03 a0 b0     add  %sp, 0xb0, %sp
    Hmmm... This seems to stress this formatting tags thing to its limits...

    Thanks for confirming this.
    No, this happens neither in an Open Source package nor in an important product. This is an internal product, which is continuously developed with Sun Tools since 1992 (with incidents like this one being very rare).
    I am a bit concerned with this bug though, because it might indicate a weakness in the area of C++ inlining (after all, the compiler fails to correctly aggregate a sequence of three fairly simple inline functions, something which is quite common in our application). If, on the other hand, this is a singular failure caused by unique circumstances which we have hit by sheer (un)luck, it is always possible to work around this: explicitly defining a assignment operator instead of relying on the compiler-generated one is sufficient to make the bug go away.

  • ESS Timesheet error with Clock Times

    Hi everyone,
    Has anyone seen this issue? (ERP 6.0, EP 7):
    Timesheet data entry profile is configured 'With Clock Times' and WITHOUT 'Release on Saving'.  On the daily view of the timesheet, when clock times are entered and Refresh or Review is depressed, the number of hours is populated and the following error displays:
    "Number of hours not valid when Start Time and End Time are entered"
    This only displays:
    -  when the profile is configured without 'Release on Saving' checked. When it IS checked, the error goes away.
    -  from the daily view (no clock times on the Weekly View)
    -  in the portal timesheet, not via CAT2 in ECC
    Any suggestions?
    Thanks!
    Message was edited by:
            Frederic Wood

    <u>Without checking 'Release on saving':</u> The system checks the number of hours value with the corresponding hours mentioned in IT0007.
    <u>On checking 'Release on saving':</u> It overwrites the number of hours stored in IT0007 in the back end system.
    This happens because this option has dependency with 'With Clock times' option. For this option, the system automatically deducts unpaid breaks, as determined in the employees's work schedule, when calculating the number of hours.
    If this helps, pl do reward.
    Thanks
    Narasimha

  • (SOLVED!) Bugs with Microphone (X-Fi Soundcard) on Voice Tools (Teamspeak 3)

    My PC:
    Mainboard: ASUS M4A89GTD PRO
    Voltage : BEQUIET! Straight Power 580W
    CPU : AMD Phenom II X4 965 Black Edition 3,40GHZ
    RAM : OCZ 2x2GB Dual Kit 333
    GFX : MSI Radeon R5770 Hawk
    Sound : Creative X-Fi Fatalty Titanium PCIe
    Headset : Speedlink Medusa 5. Progamer Edition (with Cinch! no USB crap..)
    OS : Microsoft Windows XP Professional x64 Edition Version 2003 SP2
    Hi, i've got the X-Fi Fatalty Titanium Soundcard since last day and im really happy about that soundcard.
    But......
    Ive gotta real problem now.. when i starting a voice program like Teamspeak 3 or ICQ / X-Fire whatever..
    my voice is crunshing, sounds like overdri'ved. i tried every settings on that drivers but it wont work.. and the best is.. when i start to listen myself on windows to check how my voice is on it.. it is clear and fine. Only on Voice Tools are this crap sound.. i really dont know anymore what i can do also to smash the card outta my window..
    what i've tried :
    All Driver / Stuff deinstalled.. cleaned with Driver Sweeper / Driver Cleaner Pro and TuneUp Registry Cleaner
    and i've tried the old stuff on CD inclusi've the latest Driver for my OS (Windows XP Professional x64) "2.7.0007"
    it dont work.. got the same bug
    i've tried the Final Edition of Pax Drivers 200 Suit... and same thing....
    at last i've tried the latest driver 2.7.0007 with the latest Console Center "2.6.09" but also.. the sound on Voice Tools always craped again..
    and i got on Games like Call of Duty 4 always some sound bugs like a shot is repeat or some other sound is repeat or strange cut.
    this all makes me really sad...
    i would be looking forward if anyone here got a idea how to fix this problem..
    l8er

    FRe: Bugs with Microphone (X-Fi Soundcard) on Voice Tools (Teamspeak 3)?so... i keeped this settings as ussualy for the future for other guys they got maybe the same problems with voicetools and microphone settings on X-Fi cards..
    i installed the actuallay driver settings and all programs for the X-Fi..
    after that i restart my PC and going into the BIOS and activated my Onboardsoundcard.
    when i start my windows again i installed the HD Realtek Drivers and Programs... after restart i choose on System--> Audio etc..
    Soundinput ---> Realtek
    Soundoutput ---> X-Fi
    now it works for me great.. i got no Microphone bugs anymore on Voicetools and also i got a really really great sound from the X-Fi on Games and Music.
    I hope i have some guys help with this art of solving that problem.. sry but i've tryied 0 different ways of Driver settings and i tryied Daniel_K Drivers / Pax Drivers and old Creative Drivers... nothing solved my problems..
    oh and of course if u got some noise sounds like a pipe sound but really high and not really loud just like u can hear what the Computer is working inside your headset.. make the newest Creative Drivers on it.. there must be a new setting who Mute this sounds.. i got no signals anymore in my headset how the PC is work.. all is silence when i do nothing.. its really chilled
    So.. bb and l8er for u all..
    oh.. and thx for "no" support after all in the last 2 Days here..
    P.S.
    this will be the last Creative Card for me @ Creative Firm.. no kidding.. i've payed 26? for the badest support and the badest worked drivers i've ever seen in my life.. i hope there will be more rivals in future for u.. so u can stop to think about?u can?make the worst support at?all to the clients who buy your stuff..
    Best Regards
    Kyrane

  • Problem/bug with AIR 3.0

    Hi guys,
    I'm here again. I got this error when I tried to publish my project with AIR 3.0.. Actually, I've created an application usign AIR 2.6 (default comes with CS 5.5). It was used to get published and I used to update it on regular basis. Few days back I had to copy AIRSDK3 folder to Adobe's program files' folder, where I renamed AIR2.6 to anything else and AIRSDK3 to AIR2.6... Today, when I tried to publish my same project,  I got this following error. Hope that would help adobe (as it is beta version).
    (By the way, when I renamed the folders to their original names, it worked and published).

    Steve,
    We have seen the same thing and reported it to Forte. We have not yet
    heard back with a bug report number...
    For now, we have removed all comments from our sql code.
    Derk
    >
    We have just switched from version 2.0.H.1 to version 3.0.F.2 in development,
    and have discovered a bug with comments in SQL code.
    Anywhere in a cursor definition, or within SQL code in a method, if we use the
    multi-line comment format "/* ... */" even on a single line, then the code
    compiles fine, but crashes at runtime with a "Invalid SQL Command" error. It
    looks as though Forte is including the comment as part of the SQL!
    Has anyone else seen this problem? We have not found it in the known bugs list
    for 3.0.F.2 or the fixed bugs list for 3.0.G
    This worked fine for us prior to version 2, and if we don't get it fixed in
    Forte, it means a lot of rework to change the existing comments to single-line
    "// ..." format.
    Regards,
    Steve Isaac
    Senior Consultant, Information Services Group
    Hydro Electric Corporation of Tasmania
    4 Elizabeth St, Hobart, Australia, 7000
    Phone : +61 03 6230 5161
    e-mail: [email protected]
    Check out: http://mama.indstate.edu/users/sodana/lucado.html
    *** Derk Norton ***
    *** U S WEST Communications Voice : (303) 965-8772 ***
    *** 1801 California Street FAX : (303) 896-3565 ***
    *** Denver, Colorado 80202 Email : [email protected] ***
    **********************************************************************

  • Possible bug with replace on clobs?

    I couldn't find this documented anywhere, and wanted to check if I had data corruption or if there indeed is a bug with replace on long clobs.
    Best I can figure, if you are replacing before the 32768 border and a previous replace in that clob moves the new location to be after 32768, then your clob gets clobbered in that area.
    I'd like to know if this is a verifiable bug so that I feel better about having written my own replace using instr/substr.
    Oracle 10g (10.2.0.1.0)
    Test procedure:
    ======================================
    declare
    vclob clob;
    tempc1 clob;
    tempc2 clob;
    pos number;
    ch char(1);
    begin
    vclob := rpad('*', 32749, '*') || '****12345./~\.12345*' || rpad('*', 10000, '*');
    for vi in 1..5 loop
    ch := to_char(vi);
    tempc1 := vclob;
    pos := instr(tempc1, ch);
    while (pos > 0) loop
    tempc1 := substr(tempc1, 1, pos-1) || 'BUGS' || substr(tempc1, pos+1);
    pos := instr(tempc1, ch, pos+1);
    end loop;
    tempc2 := vclob;
    pos := instr(tempc2, ch);
    while (pos > 0) loop
    tempc2 := substr(tempc2, 1, pos-1) || 'BUGGY' || substr(tempc2, pos+1);
    pos := instr(tempc2, ch, pos+1);
    end loop;
    dbms_output.put_line('Replace ' || ch || ' at ' ||
    instr(vclob, ch) || ' and ' ||
    instr(vclob, ch, instr(vclob, ch)+1));
    dbms_output.put_line(': 32750 32760 32770 32780');
    dbms_output.put_line(': 67890123456789012345678901234567890');
    dbms_output.put_line('Original: ' || substr(vclob, 32746, 50));
    dbms_output.put_line(ch || '->BUGS : ' ||
    substr(replace(vclob, ch, 'BUGS'), 32746, 50));
    dbms_output.put_line('Correct : ' || substr(tempc1, 32746, 50));
    dbms_output.put_line(ch || '->BUGGY: ' ||
    substr(replace(vclob, ch, 'BUGGY'), 32746, 50));
    dbms_output.put_line('Correct : ' || substr(tempc2, 32746, 50));
    end loop;
    end;
    /======================================
    Output: (changed slightly for formatting)
    ======================================
    Replace 1 at 32754 and 32764
    : _______ 32750 ___ 32760 ___ 32770 ___ 32780
    : _______ 67890123456789012345678901234567890
    Original: ********12345./~\.12345***************************
    1->BUGS : ********BUGS2345./~\.BUGS2345*********************
    Correct : ********BUGS2345./~\.BUGS2345*********************
    1->BUGGY: ********BUGGY2345./~\.BUGGY2345*******************
    Correct : ********BUGGY2345./~\.BUGGY2345*******************
    Replace 2 at 32755 and 32765
    : _______ 32750 ___ 32760 ___ 32770 ___ 32780
    : _______ 67890123456789012345678901234567890
    Original: ********12345./~\.12345***************************
    2->BUGS : ********1BUGS345./~\.1BUGS345*********************
    Correct : ********1BUGS345./~\.1BUGS345*********************
    2->BUGGY: ********1BUGGY345./~\.¿¿¿5************************
    Correct : ********1BUGGY345./~\.1BUGGY345*******************
    Replace 3 at 32756 and 32766
    : _______ 32750 ___ 32760 ___ 32770 ___ 32780
    : _______ 67890123456789012345678901234567890
    Original: ********12345./~\.12345***************************
    3->BUGS : ********12BUGS45./~\.1¿¿5*************************
    Correct : ********12BUGS45./~\.12BUGS45*********************
    3->BUGGY: ********12BUGGY45./~\.¿¿¿5************************
    Correct : ********12BUGGY45./~\.12BUGGY45*******************
    Replace 4 at 32757 and 32767
    : _______ 32750 ___ 32760 ___ 32770 ___ 32780
    : _______ 67890123456789012345678901234567890
    Original: ********12345./~\.12345***************************
    4->BUGS : ********123BUGS5./~\.1¿¿5*************************
    Correct : ********123BUGS5./~\.123BUGS5*********************
    4->BUGGY: ********123BUGGY5./~\.¿¿¿5************************
    Correct : ********123BUGGY5./~\.123BUGGY5*******************
    Replace 5 at 32758 and 32768
    : _______ 32750 ___ 32760 ___ 32770 ___ 32780
    : _______ 67890123456789012345678901234567890
    Original: ********12345./~\.12345***************************
    5->BUGS : ********1234BUGS./~\.1234BUGS*********************
    Correct : ********1234BUGS./~\.1234BUGS*********************
    5->BUGGY: ********1234BUGGY./~\.1234BUGGY*******************
    Correct : ********1234BUGGY./~\.1234BUGGY*******************======================================

    Correct me if I'm wrong. What this lines does (if there isn't a space between the two single-quotes) is removing the string represented by xmlnsVal from the string xmlDoc. I've been using this method in some situations.
    But I don't know why it won't work either. However, isn't it necessary to do conversion from CLOB to varchar2 before calling replace? Maybe the implicit conversion isn't so reliable. I've seen someone did the following:
    -- clobvar is CLOB
    -- stringvar is varchar2(4000)
    stringvar := cast(clobvar as varchar2(4000));      -- not testedAfter that you can use stringvar in your replace function.
    Or alternately, if exists in 9i, you can try the function regexp_replace() instead. Good luck.

  • Lr4 re-occuring bug with Tethered Capture bar disappearing

    In Lr4 64bit Win7 re-occuring bug with Tethered Capture Bar disappearing after deleting a picture in library.  The only way to get it back is to Stop and Start Tethered Capture.  Is there a fix for this?

    Hi marketbreak.  If you can reproduce it reliably, can I get you to post this on the Official Feature Request/Bug Report Forum where your reported can be tracked properly please?  Real bugs can easily get lost in the volume of threads on this user to user forum.

  • Potential bug with gps in iphone 3g?

    Hey guys,
    So I got my 16gig black iphone today. Everything was working fine, internet, maps, even the gps, until this evening. Sometimes, when I tell maps to locate me, the thing uses the triangulation to triangulate me to close to houston, texas. Now I live on the east coast, so this thing is definetely off. Also, when it was in that stage, waiting a little while and pressing the locate me again did nothing--no retriangulation or the little blue gps point showing up, it was stuck in texas. I tried everything, from resetting the default settings to hard resets (holding down the button on top), but it just wouldnt go back. Sometimes, the little blue circle thing that spins also sits there for a long time spinning, never triangulating anything. The 3g internet still works, along with all the other apps that use the internet.
    Heres where it gets interesting.
    I decided to turn of the 3g and use edge only. That has worked perfectly every time so far--It triangulates correctly and gps point shows up. I also tried wifi and that too has worked every time. but when I turn 3g back on, sometimes it will work but then suddenly, it stops working again.
    Also, about once or twice, the 3g stops working all together(cant access internet on 3g or maps dont load). Again, I turn off and on the 3g in the settings and it starts working again. Im thinking that this is some sort of software bug since I have seen the triangulation problem on 2 other separate iphones (both 16gig blacks also btw). But this could also be some sort of major hardware problem too.
    Maybe others should try turning off and on 3g and trying with edge and 3g to see if triangulation works. As of right now, the triangulation and gps are both working for me.
    I have tried this inside and out and it makes no diff. Right now it is working inside, but sometimes it doesnt and the same for being outside. Also, one phone had apps and the other didnt, and both had problems, so i dont think it has to do with apps. Also, I have not tried the newer firmware on itunes yet.
    Also, Ive read that other people having this problem also triangulate to texas. Whats with that? is that some default location or is something off with att?
    Sorry for the long post but I just wanted to be detailed.

    I am in the UK and I have no problems with GPS on my 16GB iPhone 3G when 3G is on, but it only seems to find my location if I am on the move! As soon as I am stationary outside it seems to default to 24th Street, Newport Beach, CA! If I get in my car start to drive and click on locate me, it will find me and track me the whole journey. It will also work as I reach my destination for about 5 minutes when suddenly the blue pin is gone after the screensaver comes on and by clicking on the locate button, it defaults back to California. Switching 3G off and then trying the locate button, it will spin forever or default me to CA. Also found that the locate me button seriously drains the battery, which is to be expected as it is working it's little balls of trying to find me. Saying all this, on one or two occasions it has found me when I have been stationary, so the issue seems to be inconsistent in it's behaviour. It is a shame as I do like the GPS functionality especially when using apps such as Vicinity or Local Picks. I do not want to reset my network settings as I have setup numerous wirless network locations and saved their passwords and I do not want to go through all that, only for the GPS to get it's knickers in a twist again.
    Come on Apple, sort out the firmware and give us an update that will fix this temperamental GPS location service! I love this phone apart from the little gripes such as no Flash support, dodgy GPS and no MMS which I am sure can be all fixed via a software update! I am waiting...

  • AIR bug with iOS fullscreen video! (easy repro)

    Here's a bug with fullscreen AIR apps not dealing with iOS fullscreen video resize. Easy repro:
    1. Create an mc with a background graphic aligned with the top and bottom of the stage. (This is so you can easily see the bug.)
    2. Add a stageWebView and load an html page with embedded video. (or just load a video directly)
    3. Play video and enable fullscreen mode.
    4. Rotate device 90 degrees while in fullscreen mode and then hit "Done" button to return to stage (exit fullscreen).
    5. BUG: Stage is now "pushed down" and off-screen. (even though the mc still traces x = 0)
    Conclusion: the display bug occurs when the user exits the iOS native player fullscreen mode from a different orientation then they started with (common if the original aspect ratio was portrait)
    Can someone else please confirm this? (The amount of stage "push" appears to corrolate with the height of the iOS status bar.)
    Thanks.
    PS. You don't necessarily need to load an html page. You can just have stageWebView load a video directly and experience the same result.
    PPS. I also tried using the new UIWebView Native Extension and am seeing the same thing, so this is really looking like an AIR/Flash bug with the iOS native player.

    A simpler summary for this issue:
    If the device has been rotated since entering Fullscreen native player, a fullscreen app will be "pushed downwards" and off-screen slightly.
    BUG: Adobe AIR app does not stay in fullscreen mode after such and event, ruining graphic UI for fullscreen apps.
    Simple workaround: listen for on orientationChange and if stage.displayState == StageDisplayState.NORMAL, set to stage.displayState = StageDisplayState.FULLSCREEN.
    However, iOS native player will lose traditional status bar appearance (and risk rejection by Apple??)
    Complex workaround (as mentioned earlier) will keep the native player's status bar but result in the app's screen "flashing" upon resizing the stage.
    Please help fix this bug by commenting in my bug report. Thanks again.
    https://bugbase.adobe.com/index.cfm?event=bug&id=3486264

  • Apple TV Bug - Internal Clock Incorrect

    Hello. I think I've found a pretty significant bug with the Apple TV. The internal clock is clearly 1 hour ahead of the current time, so hasn't taken into account the clocks going forward/backward complication.
    I know this cause I just played some content on my Apple TV. When I look at my Recently Played playlist in iTunes, the content that I just played on my Apple TV shows up, but it says I played it an hour later than it currently is.
    Is there any way to manually set your Apple TV's internal clock?

    Hi,
    This has been covered by Mac Fixit, and it appears that Apple is aware of the problem. Here's what they have to say -
    Apple TV Special Report: Incorrect time setting
    It appears that many Apple TVs are displaying the wrong time -- generally several hours ahead of the current, actual time as maintained by the host Mac/PC. This causes issues with the "Last played" time-stamp, which may erroneously show a future time for the last playback.
    This is an issue into which Apple is looking, and may necessitate an Apple TV software revision.

  • 30EA3: German language bug with user defined reports still not fixed

    In 30EA2: Limited folder functionality with German language
    I wrote about a bug in 30EA2. Was this message noticed by the developers?
    The bug still exists in 30EA3.
    In new folders for user definded reports only the options "Kopieren" and "Exportieren" (copy and export) are available, when SQL-Deverloper runs in German language mode.
    A workaround is to force language to English with the line
    AddVMOption -Duser.language=en
    in sqldeveloper.conf

    I made a new thread for the same bug in 3.1EA2:
    3.1EA2 Old bug with German language settings still exists
    I have some hope, that my problem finally got noticed by the developers.

  • 3.1EA2 Old bug with German language settings still exists

    In the past I wrote several times about a bug in SQL Developer when running in German language mode. This bug is still not fixed in 3.1 EA2:
    In new folders for user definded reports only the options "Kopieren" and "Speichern unter ..." ('Copy' and 'Cave as') are available, when SQL-Deverloper runs in German language mode. Other options like "Bearbeiten, Neuer Ordner, Neuer Bericht, Ausschneiden, Einfügen, Löschen" (Edit, New Folder, New Report, Cut, Paste, Delete) are missing. A workaround is to force language to English with the line
    AddVMOption -Duser.language=en
    in sqldeveloper.conf
    I mentioned it first in Re: Folders with limited functionality about version 2.1.1.64 and then in 30EA2: Limited folder functionality with German language 3.0 EA2 and German language bug with user defined reports still not fixed Beta Release 3.0 EA3
    Edited by: user1775992 on 22.11.2011 03:30

    I have raised a bug on this issue and I am actively looking into it.

  • Okay, i have 2 bugs with maverick.  First, when I delete a file within a window, the files deletes but the preview doesn't delete until I close the window and reopen it.  Second, I work on a network of computers and the search feature is now buggy...

    Okay, i have 2 bugs with maverick.  First, when I delete a file within a window, the files deletes but the preview doesn't delete until I close the window and reopen it.  Second, I work on a network of computers and the search feature is now buggy...  When I search for a file, A) it asks me if it's a name, or it wont produce anything, and B), its slower than in prior OS versions and in some instances I have to toggle to a different directory and go back to my original directory in the search: menu bar or the search wont produce anything...  Very buggy. 

    It appears to me that network file access is buggy in Maverick.
    In my case I have a USB Drive attached to airport extreme (new model) and when I open folders on that drive they all appear empty. If I right click and I select get info after a few minutes! I get a list of the content.
    It makes impossible navigate a directory tree.
    File access has been trashed in Maverick.
    They have improved (read broken) Finder. I need to manage a way to downgrade to Lion again.

Maybe you are looking for

  • Itunes on Windows 7 PC just rapidly cycles.

    My Itunes on my Windows 7 pc just rapidly cycles through songs and does not play.  I have to exit the program via Task manager to stop it otherwise I can't close Itunes.  Any help would be great.

  • Illustrator CC 2014.1.0 Consistently crashes when using the Curvature tool

    I'm using the curvature tool to trace a simple JPEG. After a few minutes the program will crash. Never had this issue with previous versions of Illustrator. I am using OSX 10.7.5 Any ideas as to why this would happen? Thanks

  • Validating Date parameter in discoverer

    Hi In the discoverer is it possible to validate or restrict the users to enter the wrong format of the date e.g. if the date format to be entered is dd-mm-yyyy, the system should not allow the users to enter mm-dd-yy, Is it possible to put any valida

  • Problem change Graphics2D into jpg

    this is part of the code i have private void drawPawn(Graphics2D gr, Integer pawn, Color c) {           Coordinate coord = parent.getGameCore().currentBoard().getCoordinate(                     pawn);           int y = coord.getLine();           int

  • Block order by instance locking of trackable items

    We have a TSO setup in 11.5.9 and we have implemented with custom code the following check: If a user tries to add a new order that references an installed item (in install base) that already has an open order it displays an error message and forbids