OS 2.1 Bug with CGAffineTransform and Views?

Anyone get any complaints about shifting images in OS2.1? I use
[[rootViewController view] addSubview:[holdemController view]];
CGAffineTransform rotate = CGAffineTransformMakeRotation(1.57079633);
rotate = CGAffineTransformTranslate (rotate, 80.0, 80.0);
[[rootViewController view] setTransform:rotate];
And it works fine on the previous OS 2.0 release, but reports have been that's broken in 2.1
Anyone else seeing these complaints?

I fixed it by setting the view to the center of the window rather than shifting it 80x80.
eg: controller view center = window center
It was a bug they fixed I'm sure in 2.1, but bug fixes are sometimes just as bad if not worse than the bugs themselves.
C'est la vie.
Hopefully they accelerate the review of my bug fix though, considering it was their change that broke it. I'm not holding my breath, however..

Similar Messages

  • Compiler bug with generics and private inner classes

    There appears to be a bug in the sun java compiler. This problem was reported against eclipse and the developers their concluded that it must be a problem with javac.
    Idea also seems to compile the example below. I couldn't find a bug report in the sun bug database. Can somebody tell me if this is a bug in javac and if there is a bug report for it.
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=185422
    public class Foo <T>{
    private T myT;
    public T getT() {
    return myT;
    public void setT(T aT) {
    myT = aT;
    public class Bar extends Foo<Bar.Baz> {
    public static void main(String[] args) {
    Bar myBar = new Bar();
    myBar.setT(new Baz());
    System.out.println(myBar.getT().toString());
    private static class Baz {
    @Override
    public String toString() {
    return "Baz";
    Eclipse compiles and runs the code even though the Baz inner class is private.
    javac reports:
    Bar.java:1: Bar.Baz has private access in Bar
    public class Bar extends Foo<Bar.Baz>
    ^
    1 error

    As I said in my original post its not just eclipse that thinks the code snippet is compilable. IntelliJ Idea also parses it without complaining. I haven't looked at the java language spec but intuitively I see no reason why the code should not compile. I don't think eclipse submitting bug reports to sun has anything to do with courage. I would guess they just couldn't be bothered.

  • A bug with flags and active view? Or is it a (bad) feature?..

    As I mark an image in a folder view as flagged and then switch to a collection view and look on the same image, it's not flagged.
    I expect, that information about marking the image as flagged remains on that image, not on a current active view.

    It's as designed - Flags are local to a Folder/Collection.
    >Or is it a (bad) feature?
    It depends - some think it's a great and others hate it with a passion.

  • Just got some bugs with Dock and Dashboard

    Hi!
    Been using my mac for 1 year now. Sudden some bugs just came by.
    I was using two widgets; "Ordbok" and "TriTrans".
    When I now try to use TriTrans I get this: http://bildr.no/view/75953 and I can't enter a search.
    When I try to use Ordbok i get this: http://bildr.no/view/75954
    I tried to make a new account just to see if I got the same problem and I sudden did. Then I went back to my main account and deleted the Dock, Desktop and Dashboard pref files (in Library/Preferences). Rebooted and tried again. Didn't work.
    When I made a new account I also noticed that the Dock had an icon with the "question mark" (this ting: ?). When I hovered it I got: "iMovie". Some icons to the left I got a working "iMovie HD". Where does the iMovie (wannabe) icon come from? (It was a new account).
    Anyways, someone now how to fix some of these?
    Thanks!
     MacBook   Mac OS X (10.4.9)   2 Ghz Intel Core Duo, 1 Gb RAM

    Ahh, that solves my widget problem. Thanks!
    Btw, someone who got any idea of the "question mark" icon I get in the dock when deleting the Dock config file or add new user? It says "iMovie" but beside it I got the "iMovie HD" icon, working.

  • Wierd bug with menus and subtitles on Intel mac

    I have found DVDSP4 will not let me place buttons on a menu!! The mouse clicks don't do anything in the menu viewer. I suspect some system incompatibility is this is also why I can't drop a subtitle into the subtitle streams either with DVDSP4 enev though it works fine on DVDSP3 on my G5 machine. Has anyone seen this strange bug before?
    I use a Wacom Intuos tablet, have a four-core Intel MacPro with 4GB of RAM, and use a LOT of graphic applications (FC5, Motion, Maya, Poser, Vue, Illustrator, Photoshop, and many molecular modeling packages)
    Has anyone seen this problem before (and is there a remedy)?
    Thanks
    tom hsu

    Do you have the Universal Version of DVD SP? I know you mentioned it is academic but did not recall if you have the proper one for the Intel Macs(?)

  • Bug with resourceManager and menuBar

    I have a menuBar with two sub-items ("French", "English")
    Of course, each of them set localChain to  either "fr_FR" or "en_US" to change the language used for the entire UI.
    When i do this, everything gets translated alright expet the top menu items !  So in the code below, "Options" and "Help" stays in english after a switch to french. (The default language for my app at startup is english)
    To test this problem, i placed a button outside of the menu structure with action (click="localeChain=[fr_FR];") and it works fine !... Everything, including all the menu items gets translated !
    Any suggestion as to how i could get arround this bug ?
    Thanks !
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:components="components.*"  width="100%" height="100%" applicationComplete="init()"  backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#03006B, #03606B]"   layout="absolute">
        <mx:Script>
            <![CDATA[
                import mx.events.MenuEvent;
                import utilities.ResourceUtility;
                import mx.resources.ResourceBundle;
                import mx.controls.Alert;          
                import mx.core.IFlexDisplayObject;
                 [Bindable]
                 public var frToggled:Boolean ;
                 [Bindable]
                 public var enToggled:Boolean;
                private function init():void
                    ResourceUtility.setResources(resourceManager);
                    switch(resourceManager.localeChain.toString())
                        case "en_US":
                        enToggled=true;
                        frToggled=false;
                        break;
                        case "fr_FR":
                        enToggled=false;
                        frToggled=true;
                        break;
                private function menuClickHandler(event:MenuEvent):void
                    var menuItem:XML = event.item as XML;
                    switch ([email protected]())
                        case "options":
                            break;
                        case "english":
                            resourceManager.localeChain = ['en_US'];
                            break;
                        case "french":
                            resourceManager.localeChain = ['fr_FR'];
                            break;
                        default:
                            break;
            ]]>
        </mx:Script>
        <mx:MenuBar id="myMenuBar" labelField="@label" height="20" x="0" y="0" itemClick="menuClickHandler(event)"  fontWeight="bold" width="100%">
            <mx:XMLList>
                <menuitem  label="{resourceManager.getString('myResources', 'TOOLS')}" view="tools">
                    <menuitem label="Options"/>
                    <menuitem label="{resourceManager.getString('myResources', 'LANGUAGE')}" view="language">
                        <menuitem  label="{resourceManager.getString('myResources', 'FRENCH')}"  view="french" type="radio" groupName="lang" toggled="{frToggled}"/>
                        <menuitem  label="{resourceManager.getString('myResources', 'ENGLISH')}" view="english" type="radio" groupName="lang"  toggled="{enToggled}"/>
                     </menuitem>
                </menuitem>
                <menuitem label="{resourceManager.getString('myResources', 'HELP')}" view="help">
                    <menuitem label="{resourceManager.getString('myResources', 'ABOUT_RS')}" view="about"/> 
                </menuitem> 
            </mx:XMLList>  
    </mx:MenuBar>
           <mx:Button label="Switch to french" click="localeChain=[fr_FR];"/>
    </mx:Application>
    And here is the content of the ressource file (ResourceUtility.as)
    package utilities
        import mx.resources.IResourceManager;
        import mx.resources.ResourceBundle;
        public class ResourceUtility
            public static function setResources(
                resourceManager:IResourceManager):void
                var myResources:ResourceBundle;
                myResources = new ResourceBundle("en_US", "myResources");
                myResources.content["HELP"] = "Help";
                myResources.content["ABOUT_RS"] = "About RS";
                myResources.content["TOOLS"] = "Tools";
                myResources.content["LANGUAGE"] = "Language";
                myResources.content["FRENCH"] = "French";
                myResources.content["ENGLISH"] = "English";
                resourceManager.addResourceBundle(
                    myResources);
                myResources = new ResourceBundle("fr_FR", "myResources");
                myResources.content["HELP"] = "Aide";
                myResources.content["ABOUT_RS"] = "À Propos de RS";
                myResources.content["TOOLS"] = "Outils";
                myResources.content["LANGUAGE"] = "Langue";
                myResources.content["FRENCH"] = "Français";
                myResources.content["ENGLISH"] = "Anglais";
                resourceManager.addResourceBundle(
                    myResources);
                resourceManager.update();           

    There does appear to be a bug / feature / limitation with the MenuBar. If the dataProvider changes when a menu is open the change is ignored and the menu is not updated; this avoids sub-menu controls from being orphaned. It is fine for the sub-menus because they will be updated the next time they are displayed, but it means the top-level items become stale.
    A workaround would be to change your locale once the menu has closed. A callLater worked for me:
    itemClick="callLater( menuClickHandler, [event] )"
    A possible alternative would be to listen for the menuHide event and then update the locale.

  • Possible Bug with Drag-and-Drop Being Published via HTML5 - Getting "Undefined" Error When Dragging Object

    Hello,
    I came up with a way to use drag-and-drop interactions that will take advantage of file input so that I may create a drag-and-drop interaction that uses one draggable object over and over allowing multiple scoring/tracking possibilities.  Example use...is having the draggable object be dynamic in that it randomly changes its text so that a learner can drag a term it's possible classification.........thus allowing the possibility of having many terms easily loaded without having to redo a drag-and-drop interaction for each needed terms/classifications updates/changes.
    My Issue: When using a variable to represent the text for a draggable Smart Shape object, I'm getting the error message "undefined" when, clicking/pressing on the object, as well as during the drag of the object. This issue occurs when publishing the project in an HTML5 format.  Flash interestingly enough seems to work perfect...but we are not interested in publishing via Flash any longer.
    To better help you explore this error message, I've set up a test project so that you can see when and how the "undefined" message shows up during a drag-and-drop interaction.  I've also included the Captivate 8 project file used to make the exploration project I'm sharing in this post.
    Link to Captivate project I created for you all to explore "undefined" error message": http://iti.cscc.edu/drag_and_drop_bug/
    Link to this Captivate 8 Project file: http://iti.cscc.edu/drag_and_drop_bug.cptx
    It's pretty interesting how things react in this demo, please try the following actions to see some interesting happenings:
    Drag the Yellow (or variable drag box) to the drag target.
    Drag Black Hello square to Drag target and click undo or reset - watch the undefined message come up on the Yellow (or variable drag box).
    Drag the Yellow (or variable drag box) to the drag target and then use the undo or reset.
    Move both draggable boxes to the drag target and use the undo and reset buttons...
    Anyhow, I know you all are sharp and will run the demo through its paces.
    I'd really be very honored if anyone help me figure out how I could (when publishing out to HTML5) no longer have the "undefined" error message show up when using drag-and-drop with a variable for shape text. This technique has been well received at the college I work at...and I have many future project requests for using such an idea on a variety of similar interactions. I'd love see a solution or see if this might be a bug Adobe may be able to fix!
    I tried to find a solution to the issue documented here for quite some time, but I was not able to find anyone with this problem much less attempting the idea I'm sharing in the help request -  save the darn "undefined" message that comes up!
    Many thanks in advance for any help and/or direction that you all may be able to provide,
    Paul

    Hello,
    I just wanted to supply a minor update related to my drag-and-drop question/issue stated above:
    I did another test using Captivate 7, and found that the undefined error (publishing as HTML5) does not appear and the variable data remains visible - except the variable data turns very small and does not honor any font size related settings.
    I did go ahead and submit this to Adobe as a possible bug today.
    Thanks again for any help related to this issue.  If the issued documented above is solved, it will allow many amazing things to be done using Captivate's drag-and-drop for both regular type projects as well as interaction development for iBooks! 
    Matter of fact if this issue gets fixed, I'll publish a Blog entry (or video) on way's I've used Captivate's drag-and-drop to create dynamic learning activities for Higher Ed. and for use in iBooks.
    ~ Paul

  • Possible bug with TREAT and EXECUTE IMMEDIATE

    Hello, i experienced a strange behavior which seems to be a bug.
    Consider following definitions:
    CREATE OR REPLACE TYPE T_Base FORCE AS OBJECT (
      DummyProperty NUMBER
    ) NOT FINAL;
    CREATE OR REPLACE TYPE T_Child UNDER T_Base (
      AnotherDummyProperty  NUMBER
    CREATE OR REPLACE FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER IS
    BEGIN
      -- some specific validation is done here, not important for the example
      RETURN NULL;
    END;
    CREATE OR REPLACE PROCEDURE ValidateIt (iValue T_Child) IS
      lResult NUMBER;
    BEGIN
      -- The principle used here is that each client can have its own implementation of validation function, and when it does not exist, we do not care.
      -- In reality we put functions and procedures into packages, I narrowed it to a minimal working example.
      BEGIN
        EXECUTE IMMEDIATE 'BEGIN :lResult := SpecificValidation(:iValue); END;'
          USING OUT lResult, IN iValue;
      EXCEPTION WHEN OTHERS THEN
        IF INSTR(SQLERRM, 'PLS-00201') = 0 THEN
          RAISE;
        END IF;
      END;
    END;
    CREATE OR REPLACE PROCEDURE Process (iValue T_Base) IS
    BEGIN
      -- in fact we know that iValue must be of typ T_Child, it is checked using IS OF ( ) operator and exception is raised if this check fails
      -- This does not work for some reason.
      -- It fails in EXECUTE IMMEDIATE with PLS-00306. I don't really get why, because ValidateIt accepts a value of type T_Child and it passes it to the validation procedure, which also expects value of type T_Child.
      ValidateIt(TREAT(iValue AS T_Child));
    END;
    CREATE OR REPLACE PROCEDURE Process2 (iValue T_Base) IS
      lChild  T_Child;
    BEGIN
      -- The only difference here is that result of TREAT is saved to a variable.
      -- This works as expected.
      lChild := TREAT(iValue AS T_Child);
      ValidateIt(lChild);
    END;
    In reality it is much more complex, I narrowed it to a minimal working example.
    Now when running this:
    DECLARE
      lItem T_Base := T_Child(5, 2);
    BEGIN
      BEGIN
        -- This call will end up with PLS-00306 error.
        Process(lItem);
        dbms_output.put_line('Process completed successfully.');
      EXCEPTION WHEN OTHERS THEN
        dbms_output.put_line('Exception when calling Process.');
        dbms_output.put_line(SQLERRM);
        dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
      END;
      BEGIN
        Process2(lItem);
        dbms_output.put_line('Process2 completed successfully.');
      EXCEPTION WHEN OTHERS THEN
        dbms_output.put_line('Exception when calling Process2.');
        dbms_output.put_line(SQLERRM);
        dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
      END;
    END;
    then call to Process fails with PLS-00306 on EXECUTE IMMEDIATE.
    The only difference between Process and Process2 is that in Process2, result of TREAT is saved to a variable of type T_Child.
    Is this behavior documented somwhere or is it a bug?

    That's interesting. I would say it is, or should be, a bug.
    Also interesting is, when I re-write your example to eliminate dynamic SQL and instead rely on dynamic method dispatch, the problem goes away... first, the changes:
    drop type T_Child;
    drop type T_Base
    CREATE OR REPLACE TYPE T_Base FORCE AS OBJECT ( 
      DummyProperty NUMBER 
    ) NOT FINAL
    CREATE OR REPLACE TYPE T_Child UNDER T_Base ( 
      AnotherDummyProperty  NUMBER 
    create or replace type T_Base_Processor as object (
      dummyProperty    number
    , static FUNCTION GetClientProcessor(iClientId varchar2) RETURN T_Base_Processor
    , member FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER
    , member PROCEDURE ValidateIt (iValue T_Child)
    , member PROCEDURE Process (iValue T_Base)
    , member PROCEDURE Process2 (iValue T_Base)
    ) NOT FINAL
    create or replace type T_Another_Processor under T_Base_Processor (
      overriding member FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER
    create or replace type body T_Base_Processor
    is
      static FUNCTION GetClientProcessor(iClientId varchar2) RETURN T_Base_Processor IS
    BEGIN
      return    case
            when upper(iClientId) = 'ADMINISTRATOR' then
                new T_Another_Processor(null)
            else
                new T_Base_Processor(null)
            end;
    END;
      member FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER IS 
    BEGIN 
      -- some specific validation is done here, not important for the example 
      dbms_output.put_line('T_Base_Processor.SpecificValidation');
      RETURN NULL; 
    END; 
      member PROCEDURE ValidateIt (iValue T_Child) IS 
      lResult NUMBER; 
    BEGIN 
      -- No more need for dynamic SQL, instead rely on dynamic dispatch
      lResult := SpecificValidation(iValue);
    END; 
      member PROCEDURE Process (iValue T_Base) IS 
    BEGIN 
      -- in fact we know that iValue must be of typ T_Child, it is checked using IS OF ( ) operator and exception is raised if this check fails 
      -- This does not work for some reason. 
      -- It fails in EXECUTE IMMEDIATE with PLS-00306. I don't really get why, because ValidateIt accepts a value of type T_Child and it passes it to the validation procedure, which also expects value of type T_Child. 
      ValidateIt(TREAT(iValue AS T_Child)); 
    END; 
      member PROCEDURE Process2 (iValue T_Base) IS 
      lChild  T_Child; 
    BEGIN 
      -- The only difference here is that result of TREAT is saved to a variable. 
      -- This works as expected. 
      lChild := TREAT(iValue AS T_Child); 
      ValidateIt(lChild); 
    END;
    end;
    create or replace type body T_Another_Processor
    is
      overriding member FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER
    is
    begin
      -- some other specific validation is done here, not important for the example 
      -- You could even call the overridden method as well using
      --   treat(self as T_Base_Processor).SpecificValidation(iValue)
      dbms_output.put_line('T_Another_Processor.SpecificValidation');
      RETURN NULL; 
    end;
    end;
    And again with slight modifications, your test block:
    DECLARE 
      lProcessor T_Base_Processor := T_Base_Processor.getClientProcessor('JOE');
      lItem T_Base := T_Child(5, 2); 
    BEGIN 
      BEGIN 
        -- This call no longer throws a PLS-00306 error. 
        lProcessor.Process(lItem); 
        dbms_output.put_line('Process completed successfully.'); 
      EXCEPTION WHEN OTHERS THEN 
        dbms_output.put_line('Exception when calling Process.'); 
        dbms_output.put_line(SQLERRM); 
        dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_BACKTRACE); 
      END; 
      -- Demonstrate dynamic dispatch by choosing a different processor
      lProcessor := T_Base_Processor.getClientProcessor('ADMINISTRATOR');
      BEGIN 
        lProcessor.Process2(lItem); 
        dbms_output.put_line('Process2 completed successfully.'); 
      EXCEPTION WHEN OTHERS THEN 
        dbms_output.put_line('Exception when calling Process2.'); 
        dbms_output.put_line(SQLERRM); 
        dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_BACKTRACE); 
      END; 
    END; 
    T_Base_Processor.SpecificValidation
    Process completed successfully.
    T_Another_Processor.SpecificValidation
    Process2 completed successfully.
    Gerard

  • Data Type with reference and view maintenance

    Dear all,
    There are two questions that I want to ask.
    1.     Error when referencing a table with data type = u2018STRINGu2019.
    I have a Z table with some fields = u2018stringu2019, when I use this as a reference, an error prompted.
    "ZTBL_ABC" must be a flat structure. You cannot use internal
    tables, strings, references, or structures as components.-
    2.     Error in generating the View maintenance for field length > 255.
    Actually, I want to create fields with
    1.     data type = char(255),
    2.     data type = text
    3.     data type = char(3000)
    It is okay if I create the field with the selected size, however, when I generate the View maintenance (which can be access through SM30); it does not allow me to do so. It still not working if I change it into string. How can I create such table and use the table maintenance, as well as using that as the reference type of an internal table for another program?
    Regards,
    Mandy Au

    Hello,
    1st of all a table which has a field of type string can be converted in to table maintenance because TM does not support string type as it becomes a very big field to be displayed on screen ... so u need to change that.
    and then about the CHAR of length 3000 is too big ... to have a max limit of 255.
    If you change this both u will be able to generate TM.
    Incase after changing the field length it it gives error in activatin your table then go to SE14 put your table name EDIT and then Adjust n activate it....
    hope this was helpful
    --- Close the post once you get the solution

  • Enormous bug with intel and hdv

    dear Friends,
    I discovered a bug testing my octocore intel with compressor.
    Unfortunately, encoding a file from hdv to m2v, an intel processor is 4 times slower than a non-intel processor,
    ...only in this case...!
    An 1,30 minutes clip needs 12 minutes with a power book and the same file needs 45 minutes with an octocore 3.00 ghz...i tried other solutions swapping the disks (system and storage) from one machine to another but the problem remain in the same machine....
    ...awaiting for an apple resolution....

    What version of Compressor are you using? I seem to recall some post about this awhile back...don't remember if an update helped...I think it did.

  • Very strange bug with AIR and native process (Windows 7, EXE)

    Hello to everyone!
    The situation is:
    I've made an AIR Application, inside of that is running a native process - EXE file.
    I'm using Flash CC as IDE and tried to use compile that as EXE with AIR 2.6 and 3.6 - results are same.
    So I've insert inside a checking if Native Process is supported or not and the Native process is supported all the time.
    When I've just installed the application and run it - the very first attempt is good - everything is working as a must: internal EXE is called by my Application with necessary parameters as many time as I'm need.
    However if I'll close the App and then will run it again - internal EXE is not starting at all, doesn't depends on number of attempts to re-start of the App.
    So only way is to uninstall, install it back and then you'll be one more session of successful internal EXE-requests, till the next re-start of the App.
    That's it.
    I've tried to "google it" but unsuccessful. Probably the bug is very rare.
    Help me please?
    Update: at compilation with Flash CC IDE it's working all the time with no any issues.
    Update-2: when I'm running installator-EXE, there is going a notification "Same version is installed, etc." and then selected "Run Now" - there is also working with no problems.

    Well, I've found the solution and answer by myself and here is it please:
    In case with same situation as above you need to add just one line in your AS3-code
    nativeProcessStartupInfo.workingDirectory = File.applicationDirectory;
    And you will be happy so much

  • Bugs with Linking and Audio Solo buttons

    * Solo function doesn't work properly
    Stereo audio pair on A7 & A8. Audio in viewer shows pan set to -1 for normal stereo. Solo button for A7 give you audio in the left channel. Solo button for A8 gives you NO AUDIO. This button should give you audio in the right channel and yet it doesn't.
    * Can't relink multiple clips
    Select a group of clips and use command+L to unlink them. You should be able to reverse this process and relink them all with the same operation but YOU CAN"T. NOW YOU HAVE TO RELINK EACH CLIP INDIVIDUALLY by laboriously selecting the video, then the audio, and then invoking command+L for every single clip. This is stupid and counter-intuitive.
    Hello Apple???? Are you listening??????
    Message was edited by: Dave Berges

    Select a group of clips and use command+L to unlink them. You should be able to reverse this process and relink them all with the same operation but YOU CAN"T.
    CMD-Z (undo) doesn't work?
    Stereo audio pair on A7 & A8. Audio in viewer shows pan set to -1 for normal stereo. Solo button for A7 give you audio in the left channel. Solo button for A8 gives you NO AUDIO. This button should give you audio in the right channel and yet it doesn't.
    Is this ONLY if the audio is on A7 and A8? Well, I tried that on my end and it worked, no matter WHAT tracks I were on. Try trashing preferences.
    Shane

  • Apple - PLEASE fix the graphical bug with Dock and Stacks! PLEASE!

    Using popular Mac games such as Diablo II, Freeverse's Wingnuts, Ambrosia's Aperion, and Blitwise's Super DX-Ball (as well as a LOT more) results in a common graphical glitch with the Dock and stacks, making fan stacks totally useless until I restart my iMac. Killing and relaunching the Dock doesn't fix it. Only restarting my Mac temporarily sorts it out. This is a highly annoying bug most often set off by games that Apple STILL hasn't fixed as of 10.5.3. So I let every developer (who I do not blame, BTW) know whose product results in this bug, in the hope they will apply pressure to Apple. Leopard has been the buggiest release since 10.1 IME and Apple is taking there sweet time about crushing such crippling bugs. Suffice to say it's really ******* me off.
    Here is a screenshot from another 24" iMac afflicted by this bug after running a game:
    <http://img231.imageshack.us/img231/5324/corrupteddockandmenuletpk1.png>
    Notice the open stack is just grey bars. The icons and names are not
    showing.
    Regards,
    Jamie Kahn Genet

    Hi Wizardling
    These forums are User to User technical forums Apple employees do not often read these forums. You can do 1 of two things.
    1. Send feedback to Apple via http://www.apple.com/feedback or
    2. Sign up for a free developer account and open a bug report with Apple through http://bugreporter.apple.com
    Hope this helps
    J.C

  • Adobe connect - bug with powerpoint and the apostrophe

    Hi folks,
    when i'm using Adobe Connect for web presentations and upload
    a Powerpoint file, there seems to be a bug where adobe connect
    displays extra spacing after an apostrophe is used. For example
    when my .ppt has "country's" but when it's loaded into adobe
    connect and shared, it displays, "country' s"
    i'm using XP and Powerpoint 2003.
    anyone else seeing this problem?
    danke!

    Alec,
    From what I remember, TinyMCE does not work with ADDT form validation. So you can integrate TinyMCE, but you will have this issue if you make the text area a required field with ADDT's form validation.
    For a workaround, you can use a custom trigger to check that something was entered into the text area and throw an error in the trigger if nothing has been entered. This won't do the client side check, but it will do a server side check.
    Shane

  • Problems with Lion and Viewing Videos?

    I have a MacBook Pro and since I downloaded Lion yesterday, I can't seem to view any videos on any news sites and YouTube, etc. 
    Is anyone else experiencing this?...and, if so, how can I resolve it? 
    Many thanks!

    False alarm, Lion community.  I finally just resorted to the "tried and true" shutdown and restart....and all seems fine with viewing videos now.
    Thanks anyway! : )

Maybe you are looking for

  • GOING TO SELECTION SCREEN FROM ALV GRID.

    Hi all, Iam using an ALV grid display. I have called the grid display every times when i select a check box in the grid display. Then when i click on the back button the screen navigates to the previous ALV grid. My requirement is to go to the first

  • How to pass local variables between different sequence files?

    Actually i want to pass the data (local variable) from my process model file to a client file. The client file only has the callbacks and those callbacks require some parameters as input which is available in local variables of my process model seque

  • Scanner not recognized in PS CS5

    New install of  PS CS5.  My scanner (HP 8300 Scanjet) is not recognized.  Still have CS4 installed and it is recognized O.K. there.  Any body know why CS5 won't recognize it?

  • Blackberry errors

    Whenever I try downloading the upgrade for blackberry app world an error appears called 907 invalid COD has anyone got any solutions

  • Can I change the color of a disabled JComboBox ?

    Hi ! If I use setEnabled(false) the JComboBox has a grey Forground and a grey Background and I cannot use this for printing. I think it is not possible to change the colors of disabled boxes. I have not found a method and than I tried it with ListCel