Stop sound of a button

Hi..
I have a bit of a problem with sound.. I have a main container animation with background sound that's loaded with soundChannel..
I also have an externally loaded SWFs with Movie Clip buttons that have a sound ON ROLLOVER on the timeline..after rolling off - I place the:
SoundMixer.stopAll(); to stop the button from playing the sound once the mouse is rolled off.. However, the problem I'm running into is that it also stops the sound of the main container movie clip - any suggestions? Thanks a bunch ahead of time!

This sound is still giving me problems... agghh... it works well if you mouse over once or twice - but if I mouse over the button over and over, it gets stuck..
The below code is inside a Movie Clip. The MovieClip is stoped at frame 1. When you mouseover the movie clip, it goes to frame 2. That's where I put the following script. On MouseOut it goes and stops on Frame 3..
Any help would be super appreciated - thanks ahead of time!
var blendSound:Blend = new Blend();
var scChannel:SoundChannel = new SoundChannel();
var b:Boolean;
if(!b) {
function stopSoundHandler(evt:MouseEvent):void {
    scChannel.stop();
btn.addEventListener(MouseEvent.MOUSE_OUT, stopSoundHandler);
btn.addEventListener(MouseEvent.MOUSE_DOWN, stopSoundHandler);
btn.addEventListener(MouseEvent.MOUSE_UP, stopSoundHandler);
scChannel = blendSound.play();

Similar Messages

  • Stop sound when same button is pressed

    I'm a complete beginner to any type of programming, so I'm glad that I even got this small tiny script working without errors. I've been scouring the web for tutorials and help and I can't find any tutorial to help. But I know this is a Programming 101 fix, so if anyone
    wants to give me any advice, I'd gladly appreciate it.
    When I press Btn1 - a sound plays, BUT when i press another button (either Btn2 or Btn1 again) then the sounds overlap each other. Can someone help me
    Write an if statement such that when a second button is pressed that the first sound will STOP playing?  Here is what I have, I know my URLRequest could be simplified...but it works and thats all I care about right now.
    Thanks in advance!
    -David

    David,
    I am not an expert, but it looks like you just need to add a line ahead of the new request into each of your 2 functions
    channel = sound.stop();
    req = new URLRequest("/assets/song1.mp3");
                                            sound = new Sound(req);
                                            channel = sound.play();
    BR
    peter

  • Play/stop sound on one button (AS3)

    hello
    when you click the first time on the button, it should start the song, when you click a second time on the button, it should stop the song. how do i make this with actionscript 3?
    regards
    simon

    A very basic example:
    You'd need 3 var:
    private var _sound:Sound;
    private var _soundChannel:SoundChannel;
    private var _soundChannelPosition:Number = 0;
    Then create a Sound:
    _sound = new Sound(new URLRequest("some.mp3"));
    Stop/play the sound on click:
            private function click(e:MouseEvent):void {
                if(_soundChannel == null){
                    _soundChannel = _sound.play(_soundChannelPosition);
                } else {
                    _soundChannelPosition = _soundChannel.position;
                    _soundChannel.stop();
                    _soundChannel = null;

  • On/off sound by a button in flex

    hello everybody, i want to make a website by flex.in that have sound effect. i want when i load page have sound and if i don't want to listen i can click button.the sound will stop play and else. But i don't know how to make on/off sound by a button click
    i done:
    in actionscript file                Sound_playExample1.as: i write code
    package myComponents {
        import flash.display.Graphics;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.ProgressEvent;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.net.URLRequest;
        public class Sound_playExample1 extends Sprite {
                    private var snd:Sound = new Sound();
            private var channel:SoundChannel = new SoundChannel();
            public function Sound_playExample1() {           
                var req:URLRequest = new URLRequest("myComponents/soundall.mp3");
                snd.load(req);              
                    channel = snd.play(0,6);   
    // ActionScript file
    in my Main.mxml:i write
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:MyComp="myComponents.*"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Script>
            <![CDATA[
                protected function button1_clickHandler(event:MouseEvent):void
                    // TODO Auto-generated method stub
            ]]>
        </fx:Script>
        <fx:Declarations>
             <MyComp:Sound_playExample1/>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:Button x="177" y="71" label="Button" click="button1_clickHandler(event)"/>
    </s:Application>
    can u help me please what i have to do. if you know you can Additional for this code.thanks

    Hi,
    This is complete solution of your issue.Let me know if u find and issue.
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo"
                  creationComplete="application1_creationCompleteHandler(event)"
                  >
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                private function onClick():void
                    createSound();
                    channel = sound.play();
                private function offClick():void
                    if(channel != null)
                        channel.stop();
                private var sound:Sound;
                private var channel:SoundChannel = new SoundChannel();
                protected function application1_creationCompleteHandler(event:FlexEvent):void
                    isPlaying = false;
                    onOff();
                private function createSound() : void
                    var req:URLRequest = new URLRequest("assets/audio1.mp3");
                    if(channel != null)
                        channel.stop();
                    if(sound != null)
                        sound = null;
                    sound = new Sound();
                    sound.load(req);
                [Bindable]
                private var isPlaying : Boolean;
                protected function onOff():void
                    if(isPlaying == false)
                        onClick();
                        isPlaying = true;
                        return;
                    else
                        offClick();
                        isPlaying = false;
            ]]>
        </fx:Script>
        <s:HGroup>
            <s:Button label="{isPlaying == false? 'ON' : 'OFF'}" click="onOff()"/>
        </s:HGroup>
    </s:Application>
    with Regards,
    Shardul Singh Bartwal

  • On/off sound in a button in flex4

    hello everybody, i want to make a website by flex.in that have sound  effect. i want when i load page have sound and if i don't want to listen  i can click button.the sound will stop play and else. But i don't know  how to make on/off sound by a button click
    i done:
    in actionscript file                Sound_playExample1.as: i write code
    package myComponents {
        import flash.display.Graphics;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.ProgressEvent;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.net.URLRequest;
        public class Sound_playExample1 extends Sprite {
                    private var snd:Sound = new Sound();
            private var channel:SoundChannel = new SoundChannel();
            public function Sound_playExample1() {           
                var req:URLRequest = new URLRequest("myComponents/soundall.mp3");
                snd.load(req);              
                    channel = snd.play(0,6);   
    // ActionScript file
    in my Main.mxml:i write
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:MyComp="myComponents.*"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Script>
            <![CDATA[
                protected function button1_clickHandler(event:MouseEvent):void
                    // TODO Auto-generated method stub
            ]]>
        </fx:Script>
        <fx:Declarations>
             <MyComp:Sound_playExample1/>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:Button x="177" y="71" label="Button" click="button1_clickHandler(event)"/>
    </s:Application>
    can u help me please what i have to do. if you know you can
    Additional for this code.thanks

    // below code sinppet should go into on button click event handle method.
    if
    (pausePosition==0 ){ if(channel!=null){pausePosition = channel.position;
    channel.stop();
    sound.setStyle("icon",soundOffClass);  // mute
    }else{ 
    if(channel!=null){channel.stop();
    channel = snd.play(pausePosition);
    sound.setStyle("icon",soundOnClass); // un mute , this should be default as
    pausePosition=0;

  • How to attach sound to any button?which will continue that sound.

    Hi,
    Am working on Flash cs5.Can anyone tell me how to attach sound to any button?which will play after click on button.this sound should play continue till 2-3 scenes ahead.Am working on project which has 3 button with diffrent sound.and the sound button contains some scene which has volume seter.I mean,if user want to hear that sound in slow,medium or high pitch.the code should set as per this.Its in as 2.
    This site is like "karaoke".just the sound is classical music.It will continue on software and user will sing a song.
    Can anyone help me?At working on this from last 2 months.and its hard for me to get perfect answer.

    Add your sound clip to the library and give it a Linkage ID of "mySoundClip"
    Assume your button is in frame 1.
    GIve your button the instance name of "mySoundBtn". And put this code on frame 1 (timeline).
    stop();
    mySoundBtn.onRelease = function () {
              mySoundC = new Sound(this);
              mySoundC.attachSound("mySoundClip");
              mySoundC.start(0, 10);  //10 represents the number of loops
              gotoAndPlay(2);
    than put this code on the timeline frame where you need the sounsd to stop.
    stopAllSounds();
    Also If you want to be able to play the sound from your local disk without attaching it to the swf, use .loadSound("the url", true);

  • AS3 sound pause/play buttons not working

    I have three buttons:play_btn, pause_btn; and stop_btn within a movie clip labeled controller.
    I can't make the play button start where the pause button is left. Everytime, the sounds starts from the beginning.
    Please help!
    var mySoundReq65:URLRequest = new URLRequest("sounds/pronouns.mp3");
    var mySound65:Sound = new Sound();
    var mySoundChannel65:SoundChannel = new SoundChannel();
    var lastPosition:uint= 0;
    var isPlaying:Boolean = new Boolean();
    var isPaused:Boolean= new Boolean();
    mySound65.load(mySoundReq65);
    controller.play_btn.addEventListener(MouseEvent. CLICK, playSound);
    controller.pause_btn.addEventListener(MouseEvent. CLICK, pauseSound);
    controller.stop_btn.addEventListener(MouseEvent. CLICK, stopSound);
    // play sound
    function playSound(event:MouseEvent): void{
    if(!isPlaying){
    mySoundChannel65 = mySound65.play();
    if(isPaused) {
    lastPosition=Math.floor(mySoundChannel65.position);
    mySoundChannel65 = mySound65.play(lastPosition);
    isPlaying=true;
    // pause sound
    function pauseSound(event:MouseEvent): void{
    if(isPlaying)
    lastPosition=Math.floor(mySoundChannel65.position);
    mySoundChannel65.stop();
    isPlaying=false;
    isPaused=false;
    else if (isPaused){
    mySoundChannel65=mySound65.play();
    isPlaying=true;
    isPaused=false;
    // stop sound
    function stopSound(event:MouseEvent): void{
    SoundMixer.stopAll();
    lastPosition=0;
    mySoundChannel65.stop();
    isPlaying=false;
    Thanks in advance for any help.

    Kglad:
    Thanks for replying again. I fixed my script and it's working fine now. The final script is as follows:
    var mySound65:Sound = new Sound();
    var mySoundChannel65:SoundChannel = new SoundChannel();
    var lastPosition:Number= 0;
    mySound65.load(new URLRequest("sounds/pronouns.mp3"));
    var isPlaying:Boolean = new Boolean();
    controller.play_btn.addEventListener(MouseEvent. CLICK, playSound);
    controller.pause_btn.addEventListener(MouseEvent. CLICK, pauseSound);
    controller.stop_btn.addEventListener(MouseEvent. CLICK, stopSound);
    // play sound
    function playSound(event:MouseEvent): void{
    if(!isPlaying){
    mySoundChannel65 = mySound65.play();
    isPlaying=true;
    if(lastPosition>0) {
    mySoundChannel65 = mySound65.play(lastPosition);
    controller.play_btn.visible=false;
    controller.pause_btn.visible=true;
    // pause sound
    function pauseSound(event:MouseEvent): void{
    lastPosition = mySoundChannel65.position;
    mySoundChannel65.stop();
    controller.play_btn.visible=true;
    controller.pause_btn.visible=false;
    // stop sound
    function stopSound(event:MouseEvent): void{
    SoundMixer.stopAll();
    lastPosition=0;
    mySoundChannel65.stop();
    isPlaying=false;
    controller.play_btn.visible=true;
    I added a couple of things:
    a) To avoid clicking the same button more than once, I made either pause or play button invisible.
    b) The solution was to include the following conditional in the play button:
    if(lastPosition>0) {
    mySoundChannel65 = mySound65.play(lastPosition);
    Thanks again!

  • Stop sound when another sound plays

    Hey guys,
    Using Flash Pro CC 2014, Actionscript 3
    I am working on a soundboard and use buttons that play sounds, and I want to make it that when a new sound plays, it automatically stops the current sound from playing, that way 2 sounds dont play at same time.
    But I also have a button that stops all sounds, I am using the "Click to Stop All Sounds" code under Audio and Video in the Code Snippets.
    So I am basically wanting to make sure I can do both, keep the stop all sounds button, but also have it when you press any sound button, it stops all sounds and starts playing the current button/sound. Any suggestions?
    BTW I am setting up symbols as buttons, not movie clips incase you need to know for coding, but I can switch to movie clips if its easier. I was just used to buttons on older versions of Flash for simple stuff like this.
    Thanks.

    Thanks for the reply, I am new to actionscript 3 but am a fast learner. Maybe I am doing this wrong, but when I add the code it simply stops the sounds, but it wont play the sound from the button that I just clicked on. I want it to play the sound button clicked on, and also stop any other sounds that are currently playing.
    For Flash 8, as2, I would add this to the button:
    on (press)
        stopAllSounds ();
    On as3, does it need to say this?
    button_2.addEventListener(MouseEvent.CLICK, fl_ClickToStopAllSounds);
    function fl_ClickToStopAllSounds(event:MouseEvent):void
        SoundMixer.stopAll();
    thanks for your help

  • Sound On / Of Button

    Hello
    I found this tutorial where they teach you to add a sound on
    of button
    TUTORIAL
    But as you can see there is no ON or OFF button here.. I
    tried adding the symbols On and Off seperatly. But with the action
    script i got a bit mixed up and at one point of the movie both the
    labels are visibile at the same time..
    My
    movie
    sound_btn_on._alpha = 0;
    var mySound:Sound = new Sound();
    mySound.attachSound("myTrack");
    mySound.start();
    var soundStarted:Boolean = true;
    sound_btn_off.onRelease = function() {
    soundStarted = !soundStarted;
    if (soundStarted) {
    this._alpha = 100;
    mySound.start();
    } else {
    this._alpha = 0;
    mySound.stop();
    sound_btn_on._alpha = 100;
    sound_btn_on.onRelease = function() {
    soundStarted = !soundStarted;
    if (soundStarted) {
    this._alpha = 0;
    mySound.start();
    sound_btn_off._alpha = 100;
    } else {
    this._alpha = 0;
    mySound.stop();
    Any idea??
    Thank you.

    > sound_btn_on._alpha = 0;
    > var mySound:Sound = new Sound();
    > mySound.attachSound("myTrack");
    > mySound.start();
    > var soundStarted:Boolean = true;
    > sound_btn_off.onRelease = function() {
    > soundStarted = !soundStarted;
    > if (soundStarted) {
    > this._alpha = 100;
    ONOFF.gotoAndStop(2);
    > mySound.start();
    > } else {
    > this._alpha = 0;
    ONOFF.gotoAndStop(1);
    > mySound.stop();
    > sound_btn_on._alpha = 100;
    > }
    > };
    >
    make a movie clip ONOFF and on frame 1 place the OFF button
    look
    and stop action, on frame the the ON button look and the
    stop(); action.
    Then simply add what's above....
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Why do I get the 'critical stop' sound when I leave the firefox browser - doesn't happen with explorer?

    Why do I get the 'critical stop' sound when I leave the firefox browser. This doesn't happen when using internet explorer?

    Do you mean that there is a problem with closing Firefox?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Try to use "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: Firefox > Quit Firefox; Linux: Firefox/File > Quit) to close Firefox if you are currently doing that by clicking the close X on the Firefox title bar.

  • Multiple sounds in one button

    would you kindly give me a suggestion that how to make multiple sounds in a button of a windows form application. actually, being a newb i'm trying to develop a piano application by C# for my own interest. the problem is, when i press one button it plays
    too long & i had to wait until the wav file is finished & after that i had to press another button. what's the code for playing multiple sounds together in one button? u know, then i can play chords too. would you kindly explain or give a code?

    Hi Rinku,
    This is an example for you:
    A Piano Key Control in C#
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My top button stopped working, the physical button is broken.

    My top button stopped working, the physical button is broken. Apple genius' stated they will not fix my phone because there are signs of moisture in my phone. What does that have to do with my broken button, and why can't my phone functioning the way it is supposed to due to an issue that is not my fault?

    wow i dont know who you are getting your phone "fixed" through but its not apple.
    Apple does not charge prices like that.
    If you got it 1 year ago in september, the hardware warranty has expired by now unless you had your device covered by applecare insurance.
    and if it WERE covered by limited hardware warranty, an obvious hardware issue like the power button not working is covered under the warranty UNLESS it was due to accidental damage.
    So if you paid 198 dollars, chances are its because you dropped your phone and thats why the button was not working,.
    ..and even then, the iphone 4 out of warranty/accidental damage replacement fee is 149. not 198.

  • Mainstage + NanoPad: how assign sound to every button?

    Hello men!
    I need your help. I use mainstage 2.0.1 with my master keyboard cme m-key AND my new Korg nanoPad. I have created patch sounds in mainstage and I want to assign every sound to one button of my nanopad.
    Example:
    1- Strings
    2- Piano
    3- Choir
    when I press 1 on my nanopad mainstage plays strings, when I press 2 plays piano ecc. I read on internet that I need a learn mode but I can't do that
    Can you help me? I made a workaround assign 2 button to prev and next patch but It is just a workaround I put my nanopad on program change and control change without success.
    Thank you in advance.

    {quote:title=PaoloMactux wrote:} I use mainstage 2.0.1 with my master keyboard cme m-key AND my new Korg nanoPad. I have created patch sounds in mainstage and I want to assign every sound to one button of my nanopad.
    Example:
    1- Strings
    2- Piano
    3- Choir
    when I press 1 on my nanopad mainstage plays strings, when I press 2 plays piano ecc. I read on internet that I need a learn mode but I can't do that
    {quote}
    I think that the Learn you are looking for is in the MS Layout window.
    Click on a button in your layout to select it.
    click on the Learn button in the Inspector frame
    press the button on your hardware three times
    select the next button in the layout
    press the button on your hardware three times/
    Repeat as necessary.

  • I want to stop loop through push button forms 10g

    I want to stop looping through push button forms 10g it is like (SwingWorker() in java) (DoEvent() in .net)
    The problem in forms 10g that when you start looping the form will freeze and you can't push any button on form, I found solution for that in form 6i through package d2kwutil **WIN_API_UTILITY.InterruptCheck(hButton)**
    But in 10g I can't find solution, Please help>>>>>
    declare
         hButton          PLS_INTEGER;
    begin
    :interruptcheck.counter := 0;
    hButton := get_item_property('INTERRUPTCHECK.PB_OFF',WINDOW_HANDLE);
    go_item('interruptcheck.loopcount');
    set_item_property('INTERRUPTCHECK.PB_OFF',ENABLED,PROPERTY_TRUE);
    set_item_property('INTERRUPTCHECK.PB',ENABLED,PROPERTY_FALSE);
    set_application_property(CURSOR_STYLE,'HELP');
    set_application_property(CURSOR_STYLE,'<d2kwut60>WAIT');
    for i in 1..:interruptcheck.loopcount LOOP
         if WIN_API_UTILITY.InterruptCheck(hButton) then
              exit;
         end if;
         :interruptcheck.counter := i;
         synchronize;
    end loop;
    set_item_property('INTERRUPTCHECK.PB_OFF',ENABLED,PROPERTY_FALSE);
    set_item_property('INTERRUPTCHECK.PB',ENABLED,PROPERTY_TRUE);
    set_application_property(CURSOR_STYLE,'DEFAULT');
    end;
    Edited by: wael amar on May 1, 2010 11:03 PM

    Ok, here's a working testcase.
    The idea is taken from an article from an oracle magazine (i don't have it at hand, , so i tried to rebuild it by "memory". As far as i remember the original was from the german doag-magazine and was written by Gerd Volberg).
    Procedure to do the looping:
    PROCEDURE PR_DO_THE_LOOP IS
      nNumberInOneStep NUMBER:=2;
      tm               TIMER;
    BEGIN
         DEFAULT_VALUE(0, 'GLOBAL.INDEX');
      IF :GLOBAL.INDEX=0 THEN
           -- Didn't run yet, determine the max count
           :GLOBAL.MAX:=10000;
      END IF;
      LOOP
           -- Do the looping stuff
           -- Decrease counter
           nNumberInOneStep:=nNumberInOneStep-1;
           -- Increase globale counter
           :GLOBAL.INDEX:=:GLOBAL.INDEX+1;
           -- Exit conditions
           EXIT WHEN nNumberInOneStep=0;
           EXIT WHEN TO_NUMBER(:GLOBAL.INDEX)>=TO_NUMBER(:GLOBAL.MAX);
      END LOOP;
      -- reset index at end
      IF TO_NUMBER(:GLOBAL.INDEX)>=TO_NUMBER(:GLOBAL.MAX) THEN
           :GLOBAL.INDEX:=0;
      ELSE
           -- start timer for next iteration
           tm:=CREATE_TIMER('TM', 10, NO_REPEAT);
      END IF;
    END;The WHEN-TIMER-EXPIRED-trigger
    IF :GLOBAL.INTERRUPTED='Y' THEN
         MESSAGE('Interrupted at index ' || :GLOBAL.INDEX);
    ELSE
         PR_DO_THE_LOOP;
    END IF;The WHEN-BUTTOn-PRESSED-trigger on the interrupt-button
    :GLOBAL.INTERRUPTED:='Y';The WHEN-BUTTOn-PRESSED-trigger on the "start"-button
    :GLOBAL.INTERRUPTED:='N';
    PR_DO_THE_LOOP;

  • How to add sound to a button state

    I would like to add a simple 1-sec click sound to a button state when activated. Cannot find it in any manual nor here. Help?

    http://www.editorsbin.com/apple/dvdsp/tutorials/audio_feedback/index.html

Maybe you are looking for

  • HT1414 Where us my previous backup in iTunes

    I had did the new iOS6 upgrade and it crashed my entire phone. I had the iTunes sign and plug into iTunes on the front of my phone. I called apple and they said all I can do is restore my phone. I had done a backup in iTunes a few weeks previous to t

  • Weird iTunes iPod display problem

    iPod Touch G5, IOS 8.02 iMac desktop OS 10.9.5 This began when my WiFi sync stopped working.  As far as I can recall, it was coincident with loading IOS-8.  For what it's worth, my WiFi sync with my original iPad (IOS-5.1.1) has been flawless. I trie

  • Color setting warning

    Hi, Sorry for my English . I'am Work with Indesign CS 6 v8.0.2. - Mac OS Mavericks My problem: The color settings warning suddenly no longer appear whenn i open a document with other color settings. What can i do?

  • Keyword Hierarchy Problem

    I added keywords to some photos, then found that Lightroom 3 had inappropriately put them all inside the existing keyword "climbing", apparently on its own initiative. Now I can't move the keywords out of "climbing" back to normal "unclassified" stat

  • Adding time char to infocube

    Hi, What precautions i need to take to replace a time char with another time chat  into a infocube and  infocube is in production. Thanks in advance krish Edited by: kris202729 on Dec 19, 2011 3:45 PM