StopDrag Issue.. ??

Hello,
I have a movie clip placed on my stage.  Within this movie clip I have a sliding button with the instance name 'volumeslide_btn'.  On frame 1 of this movie clip (on it own 'actions' layer) I have the following script:
this.volumeslide_btn.onPress = function() {
    volumeslide_btn.startDrag(this,true,24,1,115,1);
this.volumeslide_btn.onRelease = function() {
    volumeslide_btn.stopDrag();
My problem is that the stopDrag command is not working.  when I click the mouse picks up the button and drags to just fine, but when i release, nothing happens and the button stays attached to my mouse arrow.
Any help would be much appreciated.

try:
this.volumeslide_btn.onPress = function() {
    volumeslide_btn.startDrag(this,true,24,1,115,1);
this.volumeslide_btn.onRelease = this.volumeslide_btn.onReleaseOutside = function() {
    volumeslide_btn.stopDrag();

Similar Messages

  • Issue with mouse_up and mouse_down actions

    Hello,
    I placed this code in the actionscript so i could drag and drop the mucles and place them into their targets. My issue is that once the mouse is down on the muscle "temporalis", the temporalis muscle lifts up but does not drop it when the mouse is up. I set functions for drop it and pick up when the mouse is down and when the mouse is up. Also I set the pick up to be true so the temporalis muscle is picked up from the middle, but it is not picking up from the middle. I dont see anything wrong with my code can someone please help? Here is the Code:
    1     temporalis_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    2     temporalis_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    3    
    4     function pickUp(event:MouseEvent):void {
    5           event.target.startDrag(true);
    6     }
    7     function dropIt(event:MouseEvent):void {
    8          event.target.stopDrag();
    9     }
    10
    11     temporalis_mc.buttonMode = true;
    Thanks,
    A Student.

    use:
    1     temporalis_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    2
    3    
    4     function pickUp(event:MouseEvent):void {
    5           event.target.startDrag(true);
    stage.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    6     }
    7     function dropIt(event:MouseEvent):void {
    8          stopDrag();
    stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
    9     }
    10
    11     temporalis_mc.buttonMode = true;

  • NetStream Video Control button issue

    The stop button plays as expected.  The play/pause button plays as expected.  The issue is when you press pause which will cause the play button to appear, then press stop.  the video automatically plays and it shouldn't. I have bolded the control button script for convenience.
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    theVideo.attachVideo(ns);
    ns.play("LOB2_0644_new.flv");
    stop_mc.onRelease = function(){
    playpause_mc.gotoAndStop("playing");
    ns.seek(0);
    ns.pause();
    playpause_mc.onRelease = function(){
    ns.pause();
      if (this._currentframe == 1)
            this.gotoAndStop("playing");
            movie_mc.play();
        else
            this.gotoAndStop("paused");
            movie_mc.stop();
        } // end else if
    } // End of the function
    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 * 424;
    loader.scrub._x = ns.time / duration * 424;
    var scrubInterval;
    loader.scrub.onPress = function(){
    clearInterval(videoInterval);
    scrubInterval = setInterval(scrubit,10);
    this.startDrag(false,0,this._y,424,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/424)*duration));
    _root.createEmptyMovieClip("vSound",_root.getNextHighestDepth());
    vSound.attachAudio(ns);
    var so:Sound = new Sound(vSound);
    so.setVolume(100);

    before executing gotoAndStop("playing") check if playpause_mc is already on the "playing" frame.   if it is, do nothing.  if it's not, execute your gotoAndStop().
    also, you probably want:
       else
    ns.play();
            this.gotoAndStop("paused");
            movie_mc.stop();
        } // end else if

  • Drag and Drop disappear issue

    Hello, I'm making a game in which I have some drag and drop items that they can be multiplied as many as you want. This items have to stay in the scene and I also have a bin in the menu where If you drag them they have to disappear.The problem is that I tried with multiple coordinates and they disappear also in the scene in the moment that I'm dragging them out of the menu. So, my question is:What could be wrong? Is the issue in the code?
    Thank you for taking the time to help me. It's my first game in AS3 so I'm not so familiar with the codes.
    import flash.display.Sprite;
    import flash.events.MouseEvent;
    DDB1.addEventListener(MouseEvent.MOUSE_DOWN, createDDB1);
    var _DDB1:Sprite;
    function createDDB1(evt:MouseEvent){
      _DDB1 = new DDB1MC();
      _DDB1.x = evt.stageX;
      _DDB1.y = evt.stageY;
      _DDB1.rotation = evt.currentTarget.rotation;
      _DDB1.transform.colorTransform = evt.currentTarget.transform.colorTransform
      addChild(_DDB1);
      _DDB1.startDrag(false);
      _DDB1.addEventListener(MouseEvent.MOUSE_DOWN, dragDDB1);
      stage.addEventListener(MouseEvent.MOUSE_UP, dropDDB1);
    function dragDDB1(evt:MouseEvent){
      evt.stopPropagation();
      _DDB1 = evt.currentTarget as Sprite;
      _DDB1.startDrag(false);
      stage.addEventListener(MouseEvent.MOUSE_UP, dropDDB1);
    function dropDDB1(e:MouseEvent):void {
      _DDB1.stopDrag();
      stage.removeEventListener(MouseEvent.MOUSE_UP,dropDDB1);
      if (_DDB1.x>700 || _DDB1.x < 755 || _DDB1.y < 240 || _DDB1.y > 155) {
      _DDB1.removeEventListener(MouseEvent.MOUSE_DOWN, dragDDB1);
      _DDB1.parent.removeChild(_DDB1);
      _DDB1 = null;

    Chances are that the problem lies in the following line:
      if (_DDB1.x>700 || _DDB1.x < 755 || _DDB1.y < 240 || _DDB1.y > 155) {
    That line essentially says if(the object is anywhere) due to using the OR ( || ) operator.  If any one of those things is true then the condition is satisfied, which becxause they overlap will always be true for at least two of them.  If that is supposed to be restricting the object to within an area you likely want to all of those conditions to be satsified.  So in that case you need to use the AND operator ( && ).

  • About Drag and drop issue

    As title, i am a newbie to flash using ActionScript 2.0 , and currently i enounter the problem with drag and drop coding. Below is my code:
    function dragSetup(clip, targ, position) {
    clip.onPress = function() {
    startDrag(this);
    clip.x +=2;
    clip.swapDepths(clip.x);
    clip.onRelease = clip.onReleaseOutside=function () {
    stopDrag();
    if (eval(this._droptarget) == targ) {
    this.onTarget=true;
    gotoAndStop(position);
    } else {
    this.onTarget=false;
    gotoAndStop(position);
    clip.myHomeX=clip._x;
    clip.myHomeY=clip._y;
    clip.onEnterFrame = function() {
    if(this.onTarget)
              this._x-=(this._x-this.myHomeX)/5;
              this._y-=(this._y-this.myHomeY)/5;
    function dragSetup2(clip, targ, correct) {
    clip.onPress = function() {
    startDrag(this);
    clip.x +=2;
    clip.swapDepths(clip.x);
    clip.onRelease = clip.onReleaseOutside=function () {
    stopDrag();
    if (eval(this._droptarget) == targ) {
    clip._visible = false;
    this.onTarget=false;
    gotoAndStop(correct+1);
    } else {
    this.onTarget=false;
    gotoAndStop(correct);
    var frame:Number = 1;
    dragSetup2(flexibleTxt, questionBox, frame);
    dragSetup(transparentTxt, questionBox, frame);
    dragSetup(blueTxt, questionBox, frame);
    dragSetup(TIRTxt, questionBox, frame);
    dragSetup(TRTxt, questionBox, frame);
    dragSetup(ssmTxt, questionBox, frame);
    dragSetup(siliconTxt, questionBox, frame);
    dragSetup(silicaTxt, questionBox, frame);
    dragSetup(silicateTxt, questionBox, frame);
    dragSetup(infraTxt, questionBox, frame);
    dragSetup(radioTxt, questionBox, frame);
    dragSetup(lightTxt, questionBox, frame);
    dragSetup(copperTxt, questionBox, frame);
    dragSetup(gopTxt, questionBox, frame);
    dragSetup(liquidTxt, questionBox, frame);
    The scenario is , whenever correct mc was drag and drop on the target mc , it move to the next frame with new target mc(new question) , for example "questionBox2".
    By applying the code above, everything work fine but i would like that whenever i "throw" the answer mc (flexibleTxt, blueTxt etc) , i want it to slide or glide for little more distance, jz like how u throw a card in real life on a smooth surface.
    I also prefer that when draging it's "angle?" change according to the direction of draging. For example if u point ur finger on north side of a card and drag to the east, it's "angle?" will change according to the direction u drag, in this case, means east.
    I know my description seem abit complicated but i really someone can undestand and help me solve this issue.
    This is the link i reference to for the code above,but i modify it to my own preference :http://www.swinburne.edu.au/design/tutorials/P-flash/T-How-to-drag-and-drop-in-Flash/ID-37 /
    PS : can i attach my fla file in this forum? if can, why i cant found any attach button?

    I am having a similar but reverse problem: Under 10.5.2, when trying to push or pull files from my wireless MacBook Pro via my Airport Extreme base station to or from my wired G5 Power PC, files hang in mid copy then stall.
    The other way around -- working from the G5 -- I have no problem at all.
    This started with 10.5, but I'm not sure if it was .1 or .2 because I upgraded from 10.4 just recently and did the combined 10.5 updates all at once on both machines.
    Thanks

  • Custom scrolller - issue with multiple objects....

    Hi,
    I'm developing a very simple custom scroller as a proof of concept. The idea is to have a background image(content_mc), lay multiple objects(myContent[i]) on top of the image, and scroll them all as a cohesive unit. However, I can not scroll myContent[i] appropriately; each object has a unique position and when I try to scroll them, they all assume one position(in which everything overlaps), move to that position and then scroll(see the ### comment below). Does anyone know how to accomplish this?(or does any of this not make the slightest bit of sense?)
    Thx for any help,
    Chipleh
    var rect:Rectangle;var scrollerMinY:Number = scrollbar_mc.scroller_mc.y;
    var contentMaxY:Number = content_mc.y;
    var padding:Number = 40;
    scrollbar_mc.scroller_mc.buttonMode = true;
    scrollbar_mc.scroller_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragIt);
    function dragIt(e:MouseEvent):void {
        rect = new Rectangle(4, 3, 0, 180);
        scrollbar_mc.scroller_mc.startDrag(false, rect);
        stage.addEventListener(MouseEvent.MOUSE_UP, dropIt);
        scrollbar_mc.scroller_mc.addEventListener(Event.ENTER_FRAME, scrollIt);
    function dropIt(e:MouseEvent):void {
        scrollbar_mc.scroller_mc.stopDrag();
        scrollbar_mc.scroller_mc.removeEventListener(Event.ENTER_FRAME, scrollIt);
    function scrollIt(e:Event):void
        var scrollerRange:Number = rect.height;
        var contentRange:Number = content_mc.height - mask_mc.height + padding;
        var percentage:Number = (scrollbar_mc.scroller_mc.y - scrollerMinY) / scrollerRange;
        var targetY:Number = contentMaxY - percentage * contentRange;
        content_mc.y = targetY;
        //###Herein lies the problem; I can not get multiple clips to align consistently like content_mc
        for(var i:int = 0;i<myContentArray.length;i++)
            var myContent:Object = MovieClip(root).getChildByName(myContentArray[i]);
            myContent.y = targetY - myContent.y;   

    Hiyas moccamaximum,
    Thx for the reply. Below are the screenshots, where the "align consistently" issue is apparent. When I instantiate the objects, the objects align per the "Before scrolling" screenshot. As soon as I start to scroll, the objects all align to one position(targetY)i.e.: "After scrolling" screenshot. I understand why that is happening, what i don't understand is how to maintain the layout of the objects while scrolling, per:
    for(var i:int = 0;i<myContentArray.length;i++)
            var myContent:Object = MovieClip(root).getChildByName(myContentArray[i]);
            myContent.y = targetY;   
    Before scrolling:
    During scrolling:

  • Mouse drag issue when out of boundary

    In one of my tasks for my flash project I am working on, I prompt a user to drag an orb/marble across one end of a tube into another. The functionality is all working correctly, except for one issue I have tried and tried to find a fix for. If the user starts dragging the marble, then raises the mouse above/below or anyway outside of the boundary, the mouse continues to move the object as the mouse is moved (in this case, only horizontally) if this makes any sense.
    What I want is for the marble to not move and stop dragging if the mouse is moved outside of the boundary. My code for this frame is listed below:
    stop();
    next_btn.visible = false;
    //remove Child instances from previous frame
    removeChild(hearts_mc);
    removeChild(diamonds_mc);
    removeChild(clubs_mc);
    removeChild(spades_mc);
    marble_mc.buttonMode = true;
    marble_mc.addEventListener(MouseEvent.MOUSE_DOWN, moveMarble);
    marble_mc.addEventListener(MouseEvent.MOUSE_UP, dropMarble);
    marble_mc.addEventListener(MouseEvent.MOUSE_MOVE, dragMarble);
    reply_txt.text ="Drag the marble to the right side of the tube.";
    function moveMarble(event:MouseEvent):void {
        //set boundaries of Rectangle (x,y,width,height)
        event.target.startDrag(true, new Rectangle(54,184,486,0));
    function dropMarble(event:MouseEvent):void {
        event.target.stopDrag();
    function dragMarble(event:MouseEvent):void {
        //check if marble has reached right side of tube
        if (marble_mc.x >= 540){
            event.target.stopDrag();
        //remove event listeners after task is complete
        event.target.removeEventListener(MouseEvent.MOUSE_DOWN, moveMarble);
        event.target.removeEventListener(MouseEvent.MOUSE_UP, dropMarble);
        event.target.removeEventListener(MouseEvent.MOUSE_MOVE, dragMarble);
        next_btn.visible = true;
        reply_txt.text ="Great job!";
        marble_mc.buttonMode = false;
           } else if (marble_mc.x > 54 && marble_mc.x <= 539 ){
            reply_txt.text ="Keep going!";

    Hm, I think i solved my own problem after staring at it a bit longer (my head is probably spinning circles at this point). My changes made are in bold.
    stop();
    next_btn.visible = false;
    //remove Child instances from previous frame
    removeChild(hearts_mc);
    removeChild(diamonds_mc);
    removeChild(clubs_mc);
    removeChild(spades_mc);
    marble_mc.buttonMode = true;
    marble_mc.addEventListener(MouseEvent.MOUSE_DOWN, moveMarble);
    marble_mc.addEventListener(MouseEvent.MOUSE_UP, dropMarble);
    stage.addEventListener(MouseEvent.MOUSE_MOVE, dragMarble);
    reply_txt.text ="Drag the marble to the right side of the tube.";
    function moveMarble(event:MouseEvent):void {
        //set boundaries of Rectangle (x,y,width,height)
        event.target.startDrag(true, new Rectangle(54,184,486,0));
    function dropMarble(event:MouseEvent):void {
        event.target.stopDrag();
    function dragMarble(event:MouseEvent):void {
        var xCoord:Number = stage.mouseX
        var yCoord:Number = stage.mouseY
        //track x/y coordinates of mouse on stage
        //trace(xCoord);
        //trace(yCoord);
        if (xCoord <= 26 || yCoord <= 152 || yCoord >= 209){
            this.stopDrag();
        //check if marble has reached right side of tube
        if (marble_mc.x >= 540){
            this.stopDrag();
        //remove event listeners after task is complete
        event.target.removeEventListener(MouseEvent.MOUSE_DOWN, moveMarble);
        event.target.removeEventListener(MouseEvent.MOUSE_UP, dropMarble);
        event.target.removeEventListener(MouseEvent.MOUSE_MOVE, dragMarble);
        next_btn.visible = true;
        reply_txt.text ="Great job!";
        marble_mc.buttonMode = false;
           } else if (marble_mc.x > 54 && marble_mc.x <= 539 ){
            reply_txt.text ="Keep going!";

  • Scroll bar actions script issue

    I am having a problem with the action script for a scroll bar
    the code is complex and I did not write it but have managed to make
    other adjustments to get it to work...think we got the wrong raw
    file to work from because the scroll bar works in the file on the
    seller's server. Can't find the programmer now. If someone could
    please tell me what I am missing. The scroll bar works if you use
    the solid scroller in the middle but does not move the information
    and the arrows do not work at all. You can check this out at
    http://74.53.228.34/~jacob753/vocab/
    Just click on crossword and then load a topic and you will
    see that the scroll bar does not work at all. The floating window
    is another issue and I will put this in another message after this
    is fixed.
    The code is below:
    initClueListScroll = function(y){
    // y : hauteur de la cluelist (height of the cluelist)
    _global.clueListHeight = y
    _global.clueListScroll = true
    var c = clScrollClip
    c._x = Math.floor(cluelistClip._x+cluelistClip._width)
    c.scrollBG._height = gridSize*cellSize-40
    c.scrdownClip._y = c.scrollBG._y+c.scrollBG._height
    c.scroller._height =
    c.scrollBG._height*(gridSize*cellSize/y)
    // ---- on définit les actions (action definitions)
    c.scrdownClip.onRollOver = c.scrupClip.onRollOver =
    function(){
    this.gotoAndPlay(2)
    c.scrdownClip.onRollOut = c.scrupClip.onRollOut =
    function(){
    this.gotoAndStop(1)
    c.scrdownClip.onReleaseOutside = c.scrdownClip.onRelease =
    function(){
    this.gotoAndStop(1)
    var c = getMain().clScrollClip
    c.scrollBG.onRelease()
    c.scrupClip.onReleaseOutside = c.scrdownClip.onRelease =
    function(){
    this.gotoAndStop(1)
    var c = getMain().clScrollClip
    c.scrollBG.onRelease()
    c.scroller.onRollOver = function(){
    this.gotoAndStop(2)
    c.scroller.onRollOut = function(){
    this.gotoAndStop(1)
    c.scroller.onPress = function(){
    this.gotoAndStop(2)
    var c = getMain().clScrollClip
    var yMin = c.scrollBG._y
    var yMax =
    c.scrollBG._y+Math.floor(c.scrollBG._height-c.scroller._height)
    this.startDrag(false,0,yMin,0,yMax)
    getMain().onMouseMove = function(){
    var c = getMain().clScrollClip
    var yDes = c.scroller._y-20
    var yMax = Math.floor(c.scrollBG._height-c.scroller._height)
    var yFin = 20+Math.min(yDes,yMax)
    c.scroller.setGoTo(c.scroller._x,yFin,100,c.scroller._yscale,100,0,4)
    var yDiff =
    (yFin-c.scrollBG._y)*(gridSize*cellSize/c.scrollBG._height)
    if(yFin==yMax+20){
    var ymn = 0
    var ymx = clueListHeight-(gridSize*cellSize)
    yDiff = (ymx - ymn)*(yFin/(yMax+20))
    // pX, pY, pW, pH, pA, pR, pSpeed
    var cl = getMain().cluelistClip.contClip
    cl.setGoTo(cl._x,-yDiff+gridPosition.y,100,100,100,0,4)
    c.scroller.onRelease = c.scroller.onReleaseOutside =
    function(){
    stopDrag()
    this.gotoAndStop(1)
    delete getMain().onMouseMove
    c.scrollBG.onRelease = function(){
    var c = getMain().clScrollClip
    var yDes = c._ymouse-20<c.scroller._height ? 0 :
    c._ymouse-20
    var yMax = Math.floor(c.scrollBG._height-c.scroller._height)
    var yFin = 20+Math.min(yDes,yMax)
    c.scroller.setGoTo(c.scroller._x,yFin,100,c.scroller._yscale,100,0,4)
    var yDiff =
    (yFin-c.scrollBG._y)*(gridSize*cellSize/c.scrollBG._height)
    if(yFin==yMax+20){
    var ymn = 0
    var ymx = clueListHeight-(gridSize*cellSize)
    yDiff = (ymx - ymn)*(yFin/(yMax+20))
    // pX, pY, pW, pH, pA, pR, pSpeed
    var cl = getMain().cluelistClip.contClip
    cl.setGoTo(cl._x,-yDiff+gridPosition.y,100,100,100,0,4)
    c.scrollBG.onReleaseOutside = c.scrollBG.onRelease

    Try it in a simple test case.  I don't think that is default behavior.

  • New DVR Issues (First Run, Channel Switching, etc.)

    I've spent the last 30 minutes trying to find answers through the search with no luck, so sorry if I missed something.
    I recently switched to FIOS from RCN cable in New York.  I've gone through trying to setup my DVR and am running into issues and was hoping for some answers.
    1.  I setup two programs to record at 8PM, I was watching another channel at the time and only half paying attention.  Around 8:02 I noticed a message had popped up asking if I would like to switch channels to start recording.  I was expecting it to force it to switch like my old DVR, but in this case it didn't switch and I missed the first two minutes of one of the shows.  I typically leave my DVR on all day and just turn off the TV, this dual show handling will cause issues with that if I forget to turn off the DVR.  Is there a setting I can change that will force the DVR to choose one of the recording channels?
    2.  I setup all my recordings for "First Run" because I only want to see the new episodes.  One show I setup was The Daily Show on comedy central, which is shown weeknights at 11pm and repeated 3-4 times throughout the day.  My scheduled recordings is showing all these as planned recordings even though only the 11pm show is really "new".  Most of the shows I've setup are once a week so they aren't a problem, but this seems like it will quickly fill my DVR.  Any fixes?
    Thanks for the help.
    Solved!
    Go to Solution.

    I came from RCN about a year ago.  Fios is different in several ways, not all of them desirable.  Here are several ways to get--and fix--unwanted recordings from a series recording setup.
    Some general principles. 
    Saving changes.  When you originally create a series with options, or if you go back to edit the options for an existing series, You MUST save the Series Options changes.  Pretty much everywhere else in the user interface, when you change an option, the change takes effect immediately--but not in Series Options.  Look at the Series Options window.  Look at the far right side.  There is a vertical "Save" bar, which you must navigate to and click OK on to actually save your changes.  Exiting the Series Options window without having first saved your changes loses all your attempted changes--immediately.
    Default Series Options.  This is accessed  from [Menu]--DVR--Settings--Default Series Options.  This will bring up the series options that will automatically be applied to the creation of a NEW series. The options for every previously created series will not be affected by a subsequent modification of the Default Series Options.  You should set these options to the way you would like them to be for the majority of series recordings that you are likely to create.  Be sure to SAVE your changes.  This is what you will get when you select "Create Series Recording" from the Guide.  When creating a new series recording where you think that you may want options different from the default, select "Create Series with Options" instead.  Series Options can always be changed for any individual series set up later--but not for all series at once.
    Non-series recordings.  With Fios you have no directly available options for these.  With RCN and most other DVRs, you can change the start and end times for individual episodes, including individual episodes that are also in a series.  With Fios, your workarounds are to create a series with options for a single program, then delete the series later;  change the series options if the program is already in a series, then undo the changes you made to the series options later; or schedule recordings of the preceding and/or following shows as needed.
    And now, to the unwanted repeats. 
    First, make sure your series options for the specific series in question--and not just the series default options--include "First Run Only".  If not, fix that and SAVE.  Then check you results by viewing the current options using the Series Manager app under the DVR menu.
    Second, and most annoying, the Guide can have repeat programs on your channel tagged as "New".  It happens.  Set the series option "Air Time" to "Selected Time".  To make this work correctly, you must have set up the original series recording after selecting the program in the Guide at the exact time of a first run showing (11pm, in your case), and not on a repeat entry in the Guide.  Then, even it The Daily Show is tagged as New for repeat showings, these will be ignored. 
    Third, another channel may air reruns of the program in your series recording, and the first showing of a rerun episode on the other channel may be tagged as "New".  These can be ignored in your series if you set the series option "Channel" to "Selected Channel".  Related to this, if there is both an SD and HD channel broadcasting you series program, you will record them both if the series option "Duplicates" is set to "Yes".  However, when the Channel option is set to "Selected Channel", the Duplicates Option is always effectively "No", regardless of what shows up on the options screen.  
    As for you missing two minutes,  I have sereral instances in which two programs start recording at the same time.  To the best of my recollection, whenever the warning message has appeared, ignoring it has not caused a loss of recording time.  You might have an older software version.  Newest is v.1.8.  Look at Menu--Settings--System Info.  Or, I might not have noticed the loss of minutes.  I regularly see up to a minute of previous programming at the start of a recording, or a few missing seconds at the beginning or end of a recording.  There are a lot of possibilities for that, but the DVR clock being incorrect is not one of them.  With RCN, the DVR clocks occasionally drifted off by as much as a minute and a half.

  • Pension issue Mid Month Leaving

    Dear All,
    As per rule sustem should deduct mid month joining/leaving/absences or transfer scenarios, the Pension/PF Basis will be correspondingly prorated. But our system is not doing this. In RT table i have found 3FC Pension Basis for Er c 01/2010                    0.00           6,500.00.
    Employee leaving date is 14.04.2010. system is picking pension amout as 541. Last year it was coming right.
    Please suggest.
    Ashwani

    Dear Jayanti,
    We required prorata basis pension in case of left employees and system is not doing this. This is the issue. As per our PF experts Pension amount should come on prorata basis for left employees in case they left mid of month.System is doing prorata basis last year but from this year it is deducting 541. I am giving two RT cases of different years.
    RT table for year 2010. DOL 26.04.2010
    /111 EPF Basis              01/2010                    0.00           8,750.00 
    /139 VPF Basis              01/2010                    0.00           8,750.00 
    /3F1 Ee PF contribution     01/2010                    0.00           1,050.00 
    /3F3 Er PF contribution     01/2010                    0.00             509.00 
    /3F5 Ee Mon PF contribution 01/2010                    0.00           1,050.00 
    /3F6 Ee Ann PF contribution 01/2010                    0.00          12,600.00 
    /3F9 PF adm chrgs * 1,00,00 01/2010                    0.00              96.25 
    /3FA PF basis for Ee contri 01/2010                    0.00           8,750.00 
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00 
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00 
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00 
    /3F4 Er Pension contributio 01/2010                    0.00             541.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00
    /3R3 Metro HRA Basis Amount 01/2010                    0.00           8,750.00
    1BAS Basic Salary           01/2010                    0.00           8,750.00
    RT table for year 2009. DOL 27.10.2009
                                                                                    /111 EPF Basis              07/2009                    0.00           9,016.13
    /139 VPF Basis              07/2009                    0.00           9,016.13
    /3F1 Ee PF contribution     07/2009                    0.00           1,082.00
    /3F3 Er PF contribution     07/2009                    0.00             628.00
    /3F5 Ee Mon PF contribution 07/2009                    0.00           1,082.00
    /3F6 Ee Ann PF contribution 07/2009                    0.00           8,822.00
    /3F9 PF adm chrgs * 1,00,00 07/2009                    0.00              99.18
    /3FA PF basis for Ee contri 07/2009                    0.00           9,016.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00 
    /3FC Pension Basis for Er c 07/2009                    0.00           5,452.00 
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00 
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00 
    /3R4 Non-metro HRA Basis Am 07/2009                    0.00           9,016.13 
    1BAS Basic Salary           07/2009                    0.00           9,016.13 
    Now please suggest what to do. where is the problem  ? If have also checked EXIT_HINCALC0_002 but nothing written in it.
    With Regards
    Ashwani

  • Open PO Analysis - BW report issue

    Hello Friends
    I constructed a query in BW in order to show Open Purchase Orders. We have custom DSO populated with standard
    datasource 2lis_02_itm (Purcahse Order Item). In this DSO we mapped the field ELIKZ to the infoobject 0COMP_DEL
    (Delivery completed).
    We loaded the data from ECC system for all POs and found the following issue for Stock Transport Purchase orders (DocType = UB).
    We have a PO with 4 line items. For line items 10 and 20, Goods issued, Goods received and both the flags "Delivery
    complete" and "Final delivery" checked. For line items 30 and 40, only delivery indicator note is issued for zero
    quantity and Delivery complete flag is checked (Final delivery flag is not checked) in ECC system. For this PO, the
    delivery completion indicator is not properly updated in the DSO for line items 30 and 40. The data looks like the
    following:
    DOC_NUM     DOC_ITEM       DOCTYPE     COMP_DEL
    650000001       10     UB        X
    650000001       20     UB        X
    650000001       30     UB
    650000001       40     UB      
    When we run the Open PO analysis report on BW side this PO is appearing in the report but the same is closed in ECC
    system.
    Any help is appreciated in this regard.
    Thanks and Regards
    sampath

    Hi Priya and Reddy
       Thanks for your response.
                         Yes the indicator is checked in EKPO table for items 30 and 40 and delta is running regularly for more than 1 year and no issues with other POs. This is happening only for few POs of type Stock Transport (UB).
                        I already checked the changes in ME23N and the Delivery completed indicator was changed and it reflected in EKPO table. Further, i checked the PSA records for this PO and i am getting the records with the Delivery completed flag but when i update from PSA to DSO the delivery completed indicator is not updating properly.
                       In PSA, for item 30 i have the following entries. Record number 42 is capturing the value X for ELIKZ but after that i am getting two more records 43 and 44 with process key 10 and without X for ELIKZ. I think this is causing the problem.
    Record No.    Doc.No.                    Item              Processkey         Rocancel     Elikz
        41               6500000001            30                    11                            X           ---    
        42               6500000001            30                    11                            ---           X
        43               6500000001            30                    10                            X           ---
        44               6500000001            30                    10                            ---         ---
    (Here --- means blank)        
    Thanks and Regards
    sampath

  • HP LaserJet Enterprise 600 M602 driver issue

    Hello,
    I've got issue with 600-series printers. We use the latest UPD drivrer ver. 61.175.1.18849 and print from XenApp 6.5. The error occurs every time when users try to print jpg files from XenApp session. It only happens with 600 series printers and UPD.
    Also I've tried to assign native 600-series driver ver. 6.3.9600.16384 and it works good. But with that driver system says that it's color printer and it brokes our printing reports. These reports are very important for us. So we can't use printer and that driver as well.
    Printer installed on Windows Server 2012 R2. All clients are Windows 7 x64. XenApp Servers are Server 2008R2.
    Is it possible to get fixed UPD driver or correct native driver for Server 2012 R2?
    Regards,
    Anatoly

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at Printers - LaserJet.
    Click on New Post.
    I hope this helps.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Windows 7 displays error message when exiting +cursor issue

    Two issues here. CS5 Phoshop on Wind 7 64 bit.
    Physical processor count: 8
    Processor speed: 3073 MHz
    Built-in memory: 12279 MB
    Free memory: 9577 MB
    Memory available to Photoshop: 10934 MB
    Memory used by Photoshop: 80 %
    Image tile size: 128K
    First issue is since the latest automatic Adobe update (why fix what isn't broken?) Every time I now exit Photoshop I get the message "Adobe QT Server has stoped working" and occasionally it happens when I exit bridge. Indesign is also behaving badly. I can no longer start a previous document from file manager without ID crashing out.
    The other is the cursors in Clone and erase lose their edge (become invisable) for no reason - well not quite. Noise Ninja crashed Photoshop when I tried to use it. I reinstalled it and all is well. The cursor issue seems to be intermittant but came back (for no reason) after I reinstalled NN. I can't seem to change the cursor, no matter what I do. The problem is now seriously affecting how I work. Almost enough to go back to Win XP which ran CS5 Photoshop flawlessly.
    Any help will be gratefully accepted.
    Doug

    function(){return A.apply(null,[this].concat($A(arguments)))}
    doug87510 wrote:
    The recent problem is the entire outline of the cursor (including the crosshair in the middle) was missing at any size of cursor. All I had was exactly what I'd get if I used a real spraygun.
    Well, that issue is simply a matter of hitting the Caps Lock key.  When Caps Lock is on, you'll see the cursor outline, and when it is off you'll see a crosshair.  That's a feature, not a bug.
    Glad to hear the 11.1 drivers are out.  I will download them and try them now myself.
    Regarding "Adobe QT" crashing...  QT brings to mind QuickTime, though that is Apple, not Adobe.  Do you have Apple QuickTime installed?
    Regarding memory usage, with 12 GB of installed RAM, you should be able to set Photoshop to use 90% or more in Edit - Preferences - Performance.
    -Noel

  • Issue in Creation of Periodicals for Contracts in CRM7.0

    Hello,
    I have a requirement to create Contracts in CRM7.0 system.
    And I am doing this using the BAPI *BAPI_BUSPROCESSND_CREATEMULTI*
    Good part is Contract Order gets created, but onlywith Header Details.
    The issues i am facing --
    1. I need to know what kind/type of data must be passed to the interface parameters, the F1 Help/Documentation is vague.
    2. I am passing data in the INPUT FIELDS structure with the Object ID, Handle Number, Reference GUID and Fieldname,
        here what does 'Logical Key' field indicate? What should be passed here.
        What does 'REFERENCE KIND' field indicate, i have been passng 'A' for everything (to be frank i dont know whats its significance is!!).
    3. With so much, My Order gets created but with less than half details, i.e. the Objects not getting created are -  Partner, Product, terms/appointments, Status, LongTexts......
    Any help/inputs would be appreciated.
    Hope my problem is stated clearly ...
    --Regards
    Dedeepya

    Hi Anu,
    i found my solution by debugging with existing data or while creating it in CRMD_ORDER.
    Ensure that you are passing a correct entry in INPUT_FIELDS structure.
    As i haven't worked on rebates i woudlnt be able to help you, I suggest you debug to arrive at a solution.
    You can preset your break-points at :-
    1. FM - CRM_ORDER_MAINTAIN
    2. CRM_ORDER_MAINTAIN_MULTI_OW -- Debug through the complete FM.
    3. CRM_ORDER_PREPARE_MULTI_OW -- The data is set in this function module.
    Regards
    Dedeepya C

  • Issue in creation of plant related data at receiving server using BD10

    Hi all,
    This is regarding Material master creation using B10.I am using MATMAS05 message type for sending data from one system to another.Data is sent and received successfully.When i go in mm03 i can see all the views created successfully accept views related to PLANT.Please guide to resolve the issue.
    When i entered into Log-
    1)"The field MBEW-BKLAS is defined as a required field; it does not contain an entry".
    2)"No material master data exists for material AB_08.04.09(30) in plant 4001".
    My segemnt is as follows-
    ZMATMAS05                      matmas05
           E1MARAM                        Master material general data (MARA)
               Z1KLART                        KLART----
    My extention
               E1MARA1                        Additional Fields for E1MARAM
               E1MAKTM                        Master material short texts (MAKT)
               E1MARCM                        Master material C segment (MARC)
                   Z1AUSPM                        E1AUSPMDistribution of Classification:----
    My extention
                   E1MARC1                        Additional Fields for E1MARCM
                   E1MARDM                        Master material warehouse/batch segment (MARD)
                   E1MFHMM                        Master material production resource/tool (MFHM)
                   E1MPGDM                        Master material product group
                   E1MPOPM                        Master material forecast parameter
                   E1MPRWM                        Master material forecast value
                   E1MVEGM                        Master material total consumption
                   E1MVEUM                        Master material unplanned consumption
                   E1MKALM                        Master material production version
               E1MARMM                        Master material units of measure (MARM)
               E1MBEWM                        Master material material valuation (MBEW)
               E1MLGNM                        Master material material data per warehouse number (MLGN)
               E1MVKEM                        Master material sales data (MVKE)
               E1MLANM                        Master material tax classification (MLAN)
               E1MTXHM                        Master material long text header
               E1CUCFG                        CU: Configuration data
           E1UPSLINK                      Reference from Object to Superior UPS
    Thanks.
    Edited by: sanu debu on Apr 27, 2009 7:10 PM

    CREATE CONTROLFILE SET DATABASE "NEWDB" NORESETLOGS ARCHIVELOGAlso when you are setting a new database, the option should be RESETLOGS and not NORESETLOGS.
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\ONLINELOG\O1_MF_2_7FK0XKB8_.LOG
    D:\APP\ADMINISTRATOR\ORADATA\NEWDB\DATAFILE\O1_MF_SYSTEM_7FK0SKN0_.DBFWhy underscore(_) at the end of the datafile name. Any specific reason ?

Maybe you are looking for

  • How do I get the music from "On This iPod" onto my Library?

    Not all of the music on my iPod is on my iTunes but now with the new iTunes 11 when I plug in my device I can look at all of the stuff on my iPod under the tab "On This iPod". I've been trying to get all of my music from my iPod onto iTunes for ages

  • How to get DP name via script

    Hello, We are migrating from Symantec Altiris to SCCM 2012. In our current environment we have both HP models and now moving towards Lenovo models. We are using both respective Enterprise solutions for managing driver that is HP SSM and Lenovo Thinin

  • How can I convert a string to an object or class

    I would like to read a file representing a class, and convert it to an object or a class (object preferred). Other postings suggest using javax.tools.JavaCompiler to convert from a string but then say that this is not always available (posting on 1 J

  • When trying to set up sync, why does it always tell me invalid email address?

    I've downloaded Sync, I registered and signed up for Firefox add-ons. When I try to set up Firefox Sync.. I type in my username, password, then when it comes to email address, whatever letter I type first a red/white X box comes up saying invalid ema

  • Hard Disk Error - Hard Disk 6 (3F6)

    After upgrade of BIOS to 80.24 getting Hard Disk Error 3F6.  Attempted to change back to a previous version with no luck.  Understand from some this is a sign of a had disk near failure.  Diagnostic run with no error found.  What next?