dispatchEvent - bug in my code

I can't find the bug in my code.

In the main document class I created the new instance of a class IA and a listener for an event personalized as Fallows:

_ai = new AI(_param1, _param2);
_ai.addEventListener("decisionMade", bestOptionFound, false, 0, false);

private function bestOptionFound(evt:Event):void{
     trace("hello");
}

Then, in the class of GOT it, I do all my logic and after its finished I run a function this courier for a master class event:

Inside AI class:
private function bestOptionSet():void{
     var boole:Boolean = hasEventListener("decisionMade");
     var boole2:Boolean = willTrigger("decisionMade");
     dispatchEvent(new Event("decisionMade", false, false));
               
     trace(boole);
     trace(boole2);
     trace("function works");     
}

Then my tracing instructions give me information that my work of function very well, but it is there no listener attached to my class HERE (boole and boole2 = false). This is why my Manager cannot be triggered.

So my AI class Instance works fine and all work inside it work very well as well. But there is no listener attached to this class my tracing instructions tell me. But I add " _ai.addEventListener("decisionMade", bestOptionFound, false, 0, false); ". ""
Any ideas?

you're shipping your event BEFORE you add to your look.

Tags: Adobe Animate

Similar Questions

  • Api scripting flaw or bug in the code?

    I have a custom action and the workflow to save output settings to the last step in a workflow, so I don't know what data is passed. However the script statement that I use is null rather than the types of right back.

    Can someone tell me if there is a problem with scripting api or a bug in their code?

    Attach the workflow actions and example

    The action of the problem is logOutputParams.

    It uses 2 other actions for printing actually log files that I've also attached for reference.

    Yes, output parameters are available in the attributesStack property, which contains the attributes + input + output.

    An example of code to iterate over them:

    var attStack = workflow.attributesStack;
    for (var i in attStack) {
      var elem = attStack[i];
      for (var j in elem) {
         var att = elem[j];
         System.log(" name " + att.name);
         System.log(" type " + att.type);
         System.log(" value " + att.value);
      }
    }
    
  • Problem with microphone on iOS - bug or bad code?

    Hi all

    It seems that the use of the micro class freezes my Flex app. I provided the code below, but here is an overview:

    • This only happens on iOS - specifically my iPhone 4. I have not seen this problem on Android devices.
    • My code alternated recording and records don't not - 5 seconds to one, then 5 seconds of each other, then repeat over and over again.
    • I have reduced this to a 'minimum' example (see code below) which does this. It does not use data etc. coming the Microphone is not create or fill a ByteArray.
    • The application always crashes. In some cases, this happens when he worked only 2-3 minutes, in all cases, it happens in half an hour. I did 10 sets of tests and the average is 15 minutes.

    My application is a language learning app and recording and playback of the voice of the user is an important feature. It allows the user to hear how their pronunciation matches that of a native speaker. When recording / reading is marketed the software repeatedly plays a few sound recordings, the voice of the user, it reads, the more audio plays, etc.. In other words, it includes features similar to the minimal case code I included here. Users often use this feature 30 minutes or more. It is therefore a problem.

    I'm doing something wrong in my code? Just checking before I report it as a bug.

    You can download an FXP from here if you are interested:

    http://www.Brightworks.com/downloads/RecordingTest.FXP

    Alternatively, the important code is below. This is the display (only) of the sample application.

    Thank you

    Douglas

    Douglas McCarroll

    Brightworks, Inc.

    320.300.0220

    <? XML version = "1.0" encoding = "utf - 8"? >

    < s:View xmlns:fx = " " http://ns.Adobe.com/MXML/2009 "

    xmlns:s = "library://ns.adobe.com/flex/spark".

    creationComplete = "onCreationComplete().

    title = "Test recording" >

    < fx:Declarations >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    private var _isRecording:Boolean;

    private var _iterationCount:uint = 0;

    private var _microphone:Microphone;

    private var _recordedSeconds:uint = 0;

    private var _timer:Timer;

    private function onCreationComplete (): void

    {

    NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE;

    }

    private void doNextPhase(event:TimerEvent_=_null):void

    {

    _isRecording =! _isRecording;

    If (_isRecording)

    {

    _iterationCount ++;

    displayOutput ("Recording");

    _microphone = Microphone.getMicrophone ();

    _microphone.rate = 44;

    _microphone.gain = 50;

    _microphone.setSilenceLevel (0, 2000);

    _microphone.addEventListener (SampleDataEvent.SAMPLE_DATA, onNewRecordingSampleData);

    }

    on the other

    {

    _recordedSeconds += 5;

    displayOutput ("Pausing");

    _microphone. RemoveEventListener (SampleDataEvent.SAMPLE_DATA, onNewRecordingSampleData);

    _microphone = null;

    }

    }

    private void onNewRecordingSampleData(event:SampleDataEvent):void

    {

    }

    private void displayOutput(phase:String):void

    {

    var freeMemoryMB:int = Math.round (System.freeMemory / (1024 * 1024));

    var privateMemoryMB:int = Math.round (System.privateMemory / (1024 * 1024));

    var totalMemoryNumberMB:int = Math.round (System.totalMemoryNumber / (1024 * 1024));

    phaseLabel.text = "Phase:"+ phase; "

    iterationLabel.text = "iteration:"+ _iterationCount; "

    recordedSecondsLabel.text = ' seconds saved: "+ _recordedSeconds;"

    freeMemoryLabel.text = "System.freeMemory MB:"+ freeMemoryMB; "

    privateMemoryLabel.text = "System.privateMemory MB:"+ privateMemoryMB; "

    totalMemoryNumberLabel.text = "System.totalMemoryNumber MB:"+ totalMemoryNumberMB; "

    }

    private function startTimer (): void

    {

    _Timer = new Timer (5000, 0);

    _Timer.addEventListener (TimerEvent.TIMER, doNextPhase);

    _Timer.start ();

    }

    private function onStartRecordingButtonClick (): void

    {

    If ((Microphone.getMicrophone ()))

    {

    startRecordingButton.enabled = false;

    startTimer();

    doNextPhase();

    }

    on the other

    {

    phaseLabel.text = 'No Mic' available;

    }

    }

    []] >

    < / fx:Script >

    < s:VGroup height = "100%".

    Width = '100% '.

    paddingBottom = "20".

    paddingLeft = "20".

    paddingRight = "20".

    paddingTop = "20" >

    < s:Label id = "phaseLabel".

    Width = "100%" / >

    < s:Label id = "iterationLabel".

    Width = "100%" / >

    < s:Label id = "recordedSecondsLabel".

    Width = "100%" / >

    < s:Label id = "freeMemoryLabel".

    Width = "100%" / >

    < s:Label id = "privateMemoryLabel".

    Width = "100%" / >

    < s:Label id = "totalMemoryNumberLabel".

    Width = "100%" / >

    < / s:VGroup >

    < s:HGroup width = '100% '.

    horizontalAlign = "center".

    Low = "10" >

    < s:Button id = "startRecordingButton".

    label = "Start Recording"

    a click = "onStartRecordingButtonClick()".

    Width = "60%" / >

    < / s:HGroup >

    < / s:View >

    The problem has been resolved with 3.8.0.730!

    http://forums.adobe.com/message/5399512#5399512 ;-)

    Thank you Adobe!

  • BUG: Split then join reverse byte order - sometimes

    I created a simple to serialize an array of bytes I32 and fell VI on this interesting bug. This code runs in 32-bit SP1 of LabVIEW in 2014, fully patched. Save the parts two attached and run TestI32ToByteArray.vi. Note that the 6 and 7 at the end of the table are reversed. If you explore the data around, everything looks good except the string split on the last low word is reversed. Any ideas?

    More details on the installation program:

    LabVIEW 2014 SP1 32-bit

    AMD FX - 6300 3.5 GHz processor hexagonal

    Windows 7 64 - bit, fully patched

    8 GB RAM

    Check your wiring, 6 is connected to a lower bound of the join, and 7 is wired to the top.

  • motor action accessed in an unknown part of my code

    I've been to this LV thing for quite awhile and I don't think that I was never this confused on something that could very well be a really stupid question on my part. But that's...

    I have an AE action engine that I use to store and set target values and read state of a motor controller.

    My bug: when my code is running in a State of rest to action "writing engine controller" should not be written on but aims to get in a certain part of the code. I can't seem to find when and where it is written.

    Is there a way that I can know exactly when and in what vi specific action in my AE is written? I use a strongly modified producer/consumer model. I have listed all of the appellants of this vi and everything is where it should be. I put a breakpoint on the part "writing engine controller" code and he gets constantly accessible so that my code is idle, but do not because I can only read data from AE when I'm idling.

    I am really puzzled.


  • Compact RIO (cRIO) / LabVIEW Bug event management

    I have a bug in my code cRIO and it only happens in cRIO and not in Windows PC. To illustrate the bug, I've included a LV 2014 vi that duplicates the problem.

    The code is very simple and offers the following features:

    (1) if the user presses the 'Test' button, the Enum has its set value reported. It's the change of Enum event is triggered two times.

    (2) if the Enum is changed by itself, that a change of the Enum event is observed.

    This bug is only seen in cRIO but not on Windows PC LabVIEW.

    Michael


  • HTTPS bug?

    I use HTTPS via WiFi on a 8900, do a GET around 3000 bytes.  Sometimes when the data hits the last part so phone data are binary zeros rather than what it should be.

    The HTTP response is divided on several IP packets.  The zeros start a package limit.  I have a trace of thread of the HTTP showing packages fine.   There is a proxy reversed providing SSL between the wire trace and phone, so its either that or the phone that is the source of the problem.  The proxy is Apache.

    Someone saw something like that?

    Phil.

    Ah, I think it's just a bug in my code I do not call repeatedly read (buffer, offset, len) if I don't have all the data.  Funny how this kind if thing comes to me _immediately_ after I have a question and not within hours of anguish and thinking beforehand.

    Phil

  • Replace Document colors Bug

    All known bugs to replace the colors in the document?  I am running windows 7 with new Acrobat Reader DC.

    For example, if by default my document is black text with a white background and I change the white text and black background (Edition > Preferences > accessibility), I now have with black background and white text pages and other pages unreadable with black text on a black background.  Again, I have change the green on a black background and yet my entire document has a black background, but now some pages contain the green text, others have white text, and others have black text and cannot be read.

    What is the fix for this problem of accessibility?

    This does not solve the problem.

    The problem seems to be that Acrobat Reader only changes the color of the text for a single page in the document.  I found a work around by going to Edit > Preferences > accessibility.  There's a box of "change the color of the art online as well as text.  If this box is checked, then uncheck the box; If it is not checked, then check that it and the color of the text for all of the document should now be correctly formatted.  This procedure seems to ignore any bugs in the code it keeps updating the color of the text on each page, but these steps should be done whenever you need to change the color of a word processor based PDF.

  • How do to make the simplest code for dynamic data?

    Hello world!

    I have a JSON file with more than 200 records.

    I want that each record to be active button with unique actions.

    The code is the following:

    $.getJSON ("content.json",

    {function (Data)}

    for (var i = 0; i < 200; i ++) {}

    var s = sym.getSymbol("base").createChildSymbol ("template", "CONT");

    s.getSymbolElement ();

    s.Element.attr ('id', 'symbol' + i);

    s. $("imageholder") .css ({'background-image': "url ('" + data [i].) "}) (image_+_«_'_»)});

    s. $("imageholder") .data ('myIndex', i);

    s.$("imageHolder"). Data('title',Data[i].) (Name)

    s.. Click$ ("imageholder") ("click", Function {}

    If ($(this) .data ("myIndex") == 0) {}

    WB = 10;

    SYM.$("#symbol0"). Show();

    SYM.$("#Symbol1"). Hide();

    SYM.$("#Symbol2"). Hide();

    SYM.$("#symbol3"). Hide();

    sym.getComposition () .getStage ().getSymbol('placer').$("holder").css ({'background-image': "url (" + $(this).data('Large') + ")"});

    sym.getComposition () .getStage ().getSymbol('placer').$("holdertxt").html ($(this) .data ('the kid'));

    If (WB == 10) {}

    sym.getSymbol("#symbol0").$("rect").animate ({opacity:1}, 700);

    };

    }

    ElseIf ($(this) .data ("myIndex") == 1) {}

    WB = 11;

    SYM.$("#symbol0"). Hide();

    SYM.$("#Symbol1"). Show();

    sym.getComposition () .getStage ().getSymbol('placer').$("holder").css ({'background-image': "url (" + $(this).data('Large') + ")"});

    sym.getComposition () .getStage ().getSymbol('placer').$("holdertxt").html ($(this) .data ('the kid'));

    If (WB == 11) {}

    sym.getSymbol("#symbol1").$("rect").animate ({opacity:1}, 700);

    };

    }

    });

    s. $("imageholder") .mouseout ("mouseout/mouseouthandler()", function (e) {}

    If ($(this) .data ("myindex") == 0 & & WB! = 10) {}

    sym.getSymbol("#symbol0").playReverse ("selectend");

    }

    ElseIf ($(this) .data ("myindex") == 1 & & WB! = 11) {}

    sym.getSymbol("#symbol1").playReverse ("selectend");

    }

    }

    });

    s. $("imageholder") .mouseout ("mouseout/mouseouthandler()", function (e) {}

    If ($(this) .data ("myindex") == 0 & & WB! = 10) {}

    sym.getSymbol("#symbol0").play ("selectstart");

    }

    ElseIf ($(this) .data ("myindex") == 1 & & WB! = 11) {}

    sym.getSymbol("#symbol1").play ("selectstart");

    }

    });

    }

    });

    How is possible to place an each command or something else for not writing for each Index and for each function actions?

    Now I'm writing for each function (passing of the mouse, click, mouseout/mouseouthandler()) the actions that each record in the JSON must do.

    Can someone help me?

    Based on your code above, I made the following assumptions:

    1. You have shown the code for two values of i (0 and 1) and want a similar code for the rest
    2. Two managers mouseout/mouseouthandler() in the code above is a typo, one of them is supposed to be a mouseover (according to the description at the bottom). In the solution, I will propose, I guess that one was supposed to be a manager of mouseover
    3. BM is a global variable and values range from 10, 11, 12... 10 + n - 1. Please check the code once though, I think that there is a logical problem with the closure, you create around WB in mouseout/mouseouthandler() handlers. I can't identify the intention if the proposed solution will be based on your code above.

    Another bug in the code is in the way you join managers:

    s.. Click$ ("imageholder") ("click", Function {}) must be changed to: s.$("imageholder"). on ("click", Function {})

    and still other managers.

    You can use the following to simplify your code:

    $.getJSON("content.json", function (data) {
         for (var i = 0; i < data.length; i++) {
              var s = sym.getSymbol("base").createChildSymbol("template", "conts");
              var e = s.getSymbolElement(); 
              e.attr('id', 'symbol' + i); 
              s.$("imageholder").css({ "background-image": "url('" + data[i].image + "')" });
              s.$("imageholder").data('myIndex', i);
              s.$("imageholder").data('title', data[i].name); 
    
              s.$("imageholder").on("click", function (e) {
                   WB = 10 + i;
                   sym.$("#symbol0").show();
                   sym.$("#symbol1").hide();
                   sym.$("#symbol2").hide();
                   sym.$("#symbol3").hide();
                   sym.getComposition().getStage().getSymbol('placer').$("holder").css({ "background-image": " url(" + $(this).data('Large') + ")" });
                   sym.getComposition().getStage().getSymbol('placer').$("holdertxt").html($(this).data('title'));
                   sym.getSymbol("#symbol0").$("rect").animate({ opacity: 1 }, 700);
              });
    
              s.$("imageholder").on("mouseover", function (e) {
                   //Looks like a logical bug, please double check.. I don't know how you are controlling WB from outside
                    if(WB != 10 + i) {
                        sym.getSymbol("#symbol0").playReverse("selectend");
                    }
             }); 
    
              s.$("imageholder").on("mouseout", function (e) {
                   //Looks like a logical bug, please double check.. I don't know how you are controlling WB from outside
                   if (WB != 10 + i) {
                        sym.getSymbol("#symbol0").play("selectstart");
                   }
              });
         }
    });
    

    Another option would be to set up your event handlers in the symbol definition. The advantage is that all instances would automatically inherit the behavior. You just need to understand how to set the code. For example, in your case, you can attach the following click on Manager in the symbol itself imageholder element:

    var i = sym.$("imageholder").data('myIndex');  //You will be setting the data on the instance while creating the instance. Rest of the code can use this as a param
    WB = 10 + i; //Assuming WB to be available, change the logic accordingly
    sym.$("#symbol0").show();
    sym.$("#symbol1").hide();
    sym.$("#symbol2").hide();
    sym.$("#symbol3").hide();
    sym.getComposition().getStage().getSymbol('placer').$("holder").css({ "background-image": " url(" + $(this).data('Large') + ")" });
    sym.getComposition().getStage().getSymbol('placer').$("holdertxt").html($(this).data('title'));
    sym.getSymbol("#symbol0").$("rect").animate({ opacity: 1 }, 700);
    

    The code does not work as it is, but I hope it helps you move forward and you are able to achieve what you wanted. Let us know if you encounter other problems.

    DIA-

  • BUG? Fireworks to DW CSS not consistent between browsers gradients...?

    Greetings-

    I don't know if this is a bug or what, but after watching one of the roadshow Adobe TV videos, I generated CSS gradients in Fireworks, ALL selected the browser compatible translations provides Fireworks and then copied/pasted the CSS in my web page in Dreamweaver. Looks good in DW - everything seems good... until I have look with Firefox...

    I'm not a rocket scientist, but also not a beginner.

    Basically, that is to say, etc. all work fine EXCEPT Firefox! Firefox retains the color, but distorts the percentage gradient and reverse the angle of the gradient. For example if my gradient goes from dark on top with white on the bottom of a box, it displays all fine in the other browsers, but in Firefox the gradient goes from left to right, Darkness to light...

    And Yes, I promise that I made I CSS Firefox as well as IE, etc. before I worry about you all.

    OH! AND I use the grid of liquid set up in Dreamweaver... cordially.

    Am I missing something?

    What I do need to update manually? (i.e., tie a rope around my waist and head on in the mirror - land of code that are degraded CSS?)

    Is there something in DW to be changed after that the FW CSS is added?

    Thanks a lot for all your help and advice!

    JL

    JLSF45 wrote:

    I don't know if this is a bug or what,.

    Yes, it's a bug in the code that produces Fireworks, not how Firefox handles CSS gradients.

    The reason for the problem is that browsers began to apply CSS gradients as experimental long before the current W3C standardization process. For some reason, all browsers have decided to calculate angles using the system of polar coordinates, in which 0 points of law degrees and angle increasing counterclockwise. This way of measuring angles seems to be common in geometry, but it is not the way most people think of them.

    The most common way to measure angles using the compass system: 0 degrees pointing to the top and angles increase in a clockwise direction. That's how the W3C decided angles must be measured in the CSS. Because 0 degrees in the polar coordinate system is 90 degrees in the standard CSS syntax, angles increase in the opposite direction, the only angle that is identical in the two systems is 45 degrees.

    Unfortunately, those who code Panel Fireworks didn't standard syntax uses different angles, and nobody picked it in beta. The problem has been reported to Adobe, and I thought it will be fixed, but I don't know when.

    Until it's resolved, you must convert the angle in the version without prefix of linear - gradient ().

    • Subtract the angle generated by Fireworks of 360.
    • Add 90

    For example, if the angle generated by Fireworks is 315deg, 360-315 = 45. 90 45 plus 135. Then change the angle in the version without prefix of 135deg.

    IE 10 also uses the standard syntax, so conversion is necessary not only for Firefox, but it will be necessary by all browsers.

    It is a rare case of the value of the prefix specific to the browser is completely different from the standard syntax.

  • AppleScript: Options of rounding (am I crazy or I found a bug?)

    I update an AppleScript script that rounds the corners of the elements on the page of the CS4 CS5 versions, now, I understand that you need to say to all the corners of a rectangle, what to do now in CS5, but what I don't understand is the fact that AppleScript don't compile the statement: the value of the option at the bottom right at the corners rounded.

    I can't work if it is a massive FAILURE on my name or a bug. The code I have is:

    Set myDoc to the active document

    say myDoc

    myRectangle make rectangle with properties the value {geometric limits: {50, 50, 150, 150}, fill color: "Black"}

    say myRectangle

    Set the top left rounded corner option

    the value of the radius of the top left corner 5

    Set the upper right corner to the rounded corner option

    the value of the radius of the top right corner 5

    set the lower left corner rounded corner option

    the value of the radius of the bottom left corner 5

    -the value of the option at the bottom right at corners rounded

    the value of the radius of the bottom right corner 5

    tell the end

    tell the end

    The script works fine if I comment on "set the option in the lower right corners rounded" but when I activate the script statement fails.

    Please see if it works for you, and if not, I guess I need to file a bug report.

    Thanks in advance

    Dylan

    Certainly a bug Dylan!

    You can compile if you use the syntax of Chevron and it arrives with a double space between the bottom and right.

    the value le 'property pcO4' to the rounded corner

    Compiles to

    the value the option to angle straight down to corner rounded

  • Is it a &lt; s:List bug?

    Flash Builder 4

    If you have a

    < s:List

    layout as TileLayout, with an itemRenderer.

    Click on a button, it filters the AC.

    Add the scroll bar because they are a more viewable objects.

    Click on the button it filters the AC.

    Removes the scroll bar because there are less than displayable objects.

    THIS IS WHERE IT GOES weird!

    Click on a button, it filters it.

    There are obviously more of viewable objects, but the scroll bars to add!

    I have a label linked to the length of the AC to tell me how much is supposed to be appear.

    He spent at least a day messing around with it.

    Looks like a bug to me.  Here's a slightly reduced test case:

    
    
        
            
        
    
        
            
                
                    
                        
                        
                        
                        
                        
                        
                        
                        
                        
                        
                        
                        
                    
                
                
                    
                        
                            
                        
                    
                
                
                    
                
            
    
            
                
                
                
            
        
    
    

    Could you please file a bug with this code to http://bugs.adobe.com and after the number of bug here?

  • How to use the String with an external dispatchEvent event.target.name?

    ... I hope that the question of the title makes sense...

    On my stage, I have an external SWF loaded with a button. When you click the button dispatches the main event scene.

    On the main stage a listener can load a SWF it in a magazine called Gallery.

    The charger of the Gallery is also shared by the buttons on the main stage, who use the event.target.name chain to appeal to sovereign wealth funds with corresponding names.

    I use tweens to fade and, in the content of the Gallery when a key is pressed.

    --

    Loading of the FSV worked until I tried to create a universal function for the dispatchEvent buttons...

    The problem I have is that I don't know how to set the string to indicate to the newSWFRequest where the SWF file when triggered by external buttons.

    (I maybe do this wrong... but thought that the best way to load a SWF on the main stage from an external SWF was using dispatchEvent?)

    My code raises the event and the charger of the Gallery Faints, but then it does not find the new SWF:

    Error #2044: Unmanaged by the IOErrorEvent:. Text = Error #2035: URL not found.

    Please can someone help me understand how to make the point in the chain in the right direction? (I think that the errors only are in bold below)

    Code:

    var myTweenIn2:Tween;

    var myTweenOut2:Tween;

    var nextLoadS2:String;

    Listening external inclinometer shipped external event

    addEventListener ("contactStage", btnClickExtrnl);

    function btnClickExtrnl(e:Event):void {}

    nextLoadS2 =?

    myTweenOut2 = new Tween(gallery,"alpha",None.easeOut,gallery.alpha,0,0.2,true);

    myTweenOut2.addEventListener (TweenEvent.MOTION_FINISH, tweenOutCompleteF2);

    }

    Function universal BTNS

    function tweenOutCompleteF2(e:TweenEvent) {}

    myTweenOut2.removeEventListener (TweenEvent.MOTION_FINISH, tweenOutCompleteF2);

    myTweenOut2 = null;

    var newSWFRequest:URLRequest = new URLRequest ("SWFs /" + nextLoadS2 + ".swf");

    myTweenIn2 = new Tween (Gallery, "alpha", None.easeOut, gallery.alpha, 1, 0.2, true);

    Gallery.Load (newSWFRequest);

    Gallery.x = Xpos;

    Gallery.y = Ypos;

    }

    Thank you.

    If this code is on the timeline of a child of the main timeline of your external swf add parent 3rd in two lines with parent.parent.

  • Question about a bug that should be fixed in the 10.2.0.4 group patch

    Hello

    We have a 10.2.0.4 single instance of database on Sun Solaris SPARC (64-bit) and have the same symptoms as described in Bug 4643723 (error codes and the trace of the stack are the same). This bug should be fixed already in 10.2.0.4 patches group.

    Someone of experience on how to proceed in this case - I mean, did a SR on metalink an obvious action?

    Is it possible that fixes group has not been applied correctly, even if "opatch lsinventory" outputs that the "group of patches 2 3 (10.2.0.4) version 10g ' is installed and SYS. HISTORY of $ REGISTRY also contains an account of the upgrade. The upgrade of 10.2.0.1 10.2.0.4 was made 6 months ago and the data base has been continuously top and runing so far here.

    Thanks for all the answers

    many bugs may have the same mistakes. Raise a SR.

    Support Oracle ask a lsinventory opatch you and may request you check the versions of libraries, or reissue.

  • Prevent page caching... where should I put the code

    I have a page that creates a record. If the user clicks on the back button of the browser, they reach a new record for the same account. In this file, there are multiple records with STATUS = NO. But what a 'YES '. I fixed it by checking if there is a record for the account with STATUS = Y, but users can still enter a bogus STATUS = N.

    So I want to disable the cache for this page that the user cannot return to the page. I think I understand how to do it, but another thread has recommended this page.

    http://www.htmlgoodies.com/beyond/reference/article.php/3472881

    The author says to put the code below in the footer, as IE has a bug if the code is in the header that allows the page cached anyway. So I see the
    Header HTML on the edit page section, but I do not see a HTML page footer section. Where should I put it?

    < HEAD >
    < META HTTP-EQUIV = "Pragma" CONTENT = "no-cache" >
    < META HTTP-EQUIV = "Expires" CONTENT = "-1" >
    < / HEAD >
    < / HTML >

    TIA,

    Sam

    Sam,

    You have listed the steps (1-5) involve the use of links from the developer toolbar, the edit page Builder, and Builder, is set - this exact Page links? That seems like an artificial way to illustrate a problem you want to prevent end users from their experience. Also, the description of each step is not clear for me.

    Here's what I can tell you:

    1. If the user uses the back button on the browser, but a page, the page may re-submit. Nothing you can do about it (assuming that your meta-tags failed).

    2. If you use the feature to duplicate presentations Page of the form pages, you can prevent cached browser pages to run after - submit actions (such as DML) if these pages are subjected to a second time.

    Scott

Maybe you are looking for

  • Black screen but Satellite T is on

    Hi my computer screen went black. Even when I turn it on and on back lights but I don't see anything on the screen, not even vaguely. -What this means and what I can do?

  • No UK epg after January 1, 2013

    I have a htpc with win7. It is apparent from the whole of the United Kingdom have no satellite tv epg tomorrow. January 1, 2013. She's. No tv guide, no tv recordings, nothing, because there is no EPg. Look in the settings 'about' in the guide, it see

  • How to re - download lightroom on another computer (mac)

    I have Lightroom on my computer acer laptop and now I just bought a macbook pro. Is it possible to re - download the program onto my new laptop computer?

  • How to embed a video YouTube in the video gallery Lightbox Widget

    I just downloaded the VGL widget to video gallery Lightbox | Exchange | Adobe Muse CC . I am able to change the image, but have not figured out how to embed the video. The instructions say that it can be changed "through a"insert html"but when I do t

  • VM - keep in a specific order

    ESX 4.0 and VCenter 4.0We have several virtual machines that need to be in a specific order after restart or vmotion.How can I make sure these VM specific in order stay once they are vmotioned. ? Quick VMotioning always seems to put them in the group