Action script 3 question: addChild and removeChild on same button??

I'm trying to make a button that when u click once, the movieclip will be removed and second time back on stage and so forth....
somehow i get this error
==================================
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
at flash.display:DisplayObjectContainer/removeChild()
at sample_fla::MainTimeline/btnClick()
==================================
Anyone can help me with this, since I'm doing an interactive web for client and the deadline is near..... thanks in advance.
these are my code:
stop();
var swf:MovieClip;
var loader:Loader= new Loader();
var defaultswf:URLRequest= new URLRequest("./newSwfImport.swf");
//default swf when loaded
loader.load(defaultswf);
//add to stage
allSwfLoadHere.addChild(loader);
var boolean:Boolean = true ;
function btnClick(event:MouseEvent):void {
if(boolean == true){
allSwfLoadHere.removeChild(loader);
boolean == false
if(boolean ==false){
allSwfLoadHere.addChild(loader);
boolean == true
newSwfImport.addEventListener(MouseEvent.CLICK,btnClick);

you have, at least, two errors:
1.  you failed to use an if-else and
2.  when trying to re-assign your boolean, you tested.  ie, you used == when you should use =.  so, your boolean remains true.  then when you execute the 2nd time, you try and remove something that's already been removed.
use:
var swf:MovieClip;
var loader:Loader= new Loader();
var defaultswf:URLRequest= new URLRequest("./newSwfImport.swf");
//default swf when loaded
loader.load(defaultswf);
//add to stage
allSwfLoadHere.addChild(loader);
var boolean:Boolean = true ;
function btnClick(event:MouseEvent):void {
if(boolean){
allSwfLoadHere.removeChild(loader);
} else {
allSwfLoadHere.addChild(loader);
boolean=!boolean;
newSwfImport.addEventListener(MouseEvent.CLICK,btnClick);

Similar Messages

  • AddChild and removeChild with MouseEvent

    Hello, I am a newby at AS3. I need help with addChild and removeChild.
    I want to make a two buttons one addChild and other removeChild . Friend helped me a little bit, but I didnt uderstand the script ;]
    Here is the example script which my friend gave to me. In other words I want to make a button that attached hair and the other that removes.
    Should I make a separete custom class for Hair? And if do, can someone help? :]
    ActionScript Code:
    public function changeHairs (newHair: Hair): Hair
    Face.removeChild (oldHairs);
    oldHairs = newHair;
    Face.addChild (newHair);
    newHair return;
    Or modify this code. I know how to change text, but dont know how to change objects
    ActionScript Code:
    package  {
        import flash.display.MovieClip;
        import Button;
        import flash.text.TextField;
        import flash.events.MouseEvent;
        public class Faces2 extends MovieClip
            public var arr:Array = new Array("a1","a2","a3");
            trace("aab");
            public var txt:TextField = new TextField()
            public var btnBack:Button = new Button();
            public var btnFwd:Button = new Button();
            public var arrPos:Number = 0;
            public function Faces2()
                setupInterface();
                setupData(arrPos);
            public function setupInterface():void
                btnBack.x = 100; btnBack.y = 10;
                btnFwd.x = 200; btnFwd.y = 10;
                btnBack.addEventListener(MouseEvent.CLICK, back);
                btnFwd.addEventListener(MouseEvent.CLICK, fwd);
                addChild(btnBack);
                addChild(btnFwd);
                txt.textColor = 0xFF0000;
                txt.width = 300;
                txt.border = true;
                txt.x = 100; txt.y = 100;
                addChild(txt)
            public function fwd(evt:MouseEvent):void
                arrPos ++;
                if(arrPos >= arr.length)
                    arrPos = 0;
                setupData(arrPos);
            public function back(evt:MouseEvent):void
                arrPos --;
                if(arrPos < 0)
                    arrPos = arr.length - 1;
                setupData(arrPos);
            public function setupData(pos:Number):void
                txt.text = arr[pos];
    P.S. sorry for my bad english

    did you create your hair movieclip and assign it a class?

  • FLASH MX 2004 action script question

    Hi!
    I need to create an script for a basic function; when mouse goes over a moveclip, that works also link, I want it to trigger an invisible red dot on a nerby map. I have created a movieclip and named it "red", it's a 1 sec clip with nothing in the beginning and a red dot in the end. I want this dot to trigger and show only when mouse goes over this specific link, otherwise it must be invisible.
    I know this is pretty basic stuff and I have done this before few years back but I have forgotten how to do it and need help now.
    Any help would be very much appreciated :-)
    Kim

    I still need help, this problem is little more complicated;
    I can manage making the red dot visible and invisible by triggering roll over and roll out on a button.
    The problem is, I have a navbar which is line of flags made to a movie clip, with 5 invisible buttons. These buttons are configured to do three different actions; get URL, trigger a light effect and a movement effect.
    Now I need this invisible button to trigger my red dot also so that when mouse is over a certain flag a red dot appears on a map on the correct location.
    I have the red dot on a new layer. It has instance name "redDot" and on the very first frame of this red button layer, I have action script that says: redDot._visible = false;
    This works as it should and the dot is invisible when the movie has loaded.
    I need to make this invisible button to trigger the visibility of my red dot, and I have tried to add the code:
    on (rollOver) {
    redDot._visible = true;
    on (rollOut) {
    redDot._visible = false;
    to this invisible button, but it dosent work, furthermore it affects the other functions of the button/movie clip, which were working fine before.
    Here is the code attached to this invisible button so far:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2);
    on (rollOut) {
    gotoAndPlay("sec");
    I have the URL:s on an external text file.
    So my question is; where do I add the action script to make it visible when moving the mouse over this invisible button? To my understanding, it should go in the same place as the other code that is working, but I'm doing something wrong...
    I tried to do this:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2)
            redDot._visible = true;
    on (rollOut) {
    gotoAndPlay("sec")
    redDot._visible = false;
    But it is wrong, I also tried like this:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2);
    on (rollOut) {
    gotoAndPlay("sec");
    on (rollOver) {
    redDot._visible = true;
    on (rollOut) {
    redDot._visible = false;
    But it makes the other functions that worked to stop working.
    I also tried to give the invisible button an instance name and do it like this:
    invisible.on (rollOver) {
            redDot._visible = true;
    invisible.on (rollOut) {
    redDot._visible = false;
    And put them in the actions layer of button movie clip but nothing works.
    Flash is really giving me a headache now...
    To conclude, I made a simple test button, put it on the scene somewhere and and attached the rollOver and rollOut codes, targeting the "redDot" and it works fine, the button didn't need a instance name to work. I don't understand why I can't make it to work with the invisible button where it should be.
    I hope this clarifies the point and I can get some help with this and sorry for bothering again with this problem.
    Oh and I use old Flash MX 2004.
    Thanks
    Kim

  • Is Action Script for netStreaming and FLVPlayback component radically different, not interchangeabl?

    Hi.
    I am using NetConnection and NetStream to play back flv in Flash Pro CS5.5, and trying to add cue point to trigger events using Action Script, and to automatically rewind to the start at the end. There is no problem to trigger events via AS when the cue points are embedded, but i am unable to add cue points using AS.
    When i use an FLVPlayback component, there is no problem to add cue points (http://help.adobe.com/en_US/ActionScript/3.0_UsingComponentsAS3/WS5b3ccc516d4fbf351e63e3d1 18a9c65586-7feb.html) and to loop the playback using autoRewind (and fl.video.VideoEvent.AUTO_REWOUND which i got from Nafem at http://forums.adobe.com/thread/857036).
    However, i am failing to use this same code w/a netConnection and netStream, and would appreciate any help.
    thanks.

    Hello,
    Well, I've got some help from another helpful fellow at macscripter.net and I have a working script - albeit a bit more specific (ie, hardcoded extensions to look for) and a different approach.
    Here's the script:
    on adding folder items to thisFolder after receiving addedItems
    repeat with movieFile in addedItems
    set {Nm, Ex} to getName_andExtension(movieFile)
    set movieFilePath to (thisFolder as text) & Nm & ".avi"
    set subtitleFile to (thisFolder as text) & Nm & ".srt"
    if Ex is ".srt" then
    try
    tell application "iFlicks"
    import (movieFilePath as alias) with gui
    end tell
    end try
    else if Ex is ".avi" then
    if my FinderItemExists(subtitleFile) then
    try
    tell application "iFlicks"
    import (movieFilePath as alias) with gui
    end tell
    end try
    end if
    end if
    end repeat
    end adding folder items to
    on getName_andExtension(F)
    set F to F as Unicode text
    set {name:Nm, name extension:Ex} to info for file F without size
    if Ex is missing value then set Ex to ""
    if Ex is not "" then
    set Nm to text 1 thru ((count Nm) - (count Ex) - 1) of Nm
    set Ex to "." & Ex
    end if
    return {Nm, Ex}
    end getName_andExtension
    on FinderItemExists(thePath)
    try
    set thePath to thePath as alias
    on error
    return false
    end try
    return true
    end FinderItemExists

  • Simple Action Script question

    This is probably a very basic question, but going through all
    my old Flash work didn't help me remember...
    I have my animation starting on the main stage with an image
    fading in. when that is done playing, at the end i want it to go to
    a movie clip on the stage and play it from frame 2. what is the
    action script for this?

    Doesn't seem to be working... your_mc is the instance name of
    the mc, correct? i placed this script in a frame - it's above where
    my mc first appears and the initial animation on the stage ends. is
    that correct?
    stop();
    tellTarget(mc_square-grid){
    gotoAndPlay(2);
    When I test the movie, the initial animation plays then
    stops, but the MC does not start playing. and the following error
    message appears:
    Target not found: Target="NaN" Base="_level0"
    quote:
    Originally posted by:
    ActionScripter1
    tellTarget(your_mc){
    gotoAndPlay(2);

  • Problem with action script from Schewe and Frasier book.

    I am working on a Photoshop CS3 action script to
    open raw files, do a couple of modifications
    in Camera Raw, exit camera raw and save
    the file as a jpeg.
    I think this should work, because I am working
    on an example out of "Camera raw with Adobe
    Photoshop CS3" by Schewe and Frasier which
    shows the step recorded.
    See page 344 of Schewe and Frasier.
    In figure 9-11 you see, after the open
    statement, 10 lines of details like
    "As camera raw"
    "Model:Canon 350d" etc.
    I get the file path and name line, but
    none of the other details reflecting
    actions in Camera Raw.
    The problem is that in setting up the action, none
    of the steps done in camera raw after I do the
    open get recorded.
    And it works in my old CS version !
    Out of frustration I repeated the action
    script creation in my old CS version and
    it worked fine.
    Any idea where I am screwing up ?

    Crappy format justification:
    I sometimes have a day of family
    type pictures that are in raw format
    that I want to put up on the internet
    quickly. I would like to be able to
    apply the "Auto" feature, as in general
    it seems to be pretty good for something
    quick.
    OK, it sorta works in CS, go here
    http://www.angelplace.net/photos/sample.jpg
    It sets up all of the details and gets the
    "As camera raw" but opens the .dng file
    rather than the Camera raw window.
    The point is, these important settings
    seem to be saved, which does not happen
    in CS3.

  • Explanation of addChild and removeChild?

    Hi
    I'm having trouble getting my head around using removeChild.
    For example, I have a function that is triggered by a button click.  This function loads an external swf.  I then set a global variable swfLoaded to true, with the idea of having an if condition that executes removeChild(loader) if swfLoaded is true.
    When trying to execute removeChild(loader), I get an error telling me that it must be the child of the caller.
    I've seen the code below, which loads a default swf, but I don't want a default swf - I just want one loaded if the button is clicked, and then if another button is clicked, the original one to be removed before the next swf is loaded.
    Can someone please explain to me why removeChild(loader) only works if addChild(loader) was originally executed outside of the function (like below)?
    How do I make this code work without loading a default swf, just loading one once someone clicks a button, and then removing it?
    var Xpos:Number = 110;
    var Ypos:Number = 180;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    var defaultSWF:URLRequest = new URLRequest("swfs/eyesClosed.swf");
    loader.load(defaultSWF);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btns Universal function
    function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btn listeners
    eyesClosed.addEventListener(MouseEvent.CLICK, btnClick);
    stingray.addEventListener(MouseEvent.CLICK, btnClick);
    demon.addEventListener(MouseEvent.CLICK, btnClick);
    strongman.addEventListener(MouseEvent.CLICK, btnClick);
    Cheers
    Shaun

    Oh, I just did not pay enough attention to your code.
    The way you wrote it - you don' have to remove it every time. A better approach is to add it only once and in subsequent calls to unload it:
    var loader:Loader = new Loader();
    // add it once
    addChild(loader);
    function btnClick(event:MouseEvent):void {
         // don't need this
         //removeChild(loader);
         // unload previously loaded content
         loader.unload();
         var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
         loader.load(newSWFRequest);
         loader.x = Xpos;
         loader.y = Ypos;
         // don't need this either
         // addChild(loader);
    Also, in Flash 10 it is better to use loader.unloadAndStop()

  • ADF Form Submision and Commit on Same button

    HI All,
    I have created a jsff which contains 2 forms. My requirement is to create a button which first submits the form and then do the commit too on same button click.
    I am able to do it in 2 steps, as i have Submit button and commit operation available.
    But my query is that Submit is not displayed as any operation, Then how can i write any method in my bean for making sure that i do both the tasks on same button.
    Regards
    Harsh

    Hey John,
    Commit button my page does not gets enabled unless i submit the form.
    Sorry if i am sounding stupid.I am kind of new to ADF .
    Regards
    Harsh

  • AddChild and removeChild (AS 3)

    Hi
    If I load an external swf (located in the same dir as the one
    loading it) with addChild. It looks something like this
    var url:String = "patfinder_extra1.swf";
    var urlReq:URLRequest = new URLRequest(url);
    ldr.load(urlReq);
    addChild(ldr);
    Now, I want to be able to close/remove this new child within
    itself, image a little close button with the label "I'm a child and
    will close my self if i click here!".
    Now, this removeChild is a mystery and the new restrictions
    in paths in AS 3 really makes it hard. To simply use
    this.removeChild() returns errors.
    Any tips of how to close this thingy?
    :)

    you can use the code below to have the child movieclip remove
    itself from its parent's display list, but that won't clear it for
    garbage collection.
    i would have the child call a function in the parent that
    removes it and nulls all references to its loader so it can be
    garage collected.

  • Loading .swf, addChild, and removeChild

    Hello all,
    I'm trying load an swf when you click a button, and load another in it's place when you click a different button.   I'm using addChild to insert the swf onto the stage.  Problem is that every time I click a new button, the new swf is loaded on top of the previous one, and I need the previous one to disappear.  I tried using the removeChild method before the new swf is loaded to no effect.
    Here's the function I'm using for the loader with my removeChild attempt in bold:
    function newPage():void {
        trace("load activated");
        trace(""+target+".swf");
        var req:URLRequest=new URLRequest(""+target+""+".swf");
        var loader:Loader = new Loader();
       if (loaderState==true){
            top_mc.removeChild(loader);
        loader.load(req);
        loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preLoad);
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, fileLoaded);
        function preLoad(event:ProgressEvent):void {
            var percent:Number=Math.round(event.bytesLoaded/event.bytesTotal*100);
            top_mc.preload_txt.text=String(""+percent+"");
        function fileLoaded(event:Event):void {
            trace("file loaded");
            top_mc.addChild(loader);
            loaderState=true;
    The error I get is as follows:
    ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
        at flash.display::DisplayObjectContainer/removeChild()
        at main_fla::MainTimeline/newPage()
        at main_fla::MainTimeline/workLoaderEnter()
        at main_fla::MainTimeline/clickF()
    Perhaps there is a way to give the addChild an instance name so that I can remove it later?
    Any ideas?
    Thanks!

    Part of the problem is your trying to remove the loader just after you define it...  it is not a child of anything at that point.  Try the following instead of what you have.   Another problem you can avoid is to not nest functions...
    var loader:Loader
    var loaderState:Boolean = false;
    function newPage():void {
    if (loaderState){
            top_mc.removeChild(loader);
        var req:URLRequest=new URLRequest(""+target+""+".swf");
        loader = new Loader();
        loader.load(req);
        loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preLoad);
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, fileLoaded);
    function preLoad(event:ProgressEvent):void {
        var percent:Number=Math.round(event.bytesLoaded/event.bytesTotal*100);
        top_mc.preload_txt.text=String(""+percent+"");
    function fileLoaded(event:Event):void {
        top_mc.addChild(loader);
        loaderState=true;

  • [SOLVED] Simple Shell Scripting Question - Echo and Execute?

    I've got a bash script which has many different commands it executes in a row. Each time the script executes one of the commands, it outputs what it is doing to the screen:
    echo "cp -r home new"
    cp -r home new
    echo "mv testfile new/."
    mv testfile new/.
    I am just wondering if there is a function to execute a command and output it at the same time. Something like...
    echoandexecute("cp -r home new")
    echoandexecute("mv testfile new/.")
    Last edited by tony5429 (2008-08-27 19:59:04)

    Otherwise you can define it yourself:
    echoandexecute() {
    echo $1
    $1
    echoandexecute "cp -r home new"
    Last edited by catwell (2008-08-27 20:57:16)

  • BW Landscape Question - DEV and QAS in same Environment

    Hi,
    I do have a doubt about the following Landscape of my client:
    ECC - PRD CLNT 100 --> BW Prod
    ECC- DEV CLNT 400 --> BW Dev
    ECC- DEV CLNT 100
    Basically
    ECC- DEV CLNT 400 has MasterData but NO customizing !!
    ECC- DEV CLNT 100 has NO MasterData but Cusomtizing !
    First I pointed the Source System to DEV CLNT 100 but as has no MData that though was no point on having such connection.
    So created the landscape as above described.
    The only draw back I can see is that every time I activate some BI_CONT in BWD it replicates it in DEV CLNT 400 for which the client is not open for customization so get the message "no authorization for..."
    So the procedure is to activate the Datasources (in ECC) on CLNT 100 where is open for Custo and is automatically visible on CLNT 400.
    Think the landscape described above is a proper one or can see any pitfall ?
    thank you,
    AM

    Hi Alex
    Regarding your question, there is no right or wrong approach, but one has to understand the purpose of the multiple clients on a system, plan accordingly and depending on the business requirements this drives the landscape.
    On a development system, you can have multiple clients for various purposes and have the BW system linked to the relevant client:
    - Customizing
    - Testing (prefered BW Development connection to an ERP Development system)
    - Play
    In response to your question, it is a good approach to following and the only pitfall would be someone trying to do transactions in the customizing client and the BW system not been able to extract the data for testing purposes.
    Currently I have my BW Development system pointing a ERP Development system which contains 3 clients:
    - 1 Client (i.e. 200) for Customizing (customizing only, no transaction data).
    - 1 Client (i.e. 220) for Play (copy from the ERP production system which contains master and transaction data).
    - 1 Client (i.e. 230) for Testing (copy from the ERP production system which contains master and transaction data).
    For the testing and play clients, we can also refresh the data if required, generally we try to do this ever 3 months or when there is a large project to be done, i.e. fiscal year change).
    Of these 3 clients, my BW Development system only points to the ERP System's Testing client (client 230) so that the we can test extractions on master and transaction data. All developments done in the ERP Development system for BW is done in the customizing client (client 200), since most of the development work is client independent regarding the extractors, so it would then be automatically in the testing client. We have been using this approach for the last 5 years, with no major issues.
    PS: The only issue you may have is regarding the extractors that use classification (transaction CTBW) as there is a client specific issue refer to OSS Note: 588184.
    Regards
    Derek

  • Help Quick!  Action Script Question

    The following code lets me use buttons to switch music. The
    music loops until I switch it.
    How do I make it so that the previous music doesn't stop
    looping. So you can have more then one music going at once.
    That is all...
    // initialize starting track
    var soundNext:String = "beats01";
    // set up dynamic sound object
    var dynamicSound:Sound = new Sound(this);
    dynamicSound.attachSound(soundNext);
    dynamicSound.start(0, 1);
    nowPlaying.text = soundNext;
    beats01.onRelease =
    beats02.onRelease=beats03.onRelease=beats04.onRelease=beats05.onRelease=beats06.onRelease =beats07.onRelease=beats08.onRelease=function
    soundNext = this._name;
    nextTrack.text = soundNext;
    // NEXT SOUND
    dynamicSound.onSoundComplete = function() {
    dynamicSound.attachSound(soundNext);
    dynamicSound.start(0, 1);
    nowPlaying.text = soundNext;
    stop();

    Hi Dan,
    Welcome to Apple Discussions and the AppleWorks forum.
    Are you sure you're asking a database question? From your terminology (rows, columns) and your description, it seems more like you're using a spreadsheet.
    If this is a database, you will have two Number type fields, 'A' and 'B'. To show the product, define a Calculation type field, 'C', using either of the two formulas below:
    'A'*'B'
    or
    PRODUCT('A','B')
    To define the new field:
    Open the database document.
    Go Layout > Define fields
    In the Define fields dialogue that opens, you'll see a list of your current fields, including 'A' and 'B'
         -if 'A' and 'B' are not identified as "number" fields, click to select each in turn, change the Type to Number and click Modify.
          OK the warning (your data in these fields is all numbers, and will be retained).
    Type "C" (without the capitals) in the Field Name box, set the Field Type to Calculation, then click Create.
    Enter either of the formulas above into the Formula box, then click OK, then Done.
    If your document is actually a spreadsheet, with the numbers in columns A and B:
    Enter either of these formulas into cell C1:
    =PRODUCT(A1,B1)
    or
    =A1*B1
    Press Enter.
    Select the cells C1..Cn (where n is the last row in which you want to calculate the product of the numbers in columns A and B).
    Press command-D to fill the formula down the cells in column C
    Regards,
    Barry

  • What's the difference between action script library project and flex library project

    i see a new project named actionscript library project. what's the difference?

    In ActionScript Library Project, there is no MXML support and Flex related libraries will not be added by default. Otherwise both are similar.
    Thanks
    -Sunil

  • New to action script 3 and am really confused

    Hello and thank you in advance for helping if you can. I have a website banner that I made in flash. Everything works great and the last thing I need to do is add some script to it. One code is simple the stop action. So I added a new layer, called it actions and then clicked on the last frame inserted a blank keyframe and then opened the action window and typed in stop(); It worked great the banner cycled through once then stopped.
    Now here comes the part that has me stumped. I need to make this banner link to an external website. so this is what I did. On the actions layer I clicked the first frame and opened the actions window, Oh first I have a block of text converted to symbol (movie clip) and named the instance click_mc, then in the actions script window this is what I typed
    var link:URLRequest = new URLRequest("http://www.mojaveampworks.com/dirtyboy/DirtyBoy/Dirty_Boy.html");
    click_mc.addEventListener(MouseEvent.CLICK, onClick);
    function onClick(event:MouseEvent):void
    navigateToURL(link);
    click_mc.buttonMode = true;
    Now when I run the movie it doesn't run at all. Any help with this would be greatly appreciated as I'm ready to through this whole project out the window. Sorry if this question is redundant but I am new with action script.
    thanks

    Hi Ned and thank you for responding.
    I am not getting a compiler error but in the output I am getting this error: TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at dirtyboybnr2_fla::MainTimeline/frame1()

Maybe you are looking for

  • Internet radio and Apple TV update 6.0

    Has internet radio been eliminated with the 6.0 update to Apple TV, or is it hidden somewhere as it is in the new iTunes update. The primary reason I bought a 2nd Apple TV was strictly for internet radio through a housewide sound system.  To remove i

  • Want to put horizontal lines on bar chart.

    I want to put horizontal lines across groups of bars in a bar chart depending on the mean or median. So every group of bars in a bar chart will have a line across them and their position will depend on the values of mean or median.  Thanks

  • General iChat video AIM Question.

    Has anyone figured out what port settings your AIM has to be on in order to use the video chat feature? I am currently using port 1080 and my parents can see me, but I cant see them and I tried using these same ports with another friend and it wont w

  • Adobe Drive 2 and Alfresco CMIS in virtual PC

    0. MS virtual PC with windows XP started 1. alfresco 3.3. installed and started in the virtual-pc image 2. adobe drive installed and started in the virtual-pc image 3. enter the URL cmis://[IP-ADDRESS]:8080/alfresco/service/cmis     (or cmis://localh

  • Credit card purchasing/ error 502

    for the past week when i try to buy a video in the itunes music store it either comes up with the message credit card purchasing is temporarilly unavailable or error 502 your request cannot be processed can anyone tell me how to fix this