Action script problem for audio player

i have made a introduction with a  audio and controller. I am facing one problem. I will like to play as  soon as some one enter the page but it does not.
My action script is pasted below and kindly advise me for any changes that can be done
var soundReq:URLRequest = new URLRequest("Sonu Nigam_Alka Yagnik - Suraj Hua M.mp3");
var sound:Sound = new Sound();
var soundControl:SoundChannel = new SoundChannel();
var volumeControl:SoundTransform = new SoundTransform();
var resumeTime:Number = 0;
sound.load(soundReq); sound.addEventListener(Event.COMPLETE, onComplete);
up_btn.addEventListener(MouseEvent.CLICK, increaseVolume);
down_btn.addEventListener(MouseEvent.CLICK, decreaseVolume);
function onComplete(event:Event):void
play_btn.addEventListener(MouseEvent.CLICK, playSound);
stop_btn.addEventListener(MouseEvent.CLICK, stopSound);
function playSound(event:MouseEvent):void
{ soundControl = sound.play(resumeTime);
pause_btn.visible = true;
pause_btn.addEventListener(MouseEvent.CLICK, pauseSound);
play_btn.visible = false; play_btn.removeEventListener(MouseEvent.CLICK, playSound);
function pauseSound(event:MouseEvent):void {
resumeTime = soundControl.position;
soundControl.stop();
play_btn.visible = true;
play_btn.addEventListener(MouseEvent.CLICK, playSound);
pause_btn.visible = false;
pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
function stopSound(event:MouseEvent):void {
soundControl.stop();
play_btn.visible = true;
play_btn.addEventListener(MouseEvent.CLICK, playSound);
pause_btn.visible = false; pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
function increaseVolume(event:MouseEvent):void {
volumeControl.volume += .5;
soundControl.soundTransform = volumeControl;
function decreaseVolume(event:MouseEvent):void {
volumeControl.volume -= .5;
soundControl.soundTransform = volumeControl;
pause_btn.visible = false;

i am having big problem with the coding below with the sound. As it we enter the site, the music auto start very loud which is not good at all for the ear drums. How do i adjust that?
www.hitenkajal.co.uk
var soundReq:URLRequest = new URLRequest("10 Kabhi Alvida Naa Kehna_0.mp3");
var sound:Sound = new Sound();
var soundControl:SoundChannel = new SoundChannel();
var volumeControl:SoundTransform = new SoundTransform();
var resumeTime:Number = 0;
sound.load(soundReq);
sound.addEventListener(Event.COMPLETE, onComplete);
up_btn.addEventListener(MouseEvent.CLICK, increaseVolume);
down_btn.addEventListener(MouseEvent.CLICK, decreaseVolume);
function onComplete(event:Event):void
play_btn.addEventListener(MouseEvent.CLICK, playSound);
stop_btn.addEventListener(MouseEvent.CLICK, stopSound);
function playSound(event:MouseEvent):void
soundControl = sound.play(resumeTime);
pause_btn.visible = true;
pause_btn.addEventListener(MouseEvent.CLICK, pauseSound);
play_btn.visible = false;
play_btn.removeEventListener(MouseEvent.CLICK, playSound);
function pauseSound(event:MouseEvent):void
resumeTime = soundControl.position;
soundControl.stop();
play_btn.visible = true;
play_btn.addEventListener(MouseEvent.CLICK, playSound);
pause_btn.visible = false;
pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
function stopSound(event:MouseEvent):void
soundControl.stop();
play_btn.visible = true;
play_btn.addEventListener(MouseEvent.CLICK, playSound);
pause_btn.visible = false;
pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
function increaseVolume(event:MouseEvent):void
volumeControl.volume = 1;
soundControl.soundTransform = volumeControl;
function decreaseVolume(event:MouseEvent):void
volumeControl.volume = 0.1;
soundControl.soundTransform = volumeControl;
pause_btn.visible = false;
playSound(null);

Similar Messages

  • Firefox 31.0 - slowness and script problems for using websites

    Since Firefox 31.0 is released, some technical problems of slowness and script problems to use
    websites have been noticed from mine. Sometimes it needs up to some minutes to load a website
    and sometimes there are error messages for an unanswered script.
    pemigabo123

    Hello FredMcD,
    thank you for your message.
    But your answer to my question at support.mozilla.org is not helpful,
    although it is a professional technical answer from a Top 10 Contributor
    from mozilla.
    It seems that there is a permanent unfixed problem always if a new
    version of mozilla is released. After all fixed problems of the earlier
    version of firefox, there is no problem at all.
    But if I am already working with the non-problem earlier version of
    firefox, then suddenly the problems of error messages, slowness and
    script errors are appearing, and if I have looked for the actual version
    of firefox, there was signed a new version and now I have known,
    aha a new vesion of firefox was released and it needs up some time
    for every new version until the error problems were fixed.
    Maybe it is combined with the plugins like flashplayer or shockwave.
    But a professional version of firefox should not sign up error messages,
    because of plugins, while working with these plugins.
    Another answer from another support.mozilla.member was for an
    overload problem, because of opening some windows of firefox.
    But to open many windows of firefox was already no problem with the
    earlier version firefox 30.0 or earlier, until the error messages are fixed.
    The same unfixed problems are since firefox 25.0 up to 30.0, but I was
    wondering for how long version 30.0 was actual in practical working.
    And since version of firefox 31.0 was released the same problems
    of error messages, slowness and script errors were appearing.
    At the moment it seems firefox 31.0 works alright.
    But only the following time shows if it works without error messages,
    slowness and sript problems or not.
    In hope to give a helpful answer to yours
    kind regards
    pemigabo123

  • Action Script problem with scrolling images

    doing a tutorial and got to the stage of action scripting mouse control for scrolling images.
    checked the script in Actions. And said it was ok...No errors found.
    Tested the movie and there were 2 compiler errors reported.
    Scene 1. layer 'action script', Frame 1, line 1: 1120:Access of undefined property _root. _root.onEnterFrame=funtion(){
    Scene 1. layer 'action script', Frame 1, line 2: 1120:Access of undefined property _root. _if(_root._xmouse<50){
    Scene 1. layer 'action script', Frame 1, line 1: Warning: 1058: Migration issue: The property _root.onEnterFrame=funtion(){
    Can anyone help me understand this.
    thanks

    It sounds like you are mixing up AS2 code with AS3 compiling.  You may need to change you publish settings to AS2.

  • Creating a action script class for a flex component

    Hi,
    I am new to flex.
    I have designed a flex component into that I have 4 action script function. I have to write all those function in a separate action script class.
    Can anyone tell me how to do that?
    Thanks,
    Tushar

    I'm not sure I understand the question.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Scroll panel action script problem

    Hi, I have the following action script:
    and its giving me the following errors:
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _xmouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _xmouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _ymouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _ymouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    Location: Scene 1, Layer 'action', Frame 1, Line 24
    Description: 1120: Access of undefined prperty _xmouse,
    Source: var xdist = _xmouse - 185;
    Location: Scene 1, Layer 'action', Frame 1, Line 8
    Description: 1120: Access of undefined prperty _root,
    Source: var b = stroke.getBounds(_root);
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _ymouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    HERE IS MY ACTION SCRIPT
    HERE IS MY FILE
    flash5.fla
    I used the following tutorial
    http://www.gotoandlearn.com/
    Scrolling Thumbnail Panel.
    Please help as to what I should do to fix it please.

    I can't be certain, because I don't have Flash CS3 on my
    computer, but it reads as though your publish settings are set to
    the wrong version of Actionscript. The code you have attached is
    Actionscript 2, and those errors sound like something that would be
    spit out if you are trying to publish to Actionscript 3. Check your
    publish settings, and change to AS2. If you are already on AS2,
    reply, and will look into further.
    Hope this helps.

  • Down loading problems for flash player

    trying to install the new flash player on my iMac OS X Yosemite 10.10.2 and it downloads to 25-30% then stops. I've ran a uninstall and tried again but still same outcome

    Hello,
    This morning we resolved a problem that prevented Flash Player installations from completing for some of our Macintosh users.
    If you encountered this problem, please delete any previously downloaded Flash Player installer and either:
    Download the installer again from https://get.adobe.com/flashplayer, OR
    Download the stand-alone installer posted at the bottom of the http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-mac.html in the ‘Still having problems’ section.
    If the behaviour reproduces, please clear the browser's cache and try downloading again.
    Thank you.
    Maria

  • It seems the OSFM player streaming causes init problems for Flash Player in Linux

    I've been running a number of tests with the MediaPlayerSprite. When the video is to be streamed via RTMP FlashPlayer10 Linux debugger hangs for quite a while before drawing anything to the stage. The problem lies in the OSFMplayer/FlashPlayer because if you do not add the player to the stage via addChild you can hear the video almost instantaneously. However once you addChild the Flash Player goes dead for about 15 secs at least before the stage items appear.
    In addition if you set the MPS autoplay to false all your onstage assets appear, however once you click a the play button things freeze up before they stream. The workaround here is to wait about 15 secs before clicking the play button then streaming is instant ( on most occasions ). With non streamed media assets appear once the compile is done.
    Ubuntu 9.10 64 bit / FlashBuilder

    This sounds like a Flash Player (Linux) bug, as the addChild call wouldn't go through any OSMF code.
    I did a quick search in the Flash Player bug database, and the only issue that looks similar is this one:
    https://bugs.adobe.com/jira/browse/FP-2914
    Recommend you file a bug with the Flash Player team.

  • Tower Defense Action Script Problem

    Hi, I've been working my way through a tutorial to create a tower defense game. I've ran into a slight problem with a bit of code:
    package{
              imporProxy-Connection: keep-alive
              Cache-Control: max-age=0
    I get an Identifier 1078 error, I was hoping that someone might be able to tell me a little more about what this is doing, and
    if anyone knows of a solution. Any help would be greatly appreciated!
    Here is the link for the tutorial
    http://www.flashgametuts.com/tutorials/as3/how-to-create-a-tower-defense-game-in-as3-part- 2/

    Remove the 2 lines. They're not AS.
    imporProxy-Connection: keep-alive
    Cache-Control: max-age=0

  • Java script problem for enabling & disabling textboxeswhencheckbox is check

    hiii,
    the checkboxes are generating in a for loop.beside the checkboxes
    the textboxes are akso generating.
    suppose
    checkboxes per amount
    \--\ nssf [------] [------]
    \--\ TAPw [-----] [------] tapw[------]
    \---\ HRA [----] [------]
    \----\ XYZ [-----] [------]
    here there are 4 checkboxes generating in a loop.
    also 4 textboxes of per generating in one loop
    4 text boxes of amount generating in one loop
    the tapw textfirld is an individual one and it is having the text box name as 'tapw'
    here the condition is if i check the check box the textboxes behind them should be enabled ,otherwise disabled.
    that is coming.
    but i also want that tapw should be enabled if the checkbox behind the TAPW is checked.
    here one important thing is the TAPW can't be always in 2nd position
    first if the person doesn't check the nssf,it may be in 1st position or it may be in 3rd position like that.
    but that tapw textbox (individual)will always be generated besides the TAPW textbox.
    can u tell me how to identify that one and how i can get enable if that checkbox is checked.

    hioooooo,
    am i correct now
    <html>
    <head>
    <title>Test Page</title>
    <script language="Javascript">
    checkForm.T1.disabled = true;
    checkForm.T2.disabled = true;
    checkForm.T3.disabled = true;
    checkForm.T4.disabled = true;
    function setTextBox(check, row, totalbox)
         var tick = !check.checked;
         for( var k=1; k<= totalbox; k++)
              var ctl = "T" + k;
              checkForm[ctl][row].disabled = tick ;
              if( k == 2 ) break;
         if( totalbox == 3)
              var ctl = "T" + 3;
              checkForm[ctl].disabled = tick;
    </script>
    </head>
    <body>
    <form name="checkForm">
    <div align="center">
      <center>
      <table border="0" cellpadding="0" cellspacing="0" width="60%">
        <tr>
          <td width="18%"><input type="checkbox" onclick="Javascript:setTextBox(this, 0, 2)" name="C1" value="ON"></td>
          <td width="31%"><input type="text" name="T1" disabled value="AAA1" size="20"></td>
          <td width="31%"><input type="text" name="T2" disabled value="AAA2" size="20"></td>
          <td width="20%"></td>
        </tr>
        <tr>
          <td width="18%"><input type="checkbox" onclick="Javascript:setTextBox(this, 1, 3)" name="C1" value="ON"></td>
          <td width="31%"><input type="text" name="T1" disabled value="BBB1" size="20"></td>
          <td width="31%"><input type="text" name="T2" disabled value="BBB2" size="20"></td>
          <td width="20%"><input type="text" name="T3" disabled value="BBB3" size="20"></td>
        </tr>
        <tr>
          <td width="18%"><input type="checkbox" onclick="Javascript:setTextBox(this, 2, 2)" name="C1" value="ON"></td>
          <td width="31%"><input type="text" name="T1" disabled value="CCC1" size="20"></td>
          <td width="31%"><input type="text" name="T2" disabled value="CCC2" size="20"></td>
          <td width="20%"></td>
        </tr>
        <tr>
          <td width="18%"><input type="checkbox" onclick="Javascript:setTextBox(this, 3, 2)" name="C1" value="ON"></td>
          <td width="31%"><input type="text" name="T1" disabled value="DDD1" size="20"></td>
          <td width="31%"><input type="text" name="T2" disabled value="DDD2" size="20"></td>
          <td width="20%"></td>
        </tr>
      </table>
      </center>
    </div>
    </form>
    </body>
    </html>AE

  • TS1398 I have an iPhone 4 and want to download an audio book from audible . Com . My device is saying safari can't download , also tried it on iPad and it won't work . Why is this ? Also can't find app for audio player for iOS 4 only iOS 5 and above . Can

    I have an iPhone 4 and want to download an audiobook from audible.com. My iPhone says safari can't download the item . Why? Also the audible app is for iPhone 5 and above ? Any suggestions ?

    Also the audible app is for iPhone 5 and above
    According to https://itunes.apple.com/us/app/audiobooks-from-audible/id379693831?mt=8 it only requires iOS 5 or later and it is "optimized" for iPhone 5. I think it will likely work well on your iPhone 4.
    Compatibility: Requires iOS 5.0 or later. Compatible with iPhone, iPad, and iPod touch. This app is optimized for iPhone 5.

  • Stop Play action script 3 for mp3 on layer

    I this the wrong way to write a stop play for mp3 on layer.
    I have buttons and sound within a movieClip.
    Should I give outside movie clip instance name
    Thanks
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    stop_btn.addEventListener(MouseEvent.CLICK, stopSound);
    function playSound(e:MouseEvent):void {
        this.play();
    function stopSound(e:MouseEvent):void {
        stop();

    The code you show should work so you may have some implementation issues.
    For the stop button error you should go into your publish settings and select the option to permit debugging so that the error includes a line number for what's causing the error.  A 1009 error indicates that some object your code is trying to target does not exist as far as the code sees it.... which can be due to a number of reasons, such as assigning code in a frame where the targeted object does not exist.
    For the second error, it appears to be an issue loading (or possibly finding) the file.  Does the sound start playing on its own when you first run the code?
    Usually an error of any kind will prevent a file from running properly, so it may just be an issue of fixing just one of them.
    You normally don't have to wait for a sound file to completely load before executing a play command... that woiuld be counter-productive to the concept of streaming sound.  In theory, a play command following a load command will execute but the sound will not start until a sufficient buffer exists.

  • Action script problem

    I have an .as file with this code within it
    so when the send_pb button is pushed then onSendMessage
    causes the message to be sent.....I'd like the enter key on the
    keyboard to do the same thing. I tried various ways to do it within
    the .as file but nothing seems to work.

    Hi,
    Just try to add the listener Object for the KeyBoard
    And in the KeyPress Enter, you just check out the Focus,
    if it is in the target movieclip , you just call the same
    function what you have in the button on
    Release......function....

  • Pathing within Action Script Problems

    I have code that uses multiple button functions within different movie clips, here is a sample of the code in the last frame of the last movie clip:
    stop();
    var xmlholderNewsNetwork:URLLoader=new URLLoader(new URLRequest("NewsNetwork.xml"));
    xmlholderNewsNetwork.addEventListener(Event.COMPLETE,onloadNewsNetwork);
    function onloadNewsNetwork(e:Event):void {
        feed.text="";
         var xml:XML=new XML(xmlholderNewsNetwork.data);
         for (var i:Number=0; i<xml.story.length(); i++) {
             feed.appendText(xml.story[i].storyname+"\n"+xml.story[i].body+"\n\n");
    topmenu.home.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerHomeNewsNetwork);
    function mouseDownHandlerHomeNewsNetwork(event:MouseEvent){
         Content.ContentHome.gotoAndPlay(17);   
    topmenu.Enlist.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerEnlistNewsNetwork);
    function mouseDownHandlerEnlistNewsNetwork(event:MouseEvent){
             navigateToURL(new URLRequest("https://spreadsheets.google.com/viewform?key=psvc5aYhLuFoImejmLioWew&hl=en"));
         topmenu.Roster.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerRosterNewsNetwork);
    function mouseDownHandlerRosterNewsNetwork(event:MouseEvent){
             Content.ContentRoster.gotoAndStop(36);   
         topmenu.Forums.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerForumsNewsNetwork);
    function mouseDownHandlerForumsNewsNetwork(event:MouseEvent){
          navigateToURL(new URLRequest("http://fifthfleetforums.proboards.com/index.cgi"));
         topmenu.Commendations.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerCommenNewsNetwork);
    function mouseDownHandlerCommenNewsNetwork(event:MouseEvent){
         Content.ContentCommendations.gotoAndStop(36);   
             topmenu.Forms.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerFormsNewsNetwork);
    function mouseDownHandlerFormsNewsNetwork(event:MouseEvent){
         Content.ContentForms.gotoAndStop(36);   
        ect....
    This code is in Scene1->Content (the instance name)->ContentNewsNetworkd(the instance name, it is a movie clip)
    The path, as I think of it is, Scene1.Content.ContentNewsNetwork.  However I am getting errors saying that:
    1120: Access of undefined property Content.
    and
    1120: Access of undefined property topmenu.
    The buttons are contanted in Scene1->topmenu (instance name)-> then each button, is its own button.
    Can someone help me, and if you are confused please tell me and I will try to explain better.
    Thanks
    Faedother

    I'll whittle it down to one of each...
    root - Content - ContentNewsNetwork <code is in this timeline>
    root - Content - ContentHome
    roott- topmenu - home
    The least mind boggling way to command the ContentHome and home timelines/contents would be to use a root reference...
    MovieClip(this.root).Content.ContentHome.gotoAndPlay(...
    MovieClip(this.root).topmenu.home.alpha = ....
    The next approach could be a little more relative to the current location...
    MovieClip(this.parent).ContentHome.gotoAndStop(...
    MovieClip(this.parent.parent).topmenu.home.visible = ....
    And the more mind boggling/time consuming/oo-politically correct way would be to add event dispatchers and listeners so that you in no way utilize root or parent references in your code.  I'll spare you that one, but if you are interested, here's a link to learn a little more about it:  http://forums.adobe.com/thread/470135?tstart=120

  • How to get info from App buyer - Action Script 3 for iOS mobile

    Hello;
    I have a client that needs to track the salesperson (or store) who sells an Apple App. They need this information to be able to pay sales commissions and I want to make sure that commissions are only paid once for each sale.
    I will have a screen that appears when the App is installed that asks which salesman/store convinced them to buy the app... then the app will send us an email with the salesman's information...   How can this email (or other type of message) include a unique identifier - like the Apple ID - so I can prevent a buyer from uninstalling/reinstalling the app to be able to send another message and thereby causing us to pay a second commission for the same purchase?
    Thanks for all your help.
    -Rick

    do you want your 10 animations to play simultaneously or sequentially or something else?

  • Action Script 3 code not working for start and stop button?

    Ok so I have this simple animation I created of a circle that moves from one side of the stage to the other. I have added a new layer and called it buttons. On this layer I have added 2 buttons. One for start and another one for stop. The purpose is to get my circle to move from one side of the stage to the other but be able to use my buttons so that I can start and stop the animations at random times during playback. I fixed all my compiler errors now the problem lies in that everytime I click the start or the stop button I get an output error. I have a 3rd layer in which is titled actions and this is where all my code is posted. I removed that layer and placed my code in the first frame of the buttons layer to see if this would change anything but I still get the same output errors. So I just added back my actions layer. What could I be doing wrong? I have made sure to name all my movie clips and buttons correctly and I even added an instance name to them.
    Here is my code and the errors I am getting when I press the play and stop button on test-
    start_btn.addEventListener(MouseEvent.CLICK, startCircle);
    stop_btn.addEventListener(MouseEvent.CLICK, stopCircle);
    function startCircle(e:MouseEvent):void{
        circle.play();
    function stopCircle(e:MouseEvent):void{
        circle.stop();
    green_btn.addEventListener(MouseEvent.CLICK, greenCircle);
    red_btn.addEventListener(MouseEvent.CLICK, redCircle);
    function greenCircle(e:MouseEvent):void{
        circle.play();
    function redCircle(e:MouseEvent):void{
        circle.stop();
    Here are my output errors-
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at exercise2_fla::MainTimeline/redCircle()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at exercise2_fla::MainTimeline/greenCircle()

    ok so my circle is my movie clip and it is titled circle and the instance name is circle. Am I supposed to change MovieClip to circle? I put the code at the top of my actions script but for some reason it did not work. I did change play to stop and it got the movie clip to stop when I do test movie but my buttons still do not work. So I changed stop back to play. Strange.
    I did try changing MovieClip to circle but that did not work so I did Circle with a capital C and that did me no good eigther.
    I meant to add that I did get an error that said- 1180 Call to a possibly undefined method circle.

Maybe you are looking for

  • Macbook cracking

    hello everybody... i read a month or two ago about the macbook and it's problem with the cracking of the outside case, as well as the keyboard 'lifting' to make gaps between the top surface of the keyboard to the more 'whiter' chunk of the bottom.. (

  • Post long text in ' F-65 '.

    Hi experts, I have a program to upload to ' f-65 ' tcode, from the flat file. i uploaded using bdc, there is an error in long text, as per my requirement it should be more than 200characters, but in the posting it accepting only 72characters only, if

  • Applet freezes while downloading a ressource jar!

    Hi everyone, I have a fundamental question concerning the loading mechanism of an applets resources. The problem is as follows: I have two jars, the first containing all *.class files, the second (size: 10MB) containing only graphics and sounds. I st

  • Code giving error

    HI gurus, I am working on a requirement wherein User wanst to see the specific material group qty in the sales order. I wrote following code which  but i thin i am not able to define th elogic correctly:-                   Zmat_sa_tm = E_S_RESULT-zma

  • Time capsule does not install - unexpected error

    Hello, I just purchased my first Time Capsule. I intend to use it as a back up disk - I already have a Cisco Router. I initially tried setting it up wirelessly - I only plugged it in and I run Airport Utitilty. The software prompted me for some optio