Stages of quizzes

I have a module with 3 stages of quizzes. 1. Easy round; 2. Average round; 3. Difficult round. I want to make the students take the exam starting from easy round to difficult round. if the student failed the easy round he should go back at the start of the module to review the module again and retake the easy round. If he passed the easy round this time, then that's the time he could take the average round. Now, if the failed the average round, he would go back at the start of the module and review the module again skip the easy round (because he passed the easy round already) retake the average round again. If he passed the average round this time, then that's the time, he could take the difficult round. Could you help me how to implement this in ADVANCED ACTIONS?? One more thing, If the student failed the easy round, the score that he got from that round will be wiped out. until he passed the easy round that's the time the score will be generated, same thing in average round and difficult round. Because our main goal for the students is about "mastery of the subject matter." The student couldn't go to another level if he didn't pass the current level.

Thank you for your reply, I would say my level of skills in captivate is above average I think, I have done this already. By the way I've been practicing adobe captivate 5 for almost 6 months now. Would you guide me if I'm wrong because what I did in my advanced actions about my module? What I did was when the student failed the EASY ROUND for example, in the next slide there will appear "Ooops you seem to need another round of review!" below that feedback message will appear a button "Try Again!" and the student will be brought back to the beginning of the module for review. After reviewing, before he Click a button on the slide of "TAKE THE CHALLENGE!" which has buttons of EASY ROUND, AVERAGE ROUND, AND DIFFICULT ROUND, in that same slide, I executed advanced actions. I made a conditional action of Retake action that will bring the student to EASY ROUND if the student fails the EASY ROUND, AVERAGE ROUND, AND DIFFICULT ROUND... and I assigned the
variables (EASYSCORE, AVERAGESCORE, AND DIFFICULTSCORE) with 0. If the student passed the student will be brought to another level, and from numbers 1 to 10 of the EASY ROUND, on success I chose increment by 1. Another thing, in the RETAKE ACTION of the TAKE THE CHALLENGE slide, there's a conditional action: IF the variable EASYSCORE is lesser or equal to 7 (FAILED), the ACTION is he will jump to EASY ROUND, if the student passed (greater or equal to 8), then CONTINUE. same thing in AVERAGE ROUND. IF AVERAGESCORE  is lesser or equal to 7 (FAILED), the ACTION is he will jump to AVERAGE ROUND, if the student passed (greater or equal to 8), then CONTINUE. I will not report this to LMS. Because this interactive module which is burned on a cd is only a supplement for the students when they bought a textbook in the coming school year. I'm a FILIPINO and I think adobe captivate is very exciting!
thanks.

Similar Messages

  • Problem with access into the main stage

    hi, how are you guys ,, i hope you fine
    here is my problem
    i have file fla called "game.fla" and there are alot of frames in the main stage  i wanna move it from
    class called "admin" in the library but how??
    i tried to this
    parent.gotoAndStop(39);
    but it doesn.t work i dont know why
    and this is the error message
    C:\Users\win7\Desktop\game1\admin1.as, Line 902 1061: Call to a possibly undefined method gotoAndStop through a reference with static type flash.display:DisplayObjectContainer.

    ahh sorry "
    I could be more help if I had some code to look at"
    here this is all the admin code
    package{
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    public class admin1 extends MovieClip
    var moves:Boolean;
    var points:Number;
    var SCREAMING:screaming
    var SOUNDCHANNEL:SoundChannel
    var vx:Number;
    var EATING:eating;
    var CHIDORI:chidori
    var WIND:wind;
    public function admin1(){
      addEventListener(Event.ADDED_TO_STAGE,onAddedToStage)
      public function onAddedToStage(event:Event):void
       stop()
       if (currentFrame ==20)
       gotoAndStop(1)
       WIND = new wind;
       SOUNDCHANNEL = WIND.play(0,1000)
       CHIDORI = new chidori
       EATING = new eating
       SCREAMING = new screaming
        SOUNDCHANNEL = new SoundChannel
       score.restrict = "0-9";
       burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .5;
       fireball1.alpha = .5;
       points=0;
       hero1.stop();
       quizz.stop();
       animal1.stop();
       evil1.stop();
       addEventListener(Event.ENTER_FRAME, onEnterFrame);
       fireball1..addEventListener(MouseEvent.CLICK, onfireball1);
       burger1.addEventListener(MouseEvent.CLICK, onburger1);
       b1.visible = false
       b2.visible = false
       b3.visible = false
       c1.visible = false
       c2.visible = false
       c3.visible = false
       d1.visible = false
       d2.visible = false
       d3.visible = false
       e1.visible = false
       e2.visible = false
       e3.visible = false
       f1.visible = false
       f2.visible = false
       f3.visible = false
       a1.addEventListener(MouseEvent.CLICK, onmouseclicka1);
       a2.addEventListener(MouseEvent.CLICK, onmouseclicka2);
       a3.addEventListener(MouseEvent.CLICK, onmouseclicka3);
       b1.addEventListener(MouseEvent.CLICK, onmouseclickb1);
       b2.addEventListener(MouseEvent.CLICK, onmouseclickb2);
       b3.addEventListener(MouseEvent.CLICK, onmouseclickb3);
       c1.addEventListener(MouseEvent.CLICK, onmouseclickc1);
           c2.addEventListener(MouseEvent.CLICK, onmouseclickc2);
           c3.addEventListener(MouseEvent.CLICK, onmouseclickc3);
           d1.addEventListener(MouseEvent.CLICK, onmouseclickd1);
           d2.addEventListener(MouseEvent.CLICK, onmouseclickd2);
           d3.addEventListener(MouseEvent.CLICK, onmouseclickd3);
           e1.addEventListener(MouseEvent.CLICK, onmouseclicke1);
           e2.addEventListener(MouseEvent.CLICK, onmouseclicke2);
           e3.addEventListener(MouseEvent.CLICK, onmouseclicke3);
           f1.addEventListener(MouseEvent.CLICK, onmouseclickf1);
       f2.addEventListener(MouseEvent.CLICK, onmouseclickf2);
       f3.addEventListener(MouseEvent.CLICK, onmouseclickf3);
       addEventListener(Event.REMOVED_FROM_STAGE, onRemovedFromStage);
      public function onRemovedFromStage(event:Event):void
       //Remove the onEnterFrame event if
       //this object is removed from the stage
       removeEventListener(Event.ENTER_FRAME, onEnterFrame);
       removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
       removeEventListener(Event.REMOVED_FROM_STAGE, onRemovedFromStage);
       trace("Dungeon removed");
      public function onEnterFrame(event:Event):void
       if (points == 0   ){
    fireball1.alpha = .3;
    fireball1.enabled = false;
    burger1.alpha = .3;
    burger1.enabled = false;
    if (points == 1   ){
    fireball1.alpha = .3;
    fireball1.enabled = false;
    burger1.alpha = 1;
    burger1.enabled = true;
    if (herobar.width == 80){
       hero1.gotoAndStop(1);}
    if (herobar.width == 60){
       hero1.gotoAndStop(2);}
       else if (herobar.width == 40){
       hero1.gotoAndStop(3);}
       else if (herobar.width == 20){
       hero1.gotoAndStop(4);}
       else if (herobar.width == 0){
       hero1.gotoAndStop(5);}
       if(evilbar.width == 40)
       evil1.gotoAndStop (2)
       else if (evilbar.width == 0){
       evil1.gotoAndStop(3);}
    public function onmouseclicka1 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    else if (points==1){
    fireball1.alpha = .3;
    fireball1.enabled = false;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    removeEventListener (MouseEvent.CLICK,onmouseclicka1)
    quizz.gotoAndStop(2);
    animal1.gotoAndStop(2);
    removeChild(a1)
    removeChild(a2)
    removeChild(a3)
    b1.visible = true
       b2.visible = true
       b3.visible = true
       herobar.width -= 20;
       play();
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclicka2 (event:MouseEvent):void
    points++
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    removeEventListener (MouseEvent.CLICK,onmouseclicka2)
    quizz.gotoAndStop(2);
    animal1.gotoAndStop(2);
    removeChild(a1)
    removeChild(a2)
    removeChild(a3)
    b1.visible = true
       b2.visible = true
       b3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclicka3 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";
    if (points< 0){
    points = 0;
    removeEventListener (MouseEvent.CLICK,onmouseclicka3)
    quizz.gotoAndStop(2);
    animal1.gotoAndStop(2);
    removeChild(a1)
    removeChild(a2)
    removeChild(a3)
    b1.visible = true
       b2.visible = true
       b3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickb1 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    else if (points==1){
    fireball1.alpha = .3;
    fireball1.enabled = false;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.frame.gotoAndStop(3);
    animal1.gotoAndStop(3);
    removeChild(b1)
    removeChild(b2)
    removeChild(b3)
    c1.visible = true
       c2.visible = true
       c3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickb2 (event:MouseEvent):void
    points++
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(3);
    animal1.gotoAndStop(3);
    removeChild(b1)
    removeChild(b2)
    removeChild(b3)
    c1.visible = true
       c2.visible = true
       c3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickb3 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";
    if (points< 0){
    points = 0;
    quizz.gotoAndStop(3);
    animal1.gotoAndStop(3);
    removeChild(b1)
    removeChild(b2)
    removeChild(b3)
    c1.visible = true
       c2.visible = true
       c3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    }public function onmouseclickc1 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    else if (points==1){
    fireball1.alpha = .3;
    fireball1.enabled = false;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(4);
    animal1.gotoAndStop(4);
    removeChild(c1)
    removeChild(c2)
    removeChild(c3)
    d1.visible = true
       d2.visible = true
       d3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickc2 (event:MouseEvent):void
    points++
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(4);
    animal1.gotoAndStop(4);
    removeChild(c1)
    removeChild(c2)
    removeChild(c3)
    d1.visible = true
       d2.visible = true
       d3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickc3 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";
    if (points< 0){
    points = 0;
    quizz.gotoAndStop(4);
    animal1.gotoAndStop(4);
    removeChild(c1)
    removeChild(c2)
    removeChild(c3)
    d1.visible = true
       d2.visible = true
       d3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    }public function onmouseclickd1 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    else if (points==1){
    fireball1.alpha = .3;
    fireball1.enabled = false;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(5);
    animal1.gotoAndStop(5);
    removeChild(d1)
    removeChild(d2)
    removeChild(d3)
    e1.visible = true
       e2.visible = true
       e3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickd2 (event:MouseEvent):void
    points++
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(5);
    animal1.gotoAndStop(5);
    removeChild(d1)
    removeChild(d2)
    removeChild(d3)
    e1.visible = true
       e2.visible = true
       e3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickd3 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";
    if (points< 0){
    points = 0;
    quizz.gotoAndStop(5);
    animal1.gotoAndStop(5);
    removeChild(d1)
    removeChild(d2)
    removeChild(d3)
    e1.visible = true
       e2.visible = true
       e3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    }public function onmouseclicke1 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    else if (points==1){
    fireball1.alpha = .3;
    fireball1.enabled = false;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(6);
    animal1.gotoAndStop(6);
    removeChild(e1)
    removeChild(e2)
    removeChild(e3)
    f1.visible = true
       f2.visible = true
       f3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclicke2 (event:MouseEvent):void
    points++
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(6);
    animal1.gotoAndStop(6);
    removeChild(e1)
    removeChild(e2)
    removeChild(e3)
    f1.visible = true
       f2.visible = true
       f3.visible = true
       herobar.width -= 20;
       SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclicke3 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";
    if (points< 0){
    points = 0;
    quizz.gotoAndStop(6);
    animal1.gotoAndStop(6);
    removeChild(e1)
    removeChild(e2)
    removeChild(e3)
    herobar.width -= 20;
    SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickf1 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    else if (points==1){
    fireball1.alpha = .3;
    fireball1.enabled = false;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(7);
    animal1.gotoAndStop(7);
    removeChild(f1)
    removeChild(f2)
    removeChild(f3)
    herobar.width -= 20;
    SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickf2 (event:MouseEvent):void
    points++
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";}
    if (points< 0){
    points = 0;
    trace(points)
    quizz.gotoAndStop(7);
    animal1.gotoAndStop(7);
    removeChild(f1)
    removeChild(f2)
    removeChild(f3)
    herobar.width -= 20;
    SOUNDCHANNEL = CHIDORI.play();
    public function onmouseclickf3 (event:MouseEvent):void
    points--
    if (points == 1 ){
      burger1.enabled = true;
    burger1.alpha = 1;
    if ( points == 2 || points == 3 || points == 4 || points == 5 || points == 6){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";
    if (points< 0){
    points = 0;
    quizz.gotoAndStop(7);
    animal1.gotoAndStop(7);
    removeChild(f1)
    removeChild(f2)
    removeChild(f3)
    herobar.width -= 20;
    SOUNDCHANNEL = CHIDORI.play();
    public function onfireball1(event:MouseEvent):void{
    if ( points >= 2 ){
    points -= 2
    evilbar.width -=40
    SOUNDCHANNEL = SCREAMING.play();
    parent.gotoAndPlay(39)
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";
    if (points< 0){
    points = 0;
    public function onburger1(event:MouseEvent):void{
    if (points == 1 ){
    burger1.alpha = .3;
    fireball1.alpha = .3;
    burger1.enabled = false;
    fireball1.enabled = false;
    herobar.width +=20
    SOUNDCHANNEL = EATING.play()
    points--
    if ( points >=  2 ){
    burger1.enabled = true;
       fireball1.enabled = true;
       burger1.alpha = 1;
       fireball1.alpha = 1;
       herobar.width +=20
       points--
       SOUNDCHANNEL = EATING.play()
    else if (points==0){
    burger1.enabled = false;
       fireball1.enabled = false;
       burger1.alpha = .3;
       fireball1.alpha = .3;
    if (herobar.width >= 80){
    herobar.width = 80}
    score.text = String(points);
    if (score.text < "0" ){
    score.text = "0";
    if (points< 0){
    points = 0;

  • Stage Analysis Report Issue

    Hi,
    I have run a stage analysis report but it says no data inspite of open opportunities being present in the system. Could anyone kindly let me know what could be the issue?
    Regards
    Sharat

    Hi Sharat,
    Welcome you to the forum. Please close your first thread.
    Regarding your Stage Analysis Report Issue, what selection has been made? This report show closed opportunity only.
    Thanks,
    Gordon

  • How to load different html files in one page in order to load them without leaving the main stage?

    Hello,
    I'm new with edge animate, but i fell in love with it.
    I'd like to know, is it possible to load different html pages dynamically in the main stage in order to avoid the preloader to be load?
    I can figure out how to save all the pages of the site, but i can't merge them in a continuous animated browsing experience.
    As sample.
    I've got a index.html and home.html, how to switch form index to home without having a clear division between the two pages?
    I can place all the animations within a file and this will allow me to have a continuous surfing experience but it won't generate specific and google indexable pages within the site.
    Example, index.html will generate www.mysite.com, home will generate www.mysite.com/home. How ho switch dinamically between them and integrate them in a unique fading experience?
    Thanks in advance for any help. I'm a newby, but i would like to learn.
    Fea.

    Look into using the Loader class to load the swf files.  If you want to have it happen in different frames then you can put the code into the different frames.

  • I have an iPhone 4 and my lock button is jammed and I also can not touch anything on the left side of my screen well as any pop ups from the phone itself, so i can not get past the set up stage in reset process...how can i fix it/can it be fixed?

    I have an iPhone 4 and my lock button is jammed and I also can not touch anything on the left side of my screen well as any pop ups from the phone itself, so i can not get past the set up stage in reset process...how can i fix it/can it be fixed?

    Make an appointment at the genius bar and get the phone replaced.

  • ERROR IN WAS 6.4 SNEAK PREVIEW INSTALL DURING SP3 - SP5 DEPLOY ONLINE STAG

    Hi All,
    I have installed WAS 6.4 SP3 sneak preview over SQL server 2000. I get the following error message while patching from WAS SP3 to SP5 ( this patch is included as part of the sneak preview zip package) during DEPLOY ONLINE stage.
    ERROR
    MUT-02041   SDM call of deploySdaList ends with returncode 4. See output of logfile D:\Program Files\sapinst_instdir\PATCH\MSS\callSdmViaSapinst.log.
    Also find below the log file :
    Aug 23, 2004 4:09:51 PM  Info: Start logging to console
    Aug 23, 2004 4:09:51 PM  Info:
    Aug 23, 2004 4:09:51 PM  Info: ============================================
    Aug 23, 2004 4:09:51 PM  Info: =   Starting to execute command 'deploy'   =
    Aug 23, 2004 4:09:51 PM  Info: ============================================
    Aug 23, 2004 4:09:51 PM  Info: Starting SDM - Software Deployment Manager...
    Aug 23, 2004 4:09:53 PM  Info: tc/SL/SDM/SDM/sap.com/SAP AG/6.3005.00.0000.20040414093518.0000
    Aug 23, 2004 4:09:55 PM  Info: SDM operation mode successfully set to: Standalone
    Aug 23, 2004 4:09:57 PM  Info: Initializing Network Manager (50017)
    Aug 23, 2004 4:09:59 PM  Info: Checking if another SDM is running on port 50018
    Aug 23, 2004 4:09:59 PM  Info: -
    Starting deployment -
    Aug 23, 2004 4:09:59 PM  Info: Loading selected archives...
    Aug 23, 2004 4:09:59 PM  Info: Loading archive 'C:\WebAS640_Java_SP5\WebAS640SP3toSP5_Patch\J2EE-RUNT-CD\J2EE-ENG\ONLINE\SAPJTECHS05_0.SCA'
    Aug 23, 2004 4:12:27 PM  Info: Selected archives successfully loaded.
    Aug 23, 2004 4:12:33 PM  Info: Actions per selected component:
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sap.aii.ibtranslationclient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' updates currently deployed development component 'com.sap.aii.ibtranslationclient'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215133140.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sap.security.core.admin'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040330113610.0000' updates currently deployed development component 'com.sap.security.core.admin'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031112163623.0000'.
    Aug 23, 2004 4:12:33 PM  Info: No action: Selected development component 'com.sap.rprof.jddschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000' will not update currently deployed development component 'com.sap.rprof.jddschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000'.
    Aug 23, 2004 4:12:33 PM  Info: No action: Selected development component 'tc/SL/UTIL_JDD'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165554.0000' will not update currently deployed development component 'tc/SL/UTIL_JDD'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165554.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'tc/workflowmodeler'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040309120341.0000' updates currently deployed development component 'tc/workflowmodeler'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031119160521.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Initial deployment: Selected development component 'tc/wd/pdfsvrchal'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326170320.0000' will be deployed.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sap.lcr.saprfc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' updates currently deployed development component 'com.sap.lcr.saprfc'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031223155421.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sap.aii.util.rb'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' updates currently deployed development component 'com.sap.aii.util.rb'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215133140.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sap.util.monitor.grmg'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322170150.0000' updates currently deployed development component 'com.sap.util.monitor.grmg'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031007124738.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'tc/bcb/api'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040413165121.0000' updates currently deployed development component 'tc/bcb/api'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031210162516.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'SQLTrace'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000' updates currently deployed development component 'SQLTrace'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215150458.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sap.lcr.namealloc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' updates currently deployed development component 'com.sap.lcr.namealloc'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031223155421.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sap.lcr'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' updates currently deployed development component 'com.sap.lcr'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031223155421.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sap.rprof.remoteProfile'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000' updates currently deployed development component 'com.sap.rprof.remoteProfile'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031103173534.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'tc/SL/UTIL'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165554.0000' updates currently deployed development component 'tc/SL/UTIL'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031015103253.0000'.
    Aug 23, 2004 4:12:33 PM  Info: Update: Selected development component 'com.sapmarkets.mesyncjco'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165832.0000' updates currently deployed development component 'com.sapmarkets.mesyncjco'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215133611.0000'.
    Aug 23, 2004 4:12:33 PM  Info: No action: Selected development component 'tc/TechSrv/xml_das_connector_init'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000' will not update currently deployed development component 'tc/TechSrv/xml_das_connector_init'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000'.
    Aug 23, 2004 4:12:35 PM  Info: No action: Selected development component 'tc/uddi/dbschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155127.0000' will not update currently deployed development component 'tc/uddi/dbschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155127.0000'.
    Aug 23, 2004 4:12:36 PM  Info: Initial deployment: Selected development component 'tc/sec/wssec/app'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165540.0000' will be deployed.
    Aug 23, 2004 4:12:36 PM  Info: No action: Selected development component 'tc/TechSrv/XML_DAS_Connector_Schema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000' will not update currently deployed development component 'tc/TechSrv/XML_DAS_Connector_Schema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000'.
    Aug 23, 2004 4:12:36 PM  Info: Update: Selected development component 'com.sap.util.monitor.jarm.j2ee'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164312.0000' updates currently deployed development component 'com.sap.util.monitor.jarm.j2ee'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031001180520.0000'.
    Aug 23, 2004 4:12:36 PM  Info: Update: Selected development component 'tc/wd/tools'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326170320.0000' updates currently deployed development component 'tc/wd/tools'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031020134252.0000'.
    Aug 23, 2004 4:12:36 PM  Info: Update: Selected development component 'tc/wd/dispwda'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040415171020.0000' updates currently deployed development component 'tc/wd/dispwda'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031125134518.0000'.
    Aug 23, 2004 4:12:37 PM  Info: Update: Selected development component 'com.sapportals.htmlb'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164521.0000' updates currently deployed development component 'com.sapportals.htmlb'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031007125447.0000'.
    Aug 23, 2004 4:12:37 PM  Info: Update: Selected development component 'tc/bcb/ici'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040413165121.0000' updates currently deployed development component 'tc/bcb/ici'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031210162516.0000'.
    Aug 23, 2004 4:12:37 PM  Info: No action: Selected development component 'synclog'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000' will not update currently deployed development component 'synclog'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000'.
    Aug 23, 2004 4:12:37 PM  Info: Initial deployment: Selected development component 'tc/monitoring/systeminfo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' will be deployed.
    Aug 23, 2004 4:12:37 PM  Info: Update: Selected development component 'com.sap.aii.util.misc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' updates currently deployed development component 'com.sap.aii.util.misc'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215133140.0000'.
    Aug 23, 2004 4:12:37 PM  Info: No action: Selected development component 'tc/sld/data'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' will not update currently deployed development component 'tc/sld/data'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000'.
    Aug 23, 2004 4:12:37 PM  Info: Update: Selected development component 'tc/TechSrv/XML_DAS_Connector'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000' updates currently deployed development component 'tc/TechSrv/XML_DAS_Connector'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031007124656.0000'.
    Aug 23, 2004 4:12:37 PM  Info: Update: Selected development component 'com.sap.aii.proxy.framework'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' updates currently deployed development component 'com.sap.aii.proxy.framework'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215133140.0000'.
    Aug 23, 2004 4:12:37 PM  Info: Update: Selected software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.6.30.5.0.20040420063500' updates currently deployed software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'3.20040113043717'.
    Aug 23, 2004 4:12:37 PM  Info: Update: Selected development component 'com.sap.engine.docs.examples'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' updates currently deployed development component 'com.sap.engine.docs.examples'/'sap.com'/'SAP AG'/'6.3003.00.0000.20040108174709.0000'.
    Aug 23, 2004 4:12:38 PM  Info: Update: Selected development component 'com.sap.engine.class.download'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' updates currently deployed development component 'com.sap.engine.class.download'/'sap.com'/'SAP AG'/'6.3003.00.0000.20040108174709.0000'.
    Aug 23, 2004 4:12:38 PM  Info: No action: Selected development component 'com.sap.lcr.jddschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' will not update currently deployed development component 'com.sap.lcr.jddschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000'.
    Aug 23, 2004 4:12:38 PM  Info: Update: Selected development component 'com.sap.util.monitor.jarm.ccms'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164312.0000' updates currently deployed development component 'com.sap.util.monitor.jarm.ccms'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031001180520.0000'.
    Aug 23, 2004 4:12:38 PM  Info: Update: Selected development component 'tc/uddi'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155127.0000' updates currently deployed development component 'tc/uddi'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031119155233.0000'.
    Aug 23, 2004 4:12:38 PM  Info: Initial deployment: Selected development component 'tc/sec/vsi/app'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165540.0000' will be deployed.
    Aug 23, 2004 4:12:38 PM  Info: Update: Selected development component 'com.sap.pmi.adm'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164151.0000' updates currently deployed development component 'com.sap.pmi.adm'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031007124708.0000'.
    Aug 23, 2004 4:12:38 PM  Info: Update: Selected development component 'com.sap.jdo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164054.0000' updates currently deployed development component 'com.sap.jdo'/'sap.com'/'SAP AG'/'6.3003.00.0000.20040112231712'.
    Aug 23, 2004 4:12:38 PM  Info: Update: Selected development component 'com.sap.mobile.clientinfo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164228.0000' updates currently deployed development component 'com.sap.mobile.clientinfo'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031001181052.0000'.
    Aug 23, 2004 4:12:39 PM  Info: Initial deployment: Selected development component 'tc/SL/CMS/IDEClient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165855.0000' will be deployed.
    Aug 23, 2004 4:12:39 PM  Info: Update: Selected development component 'com.sap.aii.ibtransportclient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' updates currently deployed development component 'com.sap.aii.ibtransportclient'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215133140.0000'.
    Aug 23, 2004 4:12:39 PM  Info: Update: Selected development component 'com.sap.ip.me.webconsole'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165842.0000' updates currently deployed development component 'com.sap.ip.me.webconsole'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215133723.0000'.
    Aug 23, 2004 4:12:39 PM  Info: Update: Selected development component 'tc/wd/pdfobject'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040415171020.0000' updates currently deployed development component 'tc/wd/pdfobject'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031125134518.0000'.
    Aug 23, 2004 4:12:39 PM  Info: Update: Selected development component 'com.sap.lcrabapapi'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163618.0000' updates currently deployed development component 'com.sap.lcrabapapi'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031001180219.0000'.
    Aug 23, 2004 4:12:39 PM  Info: Update: Selected development component 'tc/sec/app'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165540.0000' updates currently deployed development component 'tc/sec/app'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031218123529.0000'.
    Aug 23, 2004 4:12:39 PM  Info: Update: Selected development component 'com.sapportals.htmlb.ear'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164521.0000' updates currently deployed development component 'com.sapportals.htmlb.ear'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031007125447.0000'.
    Aug 23, 2004 4:12:39 PM  Info: Update: Selected development component 'tc/TechSrv/XML_DAS'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322170316.0000' updates currently deployed development component 'tc/TechSrv/XML_DAS'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031007124545.0000'.
    Aug 23, 2004 4:12:40 PM  Info: Update: Selected development component 'com.sap.aii.util.xml'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' updates currently deployed development component 'com.sap.aii.util.xml'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215133140.0000'.
    Aug 23, 2004 4:12:40 PM  Info: Update: Selected development component 'tc/wd/corecomp'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326170320.0000' updates currently deployed development component 'tc/wd/corecomp'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031020134252.0000'.
    Aug 23, 2004 4:12:40 PM  Info: Update: Selected development component 'tc/eCATTPing'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155021.0000' updates currently deployed development component 'tc/eCATTPing'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031117101211.0000'.
    Aug 23, 2004 4:12:40 PM  Info: Update: Selected development component 'com.sap.engine.heartbeat'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' updates currently deployed development component 'com.sap.engine.heartbeat'/'sap.com'/'SAP AG'/'6.3003.00.0000.20040108174709.0000'.
    Aug 23, 2004 4:12:40 PM  Info: Update: Selected development component 'com.sap.rprof.dbprofiles'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000' updates currently deployed development component 'com.sap.rprof.dbprofiles'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031103173534.0000'.
    Aug 23, 2004 4:12:40 PM  Info: Update: Selected development component 'com.sap.engine.services.webservices.tool'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' updates currently deployed development component 'com.sap.engine.services.webservices.tool'/'sap.com'/'SAP AG'/'6.3003.00.0000.20040108174709.0000'.
    Aug 23, 2004 4:12:53 PM  Error: An error occured while storing the cluster instances!
    Aug 23, 2004 4:12:53 PM  Error: JStartup Framework is not able to deliver an information about the cluster control instances!
    Please check the status of the J2EE Engine
    Aug 23, 2004 4:12:53 PM  Error: Received exception when saving current Engine state: JStartup Framework is not able to deliver an information about the cluster control instances!
    Please check the status of the J2EE Engine
    Aug 23, 2004 4:12:53 PM  Info: Error handling strategy: OnErrorStop
    Aug 23, 2004 4:12:53 PM  Info: Update strategy: UpdateLowerVersions
    Aug 23, 2004 4:12:53 PM  Info: Starting: Update: Selected development component 'SQLTrace'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000' updates currently deployed development component 'SQLTrace'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031215150458.0000'.
    Aug 23, 2004 4:12:53 PM  Info: SDA to be deployed: D:\usr\sap\P64\JC00\SDM\root\origin\sap.com\SQLTrace\SAP AG\6.3005.00.0000.20040401154008.0000\SQLTrace.ear
    Aug 23, 2004 4:12:53 PM  Info: Software type of SDA: J2EE
    Aug 23, 2004 4:12:59 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Aug 23, 2004 4:13:00 PM  Info: Starting cluster instance processes.
    <b><b>Aug 23, 2004 4:13:00 PM  Error: An error occured while starting a cluster instance!
    Aug 23, 2004 4:13:00 PM  Error: JStartup Framework is not able to deliver an information about the cluster control instances!</b></b>
    Please check the status of the J2EE Engine
    Aug 23, 2004 4:13:00 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Aug 23, 2004 4:13:00 PM  Error: Aborted: development component 'SQLTrace'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000':
    SDM could not start the J2EE cluster on the host aol! The online deployment is terminated.
    JStartup Framework is not able to deliver an information about the cluster control instances!
    Please check the status of the J2EE Engine
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).STARTUP_CLUSTER)
    Aug 23, 2004 4:13:01 PM  Error: An error occured while restoring the cluster instances states
    Aug 23, 2004 4:13:01 PM  Error: JStartup Framework is not able to deliver an information about the cluster control instances!
    Please check the status of the J2EE Engine
    Aug 23, 2004 4:13:01 PM  Error: Received exception when restoring Engine state: JStartup Framework is not able to deliver an information about the cluster control instances!
    Please check the status of the J2EE Engine
    Aug 23, 2004 4:13:01 PM  Info: -
    Deployment was successful -
    Aug 23, 2004 4:13:02 PM  Info: Summarizing the deployment results:
    Aug 23, 2004 4:13:02 PM  Error: Admitted: C:\WebAS640_Java_SP5\WebAS640SP3toSP5_Patch\J2EE-RUNT-CD\J2EE-ENG\ONLINE\SAPJTECHS05_0.SCA
    Aug 23, 2004 4:13:02 PM  Error: Processing error. Return code: 4
    Appreciate your prompt help.
    Thanks.
    Nirmal

    Hi,
    I am getting the folloing error message now : below is the log file :
    Aug 24, 2004 2:36:53 PM  Info: Start logging to console
    Aug 24, 2004 2:36:53 PM  Info:
    Aug 24, 2004 2:36:53 PM  Info: ============================================
    Aug 24, 2004 2:36:53 PM  Info: =   Starting to execute command 'deploy'   =
    Aug 24, 2004 2:36:53 PM  Info: ============================================
    Aug 24, 2004 2:36:53 PM  Info: Starting SDM - Software Deployment Manager...
    Aug 24, 2004 2:36:54 PM  Info: tc/SL/SDM/SDM/sap.com/SAP AG/6.3005.00.0000.20040414093518.0000
    Aug 24, 2004 2:36:56 PM  Info: SDM operation mode successfully set to: Standalone
    Aug 24, 2004 2:36:57 PM  Info: Initializing Network Manager (50017)
    Aug 24, 2004 2:36:57 PM  Info: Checking if another SDM is running on port 50018
    Aug 24, 2004 2:36:57 PM  Info: -
    Starting deployment -
    Aug 24, 2004 2:36:58 PM  Info: Loading selected archives...
    Aug 24, 2004 2:36:58 PM  Info: Loading archive 'C:\WebAS640_Java_SP5\WebAS640SP3toSP5_Patch\J2EE-RUNT-CD\J2EE-ENG\ONLINE\SAPJTECHS05_0.SCA'
    Aug 24, 2004 2:37:17 PM  Info: Selected archives successfully loaded.
    Aug 24, 2004 2:37:22 PM  Info: Actions per selected component:
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.aii.ibtranslationclient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' will not update currently deployed development component 'com.sap.aii.ibtranslationclient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.security.core.admin'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040330113610.0000' will not update currently deployed development component 'com.sap.security.core.admin'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040330113610.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.rprof.jddschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000' will not update currently deployed development component 'com.sap.rprof.jddschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'tc/SL/UTIL_JDD'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165554.0000' will not update currently deployed development component 'tc/SL/UTIL_JDD'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165554.0000'.
    Aug 24, 2004 2:37:22 PM  Info: Update: Selected development component 'tc/workflowmodeler'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040309120341.0000' updates currently deployed development component 'tc/workflowmodeler'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031119160521.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.lcr.saprfc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' will not update currently deployed development component 'com.sap.lcr.saprfc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000'.
    Aug 24, 2004 2:37:22 PM  Info: Initial deployment: Selected development component 'tc/wd/pdfsvrchal'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326170320.0000' will be deployed.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.aii.util.rb'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' will not update currently deployed development component 'com.sap.aii.util.rb'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.util.monitor.grmg'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322170150.0000' will not update currently deployed development component 'com.sap.util.monitor.grmg'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322170150.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'tc/bcb/api'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040413165121.0000' will not update currently deployed development component 'tc/bcb/api'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040413165121.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'SQLTrace'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000' will not update currently deployed development component 'SQLTrace'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.lcr.namealloc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' will not update currently deployed development component 'com.sap.lcr.namealloc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.lcr'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' will not update currently deployed development component 'com.sap.lcr'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.rprof.remoteProfile'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000' will not update currently deployed development component 'com.sap.rprof.remoteProfile'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'tc/SL/UTIL'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165554.0000' will not update currently deployed development component 'tc/SL/UTIL'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165554.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sapmarkets.mesyncjco'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165832.0000' will not update currently deployed development component 'com.sapmarkets.mesyncjco'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165832.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'tc/TechSrv/xml_das_connector_init'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000' will not update currently deployed development component 'tc/TechSrv/xml_das_connector_init'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'tc/uddi/dbschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155127.0000' will not update currently deployed development component 'tc/uddi/dbschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155127.0000'.
    Aug 24, 2004 2:37:22 PM  Info: Initial deployment: Selected development component 'tc/sec/wssec/app'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165540.0000' will be deployed.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'tc/TechSrv/XML_DAS_Connector_Schema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000' will not update currently deployed development component 'tc/TechSrv/XML_DAS_Connector_Schema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000'.
    Aug 24, 2004 2:37:22 PM  Info: Update: Selected development component 'tc/wd/tools'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326170320.0000' updates currently deployed development component 'tc/wd/tools'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031020134252.0000'.
    Aug 24, 2004 2:37:22 PM  Info: No action: Selected development component 'com.sap.util.monitor.jarm.j2ee'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164312.0000' will not update currently deployed development component 'com.sap.util.monitor.jarm.j2ee'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164312.0000'.
    Aug 24, 2004 2:37:22 PM  Info: Update: Selected development component 'tc/wd/dispwda'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040415171020.0000' updates currently deployed development component 'tc/wd/dispwda'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031125134518.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sapportals.htmlb'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164521.0000' will not update currently deployed development component 'com.sapportals.htmlb'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164521.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'tc/bcb/ici'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040413165121.0000' will not update currently deployed development component 'tc/bcb/ici'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040413165121.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'synclog'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000' will not update currently deployed development component 'synclog'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040401154008.0000'.
    Aug 24, 2004 2:37:23 PM  Info: Initial deployment: Selected development component 'tc/monitoring/systeminfo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' will be deployed.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.aii.util.misc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' will not update currently deployed development component 'com.sap.aii.util.misc'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'tc/sld/data'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' will not update currently deployed development component 'tc/sld/data'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'tc/TechSrv/XML_DAS_Connector'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000' will not update currently deployed development component 'tc/TechSrv/XML_DAS_Connector'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322174245.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.aii.proxy.framework'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' will not update currently deployed development component 'com.sap.aii.proxy.framework'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000'.
    Aug 24, 2004 2:37:23 PM  Info: Update: Selected software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.6.30.5.0.20040420063500' updates currently deployed software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'3.20040113043717'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.engine.docs.examples'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' will not update currently deployed development component 'com.sap.engine.docs.examples'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.lcr.jddschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000' will not update currently deployed development component 'com.sap.lcr.jddschema'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322164348.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.engine.class.download'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' will not update currently deployed development component 'com.sap.engine.class.download'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.util.monitor.jarm.ccms'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164312.0000' will not update currently deployed development component 'com.sap.util.monitor.jarm.ccms'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164312.0000'.
    Aug 24, 2004 2:37:23 PM  Info: Update: Selected development component 'tc/uddi'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155127.0000' updates currently deployed development component 'tc/uddi'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031119155233.0000'.
    Aug 24, 2004 2:37:23 PM  Info: Initial deployment: Selected development component 'tc/sec/vsi/app'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165540.0000' will be deployed.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.pmi.adm'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164151.0000' will not update currently deployed development component 'com.sap.pmi.adm'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164151.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.jdo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164054.0000' will not update currently deployed development component 'com.sap.jdo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164054.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.mobile.clientinfo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164228.0000' will not update currently deployed development component 'com.sap.mobile.clientinfo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164228.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'tc/SL/CMS/IDEClient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165855.0000' will not update currently deployed development component 'tc/SL/CMS/IDEClient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165855.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.aii.ibtransportclient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' will not update currently deployed development component 'com.sap.aii.ibtransportclient'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.ip.me.webconsole'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165842.0000' will not update currently deployed development component 'com.sap.ip.me.webconsole'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165842.0000'.
    Aug 24, 2004 2:37:23 PM  Info: Update: Selected development component 'tc/wd/pdfobject'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040415171020.0000' updates currently deployed development component 'tc/wd/pdfobject'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031125134518.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.lcrabapapi'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163618.0000' will not update currently deployed development component 'com.sap.lcrabapapi'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163618.0000'.
    Aug 24, 2004 2:37:23 PM  Info: Update: Selected development component 'tc/sec/app'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326165540.0000' updates currently deployed development component 'tc/sec/app'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031218123529.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sapportals.htmlb.ear'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164521.0000' will not update currently deployed development component 'com.sapportals.htmlb.ear'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308164521.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.aii.util.xml'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000' will not update currently deployed development component 'com.sap.aii.util.xml'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163841.0000'.
    Aug 24, 2004 2:37:23 PM  Info: Update: Selected development component 'tc/wd/corecomp'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040326170320.0000' updates currently deployed development component 'tc/wd/corecomp'/'sap.com'/'SAP AG'/'6.3003.00.0000.20031020134252.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'tc/TechSrv/XML_DAS'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322170316.0000' will not update currently deployed development component 'tc/TechSrv/XML_DAS'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322170316.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'tc/eCATTPing'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155021.0000' will not update currently deployed development component 'tc/eCATTPing'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040322155021.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.engine.heartbeat'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' will not update currently deployed development component 'com.sap.engine.heartbeat'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.engine.services.webservices.tool'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' will not update currently deployed development component 'com.sap.engine.services.webservices.tool'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000'.
    Aug 24, 2004 2:37:23 PM  Info: No action: Selected development component 'com.sap.rprof.dbprofiles'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000' will not update currently deployed development component 'com.sap.rprof.dbprofiles'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040308163632.0000'.
    <b>Aug 24, 2004 2:37:23 PM  Error: Could not create JStartupClusterController: No route to host: connect Throwable: java.net.NoRouteToHostException Throwable message: No route to host: connect
    Aug 24, 2004 2:37:23 PM  Error: Received exception when saving current Engine state: Could not create JStartupClusterController: No route to host: connect
    Aug 24, 2004 2:37:24 PM  Info: Error handling strategy: OnErrorStop</b>Aug 24, 2004 2:37:24 PM  Info: Update strategy: UpdateLowerVersions
    Aug 24, 2004 2:37:24 PM  Info: Starting: Initial deployment: Selected development component 'tc/monitoring/systeminfo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000' will be deployed.
    Aug 24, 2004 2:37:24 PM  Info: SDA to be deployed: D:\usr\sap\P64\JC00\SDM\root\origin\sap.com\tc\monitoring\systeminfo\SAP AG\6.3005.00.0000.20040419174536.0000\SystemInfo.ear
    Aug 24, 2004 2:37:24 PM  Info: Software type of SDA: J2EE
    Aug 24, 2004 2:37:25 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Aug 24, 2004 2:37:28 PM  Error: Could not create JStartupClusterController: No route to host: connect Throwable: java.net.NoRouteToHostException Throwable message: No route to host: connect
    Aug 24, 2004 2:37:28 PM  Info: No information about the J2EE engine cluster is available.
    The online deployment process is continuing.
    Aug 24, 2004 2:37:30 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Aug 24, 2004 2:37:30 PM  Error: Aborted: development component 'tc/monitoring/systeminfo'/'sap.com'/'SAP AG'/'6.3005.00.0000.20040419174536.0000':
    Caught exception while checking the login credentials from SAP J2EE Engine's deploy API:
    com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot connect to Host: [aol] with UserName: [Administrator]
                        Check your Login Info.
                        Exception is:
    com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.services.security.exceptions.BaseLoginException: Cannot create new RemoteLoginContext instance.]
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMEXC)
    Aug 24, 2004 2:37:30 PM  Error: Could not create JStartupClusterController: No route to host: connect Throwable: java.net.NoRouteToHostException Throwable message: No route to host: connect
    Aug 24, 2004 2:37:30 PM  Error: Received exception when restoring Engine state: Could not create JStartupClusterController: No route to host: connect
    Aug 24, 2004 2:37:31 PM  Info: -
    Deployment was successful -
    Aug 24, 2004 2:37:31 PM  Info: Summarizing the deployment results:
    Aug 24, 2004 2:37:31 PM  Error: Admitted: C:\WebAS640_Java_SP5\WebAS640SP3toSP5_Patch\J2EE-RUNT-CD\J2EE-ENG\ONLINE\SAPJTECHS05_0.SCA
    Aug 24, 2004 2:37:31 PM  Error: Processing error. Return code: 4

  • How to pause stage/swf with audio when a new tab is opened/ out of focus in browser

    I have created a container in Flash Professional CS5 for my project’s CBT.  I’ve been able to script many of the features we require using AS3, but there are a couple of things I’m still trying to work out.
    I would like the swf presently playing in one tab to pause and go silent when another swf is opened in a new tab (the sound is inside this externally loaded swf which is loaded inside a movie clip from buttons nested a movie clip down).  I’ve tried :
    var originalFrameRate:uint = stage.frameRate;
    var standbyFrameRate:uint = 0;
    addEventListener(Event.ACTIVATE, onActivate);
    addEventListener(Event.DEACTIVATE, onDeactivate);
    function onActivate(e:Event):void
           stage.frameRate = originalFrameRate;
           trace("in focus");
    function onDeactivate(e:Event):void
           stage.frameRate = standbyFrameRate;
           SoundMixer.stopAll();
           trace("out of focus");
    And
          I’ve looked into the HTML tag “has Priority”
    and coded buttons to:
    function fl_ClickToGoToWebPage(event:MouseEvent):void
           navigateToURL(new URLRequest("http://www.ansaldo-sts.com/AnsaldoSTS/EN/index.sdo"), "_blank");
           MovieClip(this.stage).stop();
    With variations of:
    MovieClip(this.parent.parent)stop();
    MovieClip(this.parent.parent.parent.parent)stop(); because the button is 3 movie clips deep.
    MovieClip(this.root)stop();      MovieClip(root)stop();MovieClip(this.currentTarget.root)stop();
    Could someone please provide me with the code?
    This function is present when I publish the CBT with Captivate, so obviously there must be code available. You can set the Captivate button to open url in new window and pause movie.
    Is there something I can add to the html file that is similar to the “has Priority” for mobile devices or is there javascript that can be added to the flash itself?

    You would send a command to Flash from JavaScript when window.onblur event occurs.

  • I have a 2008 iMac 21.5" 10.6.8 Snow Leopard with 4.1.3 VMWare and windows 7.Mountain Lion initially refused to down load as I had back up on the HD. this was removed and installation was accepted but froze in the initial stages with 33 mins to go.

    I have a 2008 iMac 21.5" using 10.6.8 Snow Leopard with VM Ware 4.1.3 supporting Windows 7. Initially ML OSX refused to install due to Back up on HD which I removed to trash.It then proceeded but froze up in the initial stages with 33 mins remaining. I was lucky enough to quit and restart using 10.6.8. With all the problems on this chat line, it appears it may be best to leave Mountain Lion well alone, and cut losses rather than tempt fate.Has anybody anything positive to say or help with?

    Welcome to Apple Communities
    1. Open Disk Utility and repair permissions
    2. Open Finder, go to your user's folder > Library > Caches and delete everything
    3. Verify disk
    4. See if your apps are compatible with OS X 10.8 > http://www.roaringapps.com
    You can also do a backup and create a DVD or USB drive to install OS X > http://arstechnica.com/apple/2012/07/how-to-create-a-bootable-backup-mountain-li on-install-disk/ When you start in 10.8 installer, open Disk Utility, select your volume and erase the drive, and install

  • Displaying the value of an variable on the stage

    I have managed to display the values contained in string variables on stage, and I am happy with that, however when I wish to display the value of an int and convert it to a string as one is supposed to do the output to the stage just calls it [class int] and does not give its value. any suggestions?
    My rogram contains a stage at frame 1 which displays a word. The user must input a word. Frame 30 then displays the word which was displayed and the word input by the user. That all works fine. But the value of the variable NumberRight, which has been assigned to that variable will only display as [class int] without showing its value. (even though I have converet it to a string using the .to string function you see below).
    My code is as follows;
    trace( "The number correct was" + NumberRight); //This works fine in the output window and shows the value of the variable as NumberRight [class int]1 (showing the value to be 1)
    outputText.appendText("in/"+textAtIN); //this works fine displaying the word presented and word input by user as in/in
    outputText.appendText( NumberRight.toString(     )); //here lies the problem as it just displays [class int] and nothing else.
    Yes I have managed to overcome that problem it was some code on the first frame, please excuse, however, now, is there any way to remove the [class int] bit from the displays, I wish to have the results as a clear copy of the results so that they can be printed out, without [class int] all over the place?

    Hi Ned thanks for that. Yes I had accidently created blank spaces in the String() argument. (wanted to check if there was a subsequent difference in display and forgot to return them to normal ...Sorted )
    Your next suggestion has eliminated the [class int] but I get a value now of 0.
    My code on the first frame for a correct response for example is;
    function keyPressedIN(event:KeyboardEvent):void
              if (event.keyCode == 13)/*Normally,this will move straight on to the next frame-
              recording a correct response and all that that implies in terms of scores etc. But now I have re directed it to Frame 30 to check are the variables working properly*/
                        //insert code for correct responses vowels etc.
                        VowelI = VowelI+1;
                        NumberRight = NumberRight +1;
                        stage.focus = stage;
                        //There is no need to display the text box as this is a correct response.
                        pupilsResponseIN.visible = false;
                        mainText.visible = false;
                        gotoAndPlay(30);//at the moment this takes me to the display frame to check if all is ok
    On the first frame when the user say hits the Return key my code assigns the value of +1 to the variable; eg
    NumberRight=NumberRight+1;
    and the value of +1 to the value of VowelI
    VowelI=VowelI+1
    At Frame 30 the code is as follows;
    stop();
    trace( "The number correct was"+ NumberRight);
    outputText.appendText("in/"+textAtIN);
    outputText.appendText( "\n");
    outputText.appendText("Vowels Correct ="+(int(VowelI).toString()));
    outputText.appendText( "\n");
    outputText.appendText("TotalCorrect="+(int(NumberRight).toString()));
    //outputText.appendText( VowelI.toString());
    Now what I am getting  is
    in/in
    Vowels Correct = O
    Total Correct = O
    Yet the trace (output box) records the Number correct as [class int]1 
    many years ago I wrote this same program in Authorware using similar code. I am trying to re write it in FlashCS5 using ActionScript 3 and It take days to solve small problems. I notice also that If for example the user of the program makes an error and I record the error as NumberRight =NumberRight -1 the program records it as Total Correct = NaN .
    I gave up on this a few months back but I am trying again. I think there must be a better way to do this. Variables do not seem to add up or subtract for me at present. no doubt its me thats got it wrong.

  • Exit out of video and return to stage frame 1

    Ive manged to create a flash player that incorporates a video
    using a online
    tutorial with the code below.
    All is working well but at the end of the video I want to
    exit out of the
    video and return to the stage at frame 1. The reason being
    is; before a user
    hits play an interface image (containing info) is displayed.
    When they hit
    the play button the video appears and plays over the
    interface image.
    problem is at the end of the video the layer containing the
    image is still
    covered by the video. when the video finishes I need a line
    of code to exit
    and return the player to the original state without the
    presecence of the
    video layer.
    any ideas? thanks in advance
    Brett
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    theVideo.attachVideo(ns);
    rewindButton.onRelease = function() {
    ns.seek(0);
    ns.play();
    playButton.onRelease = function() {
    ns.play("modular.flv");
    pauseButton.onRelease = function() {
    ns.pause();
    var videoInterval = setInterval(videoStatus,100);
    var amountLoaded:Number;
    var duration:Number;
    ns["onMetaData"] = function (obj) {
    duration = obj.duration;
    function videoStatus() {
    amountLoaded = ns.bytesLoaded / ns.bytesTotal;
    loader.loadbar._width = amountLoaded * 200;
    loader.scrub._x = ns.time / duration * 200;
    var scrubInterval;
    loader.scrub.onPress = function(){
    clearInterval(videoInterval);
    scrubInterval = setInterval(scrubit, 10);
    this.startDrag(false,1,this._y,198,this._y);
    loader.scrub.onRelease = loader.scrub.onReleaseOutside =
    function () {
    clearInterval(scrubInterval);
    videoInterval = setInterval(videoStatus,100);
    this.stopDrag();
    function scrubit() {
    ns.seek(Math.floor((loader.scrub._x/200)*duration));

    Inside the videoStatus() function Check the Current Time and
    Total time for video completion. Some time the Video doesn't have
    exact Time when comparing to the Total duration so use Math.floor
    to compare. if you still facing problem also check the Buffer
    status and Video status too.

  • Edit stage size without effecting elements position.

    Question.  Can you change the size of your stage, say smaller than what you started with, so that when you move your elements to the new position of the stage the motion paths do get messed up because you moved everything?
    I have a "full" page layout that I would like to cut in half but the stage jumps to a "middle" point and when I try to move all my elements, some with motion paths, it increases the distance of the path and destroys it.  I don't see any way of locking the paths to move an element and I have 23 elements with paths to move so moving each would suck.
    I know Edge is basically in Beta 24, 7 because it's still not flushed out anywhere near where it could be.  If they just allowed you to adjust the stage size by locking a region kinda like page size in Photoshop or adjusting the page like in Illustrator with cropping.
    Any suggestions or help would be greatly appreciated.
    Thanks,
    Ryan.

    Hi Colin,
    Thanks for the fast reply.
    I guess I checked fullscreen when creating the project, however, when setting fullScreen to false (and uncommenting the still commented node?!) in de descriptor file I get the following compile error:
    Error occurred while packaging the application:
    /private/var/folders/gv/gv-j1H1UFJ4olvFpGwVTVk+++TI/-Tmp-/AOT1309729499262/Box2DiPad-app.x ml(109): error 103: application.initialWindow.fullScreen is an unexpected element/attribute
    User error somewhat or bug?
    ... Rats! In case anyone messes up like me: The fullscreen node gets rewritten all the way at the bottom of the initialWindow section. So it needs to be changed there....
    Is there anyone who can shed some light on AIR 2.7 update progress?
    Thanks,
    Manno

  • Latest update of Muse is not installing on several tries,installation gets stuck at 43% and shows '' waiting'' at the  ''Extracting''  stage for 7-8 hours after which it does not progress

    latest update of Muse is not installing on several tries,installation gets stuck at 43% and shows '' waiting'' at the  ''Extracting''  stage for 7-8 hours after which it does not progress.

    Refer to EX11....
    Creative Cloud Error Codes (WIP) | Mylenium's Error Code Database
    Mylenium

  • My sisters ipod touch was being registered to my itunes account and then itunes crashed at the final stage and now it wont give me an option to sync my apps and songs from my itunes to her ipod. What can i do?

    I have an iphone and it is obviously registered to my itunes so i have all my apps and music on it and my sister just got the new ipod touch and wants my apps and music and so i went to register it to my itunes to sync my music and apps to it just before her birthday but itunes crashed on one of the stages (the final stage i think) of registartion and so i had to close itunes and start it up again but it didnt give me the steps to register the ipod again and now when i connect it i go onto the ipod button and it is just blank with ipod written in the middle with no autofill buttons or sync buttons or any automatic fills and i cant drag music onto it either. Is there anything i can do?

    - You need to restore the iPod to factory defaults/new iPod and start anew.  Is the restore button visable in iTunes?  If it is they restore the iPod.
    - If it is not visible try resetting the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - If the restore button is still not visable, try placing the iPod in recovry mode.  See:
    iPhone and iPod touch: Unable to update or restore

  • Wont get past "configuring updates stage 3 of 3 0%" and wont let me log into computer..HELP!!!

    heres a picture of the screen i keep getting.
    -HP Pavilion dv6700 as you can see its home premium
    i kept getting a vista spyware alert saying i had 34 infected files and wouldn't stop and i also tried updating some things on my laptop while i updated to the new internet explorer 9. around 12noon today i rebooted my laptop to get all the updates to work and i got this configuring updates screen and was like ok. it kept going. it does it for a while, shuts down and restarts and goes back i didnt think anything was wrong made it to stage 3 and wont stop and move on from 0%. its now 10pm and its been doing it all day. ive tried shutting it down and rebooting myself but no matter what i do, it wont let me access my computer to do anything. i have avast virus protection but it said it was unable to move viruses to chest i pressed repair and it said it was postponed until next reboot so i did it this morning and figured its taking so long maybe because its trying to repair them but im sure it doesnt take 10 hours...im extremely upset. someone please help. and also, anyone know how i can get the viruses out? i dont have money for a better protection right now so im using my moms computer but she works on it so its hard. hp said they cant help because my warrenty is up, was a 1 year warrenty, got laptop in 2008 and warrenty expired in 2009. please help me.

    After installing updates from Windows Update, you may get into a Reboot loop where you machines gets to “configuring updates 3 of 3. x% complete” then freezes or reboots.
    Solution: 
    1a. Boot from the Windows System Repair Disc and choose the repair option in the lower left hand corner, choose System Restore, and select a Restore Point predating the attempted installation of the updates.
    1b. If you don't have the DVD and the Vista/W7 came preinstalled on the machine, boot to the Recovery Environment using F8 at the HP logo during boot, choose "repair your computer" from the list, let RE load and do a system restore from there.
    If restore fails, load the recovery environment command prompt and enter:
    Del C:\Windows\winsxs\pending.xml
    exit recovery environment and restart the pc, you may get 3 of 3 again but be patient, the desktop should load. Create a manual restore point and Turn off Windows  Automatic updates until you can figure out which update caused the loop.
    If you get it booting again:
    You may be infected
    Follow the order given below to disinfect your PC
    1.) On a PC that is Not infected, Make a boot AV disc then boot from the disc on the Infected PC and scan the hard drive, remove any infections it finds, I prefer the Kaspersky disc myself. The New 2010 Kaspersky disc can update the AV dat files if you are connected to the internet at the time of scan and is suggested to update before the scan.
    http://www.techmixer.com/free-bootable-antivirus-rescue-cds-download-list/
    2.) Then boot into Windows:
    Install free MBAM, run the program and go to the Update tab and update it, then go to the Scanner Tab and do a quick scan, select and remove anything it finds.
    http://download.cnet.com/Malwarebytes-Anti-Malware/3000-8022_4-10804572.html
    3.) When MBAM is done install SAS free version, run a quick scan, remove what it automatically selects.
    http://www.superantispyware.com/download.html
    These last 2 are not AV softwares like regular Anti Virus Software, they are on demand scanners that only scan for nasties when you run the program and will not interfere with your installed AV, these can be run once a day or week to ensure you are not infected. Be sure you update them before each daily-weekly scan.

  • Problem with stage and Error #1034

    Hi!
    Well I'm newbie in AS, writing it only for a 5 days and I've come across error which gives me a lot headache. I was searching for solution to it for quite some time now and didnt understand what I suppose to do with solution.
    So, here is my problem if someone is willing to take a look at it.
    Error:
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Stage@ef6fb51 to flash.display.MovieClip.
    at Association_fla::MainTimeline/frame30()
    at flash.display::MovieClip/gotoAndStop()
    at Association_fla::Association_12/prikazi()
    at MethodInfo-32()
    I have a lot of layers and movieclips inside my fla and so pasting all of my code isn' t an option, cause there is a lot of newb, memory wasting programming it could take hours for someone to look into it.
    Problem here is, if I understood it right, that my stage isn't a movieclip as I referenced it, most probably in this section of code:
    MovieClip(parent).gotoAndPlay("result");    //  in  stage / association_mc
    Didn't have that error while doing same thing in other movieclips like:
    MovieClip(parent).gotoAndPlay("home");  //  in  stage / instructions_mc
    And last question is: How can reference my main stage? I'm using MovieClip(parent) to get to it, but I see that everyone using just stage object from Stage class
    Thank you in advance!
    Mario

    also reports call to undefined method :/
    1061: Call to a possibly undefined method gotoAndPlay through a reference with static type flash.display:DisplayObjectContainer.
    edit:
    After numerous checking code all over again and testing and tracing everything i found out that problem occurs when going to result label at Frame 31 when playing the result_mc movie.
    going from different movieclip to it gives this errors
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Stage@ea9fb51 to flash.display.MovieClip.
    at Association_fla::MainTimeline/frame30()
    at flash.display::MovieClip/gotoAndPlay()
    at Association_fla::Association_12/prikazi()
    at MethodInfo-32()
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Stage@1fc76b51 to flash.display.MovieClip.
    at Association_fla::MainTimeline/frame30()
    at flash.display::MovieClip/gotoAndStop()
    at Association_fla::Home_2/gotoA()
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Stage@1fc59b51 to flash.display.MovieClip.
    at Association_fla::MainTimeline/frame30()
    at flash.display::MovieClip/gotoAndPlay()
    at Association_fla::Highscorescopy_36/gotoM()
    edit2:
    resolved !
    found on one forum this answer, maybe it will help someone else
    I've just had the same problem myself. A bit of detective work revealed that it has nothing to do with the code, but occurs when:
    The swf is being run from a remote server.
    You have a custom class on the stage which has an instance name.
    The class is NOT declared as "Export in first frame".
    An instance of the class doesn't appear on the first frame of the movie.
    So the solution, in my case, was just to tick "Export in first frame" in the library symbol linkage options. This made everything work fine, but if anyone knows why this is then I'd be interested to know.

Maybe you are looking for