Actionscript to Stop Clock

I have created a Clock in flash using the following
actionscript:
time=new Date(); // time object
seconds = time.getSeconds()
minutes = time.getMinutes()
hours = time.getHours()
hours = hours + (minutes/60);
seconds = seconds*6;
minutes = minutes*6;
hours = hours*30;
sec._rotation=seconds;
min._rotation=minutes;
hour._rotation=hours;
What I need help with is I want the clock to stop when the
time reaches 11h 11min and 11sec.
What code would I need to use?
Any help would be appreciated.

Ok, i used another online tutorial to create an antique style
clock but I am still having difficulty using code to make it stop.
Is there code I can use to specify the time I want the Movie to
stop playing or is there code I can use so by pressing a hotkey it
will stop the Movie?
Here is the code I am using:
clock.onEnterFrame = function():Void {
var clockTime:Date = new Date();
var seconds:Number = clockTime.getSeconds();
var minutes:Number = clockTime.getMinutes();
var hours:Number = clockTime.getHours();
this.secondHand._rotation = seconds*6;
this.minuteHand._rotation = minutes*6;
this.hourHand._rotation = (hours*30)+(minutes/2);
}

Similar Messages

  • Actionscript is stopping my Tweening. Is there an override?

    Hi Everybody,
    I'm importing/assigning values dynamically using XML and everything's working fine...
    ...until the timeline reaches a tween for the same object and it fails to animate.
    Is there a way I can kill/override the AS2 assignment to the object and have it listen back to the timeline?
    Thanks for any suggestions!

    you can't mix timeline tweening with actionscript that affects the timeline-tweened property.
    ie, use one (actionscript) or the other (the timeline).

  • Actionscript 2 - stop a function

    I have a function to make a number count up tp sixty. I want it so if you leave the frame the counter will reinitiate on return. As it is, the counter works fine the first time through, but runs faster everytime you return to frame. Here is the code.
    textValue = 10;
    addValue = 1;
    txt_ET.text = textValue;
    function countUp(){
      clearInterval(Interval);
    if (textValue < 60){
    clearInterval(Interval);
    textValue += addValue;
    txt_ET.text = textValue;
    setInterval(countUp,800);

    You should look in the help documentation regarding the use of setInterval and clearInterval to learn how they work. 
    If you want to clear an interval you need something to identify the interval.   When the setInterval function executes, it returns a Number value that is such an identifier.  You use that number in the clearInterval function call.  So for what you show above, your setInveral line should look something like...
       var Interval:Number = setInterval(countUp, 800);
    then your clearInterval function call as shown should work... except you have a redundant calling of it within the function... one of the two shown is unnecessary - I would guess the first...
       function countUp(){
          clearInterval(Interval);
          if (textValue < 60){
               clearInterval(Interval);

  • Variable in actionscript

    I currently use a text document to send dynamic text and
    other variables to the .swf. I am now trying to use a variable
    defined in the text document to complete the actionscript below,
    but I can't quite figure it out. The line in the text document
    looks like &howmanyevents=11 and I'd like the actionscript to
    stop the movie if the variable equals eleven.
    if(_root.howmanyevents == 11) {
    stop();
    any suggestions?

    oh. when flash reads a text or xml file everything is a
    string. even things like 11 that look like a number. to remedy, use
    the Number() function to convert _root.howmanyevents to a number:
    if(Number(_root.howmanyevents) == 11){
    stop();
    }

  • Runnng external swf Actionscript while in fullscreen mode

    I am using Flash 9.0 (CS3 Pro). I am coding in Actionscript
    3.0
    I have two swf files, both interactive. During playback of
    the, a mouse event launches the second. I also want the mouse event
    to trigger a switch to fullscreen mode. The second swf is
    non-linear and requires user input to jump to the appropriate frame
    of the timeline. Everything tests and runs perfectly during
    standard screen mode but whenever I try to load and play the
    external swf file in fullscreen mode, Flash recognizes the
    actionscript built into the original SWF but ignores all of the
    Actionscript (this.stop(), this.gotoAndPlay(), etc.) embedded in
    the second (external) swf file.
    How can I get external swf files to load with their scripted
    functionality in fullscreen mode?
    Thanks for the help.
    Aaron
    The code I am using is:
    // --- this is the code contained in the first swf file
    // function to launch second SWF file
    function movieLaunch(event:MouseEvent):void
    // Sets display mode to fullscreen. With this line present,
    Flash does not look at any Actionscript in ip.swf
    // If I comment the below line out, the second SWF plays
    correctly and has full functionality
    stage.displayState = "fullScreen";
    // load and launch second movie (ip.swf) which is located in
    the same directory
    var request:URLRequest = new URLRequest("ip.swf");
    var loader:Loader = new Loader();
    loader.load(request);
    addChild(loader);
    // Sets the listener for the button that will launch the
    second movie.
    launchMovieButton.addEventListener(MouseEvent.CLICK,
    movieLaunch);
    Text

    The keyboard is disabled in fullscreen mode. This may be
    causing the problem?

  • Preloader ignores external swf's actionscript

    Hey guys
    I have an External.swf file that is a video. The swf is 1135 frames long and running just fine by itself, stopping as I want when the actionscript says stop(); on the first frame and looping the end of the clip with gotoAndPlay(837).
    The preloader SwfLoader.swf linked to the External.swf shows the percentage of bytes loaded as it should. However, it runs the video (sound playing in the background) while the preloader shows the loading progress I think it's because it doesn't load the first frame first.
    Once the external swf is loaded, it plays the video again, still ignoring the first actionscript frame that says stop(); and the last frame gotoAndPlay(837).
    Thank you.
    Here is the preloader's actionscript on the first and only frame:
    import flash.geom.*
    import flash.display.*
    var loadurl:String = "External.swf";
    var nDepth:Number = 0;
    var nWidth:Number = 200;
    var nHeight:Number = 20;
    var nPadding:Number = 3;
    var cLoader:MovieClipLoader = new MovieClipLoader();
    var oListener:Object = {onLoadInit:onContentLoaded};
    var mcLoader:MovieClip = this.createEmptyMovieClip("Loader_MC", 0);
    var mcContent:MovieClip = this.createEmptyMovieClip("Content_MC", 1);
    var mcLoadBarBg:MovieClip = mcLoader.createEmptyMovieClip("LoadBarBg_MC", nDepth++);
    var mcLoadBar:MovieClip = null; //Duplicated later with mcLoadBarBg
    var txtPercLoad:TextField = null; //Create after duplication
    var cMatrix:Matrix = new Matrix();
    mcLoader._alpha = 0;
    cMatrix.createGradientBox(nWidth, nHeight, 0, nPadding, nPadding);
    cLoader.addListener(oListener);
    mcLoader.lineStyle(1, 0x000066, 100);
    DrawRect(mcLoader, 0, 0, nWidth, nHeight);
    mcLoadBarBg.lineStyle(1, 0x0000FF, 0);
    mcLoadBarBg.beginGradientFill("linear", [0x006699, 0x0066FF], [100,100], [0, 255], cMatrix, SpreadMethod.PAD);
    DrawRect(mcLoadBarBg, 0, 0, nWidth - nPadding*2, nHeight - nPadding*2);
    mcLoadBarBg.endFill();
    mcLoadBar = mcLoadBarBg.duplicateMovieClip("LoadBar_MC", nDepth++);
    txtPercLoad = mcLoader.createTextField("PercLoad_TXT", nDepth++, 0, 0, nWidth, nHeight);
    mcLoadBar._alpha = 80;
    mcLoadBarBg._alpha = 30;
    Translate(mcTextMask, nPadding, nPadding);
    Translate(mcLoadBarBg, nPadding, nPadding);
    Translate(mcLoadBar, nPadding, nPadding);
    mcLoadBar._xscale = 0;
    mcContent._alpha = 0;
    mcContent._lockroot = true;
    mcLoader._x = Stage.width/2 - mcLoader._width/2;
    mcLoader._y = Stage.height/2 - mcLoader._height/2;
    txtPercLoad._x = mcLoader._width/2 - txtPercLoad._width/2;
    txtPercLoad._y = mcLoader._height/2 - txtPercLoad._height/2;
    SetTextFormat(txtPercLoad, "0%");
    mcLoader._alpha = 100;
    cLoader.loadClip(loadurl, mcContent);
    _root.onEnterFrame = function()
       var nBytesLoaded:Number = mcContent.getBytesLoaded();
       var nBytesTotal:Number = mcContent.getBytesTotal();
       var nPercLoaded:Number = Math.round(nBytesLoaded / nBytesTotal * 100);
       if(nPercLoaded > 0)
          SetTextFormat(txtPercLoad, nPercLoaded.toString() + "%");
                mcLoadBar._xscale = nPercLoaded;
    function onContentLoaded(Void):Void
       //trace(_root + "::onContentLoaded");
       SetTextFormat(txtPercLoad, "100%");
       cLoader.removeListener(oListener);
       delete _root.onEnterFrame;
       delete oListener;
       delete cLoader;
       _root.onEnterFrame = function()
          //trace(_root + "::onContentLoaded::_root.onEnterFrame");
                var nInc:Number = 5;
                mcLoader._alpha -= nInc;
                mcContent._alpha += nInc;
                if(mcLoader._alpha <= 0) startLoadedContent();
    function startLoadedContent(Void):Void
       delete _root.onEnterFrame;
       mcLoader.removeMovieClip();
       mcContent._alpha = 100;
       mcContent.play();
    function DrawRect(mc:MovieClip, nX:Number, nY:Number, nW:Number, nH:Number, nR:Number)
       trace("DrawRect in: " + mc);
       if(nR == undefined) nR = 6;
       mc.moveTo(nX+nR,nY);
       mc.lineTo(nX+nW-nR,nY);
       mc.curveTo(nX+nW,nY,nX+nW,nY+nR);
       mc.lineTo(nX+nW,nY+nH-nR);
       mc.curveTo(nX+nW,nY+nH,nX+nW-nR,nY+nH);
       mc.lineTo(nX+nR,nY+nH);
       mc.curveTo(nX,nY+nH,nX,nY+nH-nR);
       mc.lineTo(nX,nY+nR);
       mc.curveTo(nX,nY,nX+nR,nY);
    function SetTextFormat(txtField:TextField, sText:String)
       var txtFmt:TextFormat = new TextFormat();
       sText = "Loading... " + sText;
       txtFmt.font = "Verdana";
       txtFmt.align = "center";
       txtFmt.size = 11;
       txtFmt.color = 0x000066;
       txtFmt.bold = true;
       txtField.selectable = false;
       txtField.text = sText;
       txtField.setTextFormat(txtFmt);
       txtFmt = null;
    function Translate(mc:MovieClip, nX:Number, nY:Number):Void
       mc._x = nX;
       mc._y = nY;

    Hi kglad,
    The external swf is a movieclip (flv embedded with an AS3 layer to control the timeline) exported as an swf file .
    The first frame of the external swf is just stop();
    I didn't know the proloader code was AS2 though
    The preloader works fine with the external swf locally, but the problem happens when I run them from my server.
    The external swf itself and its code works fine from the server, both combined don't, so I guess the problem comes from the preloader. Probably because of the AS being 2 insted of 3.

  • My 8520 keeps stopping to sync

    Hi all,
    In the last one week or thereabout, my device, curve 8520 has kept on showing a small kind of stop clock at the centre of my screen in a 3 - 4 minute interval.
    Anytime this tiny clock comes up, it stays for like 30 seconds and freezes my device until its gone.
    Please can anyone tell me what could be wrong. It's getting incessant and I am worried.
    Also, my battery seem to die out to quickly.
    Please, I need some urgent help here.
    Thanks and best regards,
    Hemhem.

    While on your main screen, press and hold the BB button. This will bring up all apps that are currently open. Sounds like you have left something running in the background that is tying up the processor and also draining your battery.
    "Cats may taste like chicken, but they have more bones than rabbits."
    Blackberry 101
    Tips & Tricks
    Videos to learn from on youtube

  • Stop SLA TIme

    Hi Guys,
    I am having a requirement in which there are 2 team working as a Support and SLA is implemented for the same.
    Now the problem is Team A says when the ticket is assigned to Team B then the clock for SLA should stop as it is not assigned to them
    How to meet this
    Please help me
    Pts will be rewarded
    Edited by: Prakhar Saxena on Jul 20, 2009 11:15 AM

    Hi Prakhar,
    We have been trying to achieve the same. Not succesful yet.
    We don't have something as direct Stop Clock. We need to manipulate around our Appointment Structure.
    We need to arrive at a logic for this.
    In standard system we have two durations First Response and Todo by. First Response is from message creation to "In Process" (or any status Change). To do by is from Message Creation till "Confirmed".
    So we need to manipulate around the status, say "In Process by Team A" to "Confirmed" is the actual effort put by TEAM A say duration "TEAM A EFFORT". If there is any status change in Between say "In Process by Team B" we need to calculate and put in another duration type "TEAM B EFFORT"
    We have the following options
    1. Check this note 487601 - BAdI for customer-specific SLA dates - enhancement
    This BADI has three Mehods, CALC_TIME_1, CALC_TIME_2 and APPT_FROM_ESCAL_REC.
    The method CALC_TIME_2 has to be used to build your logic for SLA calculation.
    The method APPT_FROM_ESCAL_REC has to be used for creating new SLA parameters. We may need to use both these methods. Sounds simple, but we have so many twists. The methods CALC_TIME_1, CALC_TIME_2  are called while creating the message.
    These methods are not called during saving of a servicedesk ticket. This would be our requirement, since we are concerned with status change.
    When we use method APPT_FROM_ESCAL_REC we need to create Duration Types in TIMECUST. You can check this Function Module as well CRM_SERVICE_CALC_TIME.
    Also we are not able to track where the method APPT_FROM_ESCAL_REC is called.
    2. Calculating a Duration
    We need to define Date Type, Duration and Date Rule to calculate our SLA time. This we are able to configure. But again, we are not able to define our status changes in Date Rule. We have an option here, we can call ABAP code from date rule which may help us to derive at Duration, like First Response, Todo by.
    3. Implement BADI ORDER_SAVE
    We can use the BAPIs BAPI_ACTIVITYCRM_GETDETAILMULT and BAPI_ACTIVITYCRM_CHANGEMULTI to read and update the document with our SLA time.
    We are exploring on possibilities of considering status change in "Date rule"
    We are yet to break the ice. Will keep you posted. This is not normal requirement, keep your client posted on the effort required.
    Hope this will help you.
    Feel free to revert back.
    -=-Ragu
    Edited by: Raguraman C on Jul 21, 2009 11:18 AM

  • I'have found solution for C5 clock reset

    I have found the resolution of this problem , it happens due to Fb application.
    to stop clock resetting just open FB App go to Options > settings>update interval set it to never.
    The clock won't reset again.  It over a month I found it and my clock was never reset.  Hope it work with all.

    this has no effect on the clock a hard reset fixed mine when i had this and it never reset after that
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • The core clock is slow or no core clock connected for this ILA or the ILA core may not meet timing.

    [Labtools 27-1395] Unable to arm ILA 'hw_ila_1'. The core clock is slow or no core clock connected for this ILA or the ILA core may not meet timing.
    I have seen related forums but cant get any help. My timing is completely fine. I tried all JTAG frequencies from 1.5MHZ to `12 MHZ. My clk for ILA core runs at 100 MHZ.
    If i remove one IP , then the ILA core works.  THE BD is attached. If i remove the right most IP(HLS_croppin) it works. I really cant understand. There is nothign worng with the timin in either case.

    There are four possible reasons for this problem:
    - The trigger condition is never met;
    - The trigger clock (clock mapped to the ILA Core) is stopped;
    - A known issue exists with the Storage Qualification feature;
    - BUFG is not being used on JTAG CLK (for the ICON).
    The trigger condition is never met
    Check the message at the bottom of the ChipScope Analyzer window. If it is similar to "Waiting for trigger, Sample buffer has 0 samples(0%)," proceed as follows:
    1. Go to "Trigger Setup" and "Trigger Immediate." If ChipScope Analyzer starts the acquisition and shows the samples (the waveform appears), your design is fine; the clock is running, but your trigger condition never occurs.
    2. In the "Trigger Setup windows, ensure that you have set the condition correctly if you are sure that this event (the trigger condition) happens in your design.
    The trigger clock is stopped
    If the message at the bottom of the window is similar to "Waiting for Core to be armed, slow or stopped clock," the trigger condition is not the problem -- the ILA Core does not have a valid clock and is not able to start the acquisition. To fix this, ensure that you have mapped a valid clock (in ChipScope Inserter or ChipScope Generator). If you are not sure if the clock mapped to the ILA Core is running, try to connect your system clock instead (or a clock that you are sure is running).
    BUFG is not used on ICON's JTAG clock
    If the JTAG clock does not use a BUFG, the "Waiting for upload" message can appear.
    In some instances, slowing down the cable speed might provide a suitable work-around.
     

  • My animated gif keeps pausing in captivate and flash

    Hi guys, thanks for your help.
    I made an animated gif in Photoshop CS4 and inserted it as an animation into captivate 6. The animation works (I played it several times by opening it with internet explorer and safari). But when I open it in Captivate the animation goes black for a split second-several times, before it reappears-several times. It gives it almost a "reloading" or pause look when I play it. The same in flash, but in Adobe Flash CS4 Professional the timeline shows black dots once in a while, as you can see in the screen shot below.
    See those black dots? I will insert a picture of what happens, when the player lands on one of those black dots:
    It's the same animation, but only shows a little. Like I said, it plays fine when I open it with an internet browser, it plays fine when I play it in photoshop, but it just won't work with flash or captivate.
    Any thoughts? Thanks so much!! I really appreciate your help guys!
    Nat

    No problem. Building a simple animation in Flash isn't that bad. You could save each "frame" as an image from PhotoShop and then import these into Flash and place one frame at the time on a keyframe in the flash timeline (press F6 to insert a keyframe).
    If you want your animation to loop then you don't have to do anything as this is the default behavior. If you want it to stop at the last frame you insert a command in ActionScript to stop it. Select the last keyframe and hit F9 and type stop() in the ActionScript window.
    Good luck!
    www.cpguru.com - Adobe Captivate Widgets, Tutorials, Tips and Tricks and much more..

  • MBP experiencing lockups - urgent help!

    Hi,
    Im a desperate. On a photography commission in Bulgaria, and my MBP is experiencing crippling lockups, I'm a long way from any apple shop and I need the laptop for the job, if i cant sort it out soon ill lose the client, having paid for an expensive wasted trip!
    Have apple care, but seems i can only contact by phone? which is going to be very costly from my mobile. Any email?
    Symptoms:
    Mac starts up fine, get to login screen within 50-seconds, and for the first minute of so, it operates as expected. After a minute or so, the system locks up, spinning beach-ball, no response to clicking, force quit shortcut, all i can do is shutdown by holding the on/off button.
    Lockups' seem to last about 5min, with 10-20 seconds of perfectly normal operation between them.
    Lockups occur on login screen, if i don't login immediately.
    Lockups timed to start at 2min (+/-10sec) from first pressing on/off switch.
    When initiating file transfers (eg backing up docs to USB stick), transfers progress normally during the intervals when lockups occur, progress bar does not move during lockups.
    Lockups sometimes stop clock and battery status from changing (eg top menu frozen)
    During lockups there is minimal disk activity, just a short pulse of clicks every 40sec or so.
    CPU fan is (quiet) off, or running slowly during lockups.
    Checking process in Activity Monitor: free ram = 3.2gb, processor running at 5%, virtual memory usage is 140gb not sure if this is normal? the only high resource process running is kernel_task (PiD 0, root, 1.7%, 63tds, 180/123mb), 60gb free disk space (trash empty).
    My Mac:
    Mac Book Pro 15" - 2.8ghz 4gbRAM - the first 'unibody' version running Snow Leopard - Downloaded and installed all recommended software updates in mid November.
    How it happened:
    Computer was put to sleep by closing the lid, with a movie (.AVI) still playing, in QuicktimeX, upon wake the next day, I closed QT and shortly afterwards started experiencing the 'lock-ups' . The laptop has not suffered any nocks or bumps in the last week, nor have I downloaded anything or used any risky websites.
    So far i have tried:
    Starting, loading movie and quitting QT
    Checking hardware in system profiler, all reads normal / ok etc including RAM.
    Checking disks in disk utility.
    Swapping between high and low power GPU's
    Reset PR RAM
    Remove replace battery & power
    Start in safe mode - does not work (progress bar not move for 10 min)

    Welcome to Apple Discussions!
    There does seem to be contact information for Bulgaria:
    http://support.apple.com/kb/HE57
    They might be able to direct you to an AASP if necessary.
    Do you have your system discs with you? If so, you could boot from your install disc and repair your boot disk and see if this helps. You could also try trashing your Quicktime and reinstalling it, since it seems to be at the root of your problems.
    You could also try running the extended version of the Apple Hardware test.
    A Safe Boot is what I would have recommended, since it disables your start up items, but it sounds like you are not able to do a Safe Boot. It may be worth going to Accounts>Log in Items and remove anything listed as a log-in item. You could have a problem with a log in item that has somehow gotten corrupted.
    You could also try creating a new user account and see if the problems persist in the new account. If not, you have a software problem in your usual account.
    You could have something like a dying hard drive. Open Disk Utility and check to see if SMART is verified.
    These are just a few general things to try--I really don't know what is going on with your Mac, but hope that this will a least be a start in finding the cause of your troubles.
    Good luck!

  • My Revolution is Slow at doing everything... how do I fix this....

    This is my 3rd Lg Revolution and let me say that I will no longer look into buying LG phones. I had an even worst experience with the LG Envy Touch. For starters my phone operates at 3G a lot and I live in a 4G city.
    There are times when the I cannot get the phone to unlock, the screen will not slide up, it does sense that u are touching it because it glows brighter and vibrates. So I have to restart it.
    Moving through the home screens can take forever. There are times when the icons are abnormally big, or when I click and icon such as my e-mail it will take me to txting and it will do this multiple times back to back, then finally it will take me to my e-mail and this also happens the other way around. The alarm clock app that came on the phone has a stop clock function and it will stop working if the phone goes idle. Just bringing up my apps takes a lot longer than when I first got my phone.
    When I go to text the keyboard takes forever to come up and then when you type nothing shows up, but the phone is vibrating noting that it is picking up the commands... and about 5 seconds later the beginning of what I have typed shows up. But then it will choke up again once I got it going, in the middle of typing. There have been many of times recently that the phone freezes on the keyboard and reboots itself. Sending a text is a whole other issue it takes a good 4-5 minutes to even send the message, many of times picture messages take longer or fail to send. I have also had many of times when others send me text messages and I only receive the first part of their message, because the message will say "(1/3)" or something it has only happened a couple of times with other VZW customers txting me but mostly with Sprint Customers. Aside from this lately I have been not receiving messages from people who say they have sent them, and they will show me that it has sent from their phone. But there is no trace of it ever being received on my phone.
    The Facebook app has not worked since the last software update, it continually says there is "no internet connection", which there is because I usually am coming just coming from my e-mail or a web page. So I have deleted the app to free up some space and have begun to use m.facebook.com and now I use touch.facebook.com, which has worked a little smoother, I am not sure of the difference. But when using either one I cannot upload pictures. It would be nice to know what is wrong.
    The internet is probably my most concern because I pay for this monthly and because of it moving so slow.  I find myself on my computer more than anything or holding out to get home to the computer. When I visit a page only part of it will load and most of the time these are mobile web pages or when I scroll the part of the top portion of the page gets stuck sometimes the internet icon won't respond and the phone freezes and reboots itself.
    Lastly cannot fix the [10]Database error with the backup assistant and it has been like this for a while, I just hope it is still backing up my contacts.
    I have tried a lot of things to get the phone to run a little quicker such as deleting apps and moving the ones that will allow it to the SD card, clearing the cache both on the internet and on apps, deleting history, deleting old texts, further limiting the amount of e-mails stored on the device. I have also taken the phone in store both in Springfield, MO and St. Louis, MO because I usually have problems after traveling back and forth. They can never tell me how to fix it or the will attempt the same things I have done and still no fix and sometimes it even makes it worse. Or sarcastically, even better, they will take it behind the counter in some room and moments later tell me I have to be sent a new phone or that mine will no longer boot-up and I loose everything that wasn't on the SD card
    WILL SOMEONE PLEASE HELP ME FIX SOME OF THESE THINGS OR AT LEAST HELP ME MAKE THE PHONE RUN FASTER WITH LESS GLITCHES... THERE IS NOT AN HOUR THAT GOES BY THAT I DO NOT ENCOUNTER SOME PROBLEM WITH THIS PHONE... THANK YOU!!!(for making it through my life story)
    P.S. VZW PLEASE DO AWAY WITH THE LG INTUITION AND GET THE SAMSUNG GALAXY NOTE 2...

    I've had almost every issue you've had.  Finally on Friday the screen blacked out.  It was obviously still charged, since I could hear the message ring, but when I tried to light up the display it didn't light so I was unable to get to it unless I removed the battery.  Then, as soon as the display timed out, I couldn't get it lit up again without removing battery.  I had the same slow movements throughout the display as well as slow text messaging.  Every issue you had other than the alarm clock (that always worked well).
    I took it in yesterday and, after over an hour spent there with a 'professional', I still had no answers.  He told me to come home and copy everything from my sd card to my computer, then re-format my card.  Well, my phone didn't even recognize that I had an sd card installed!!  Nor did my computer! 
    So then I got to experimenting...I removed the card and viola!!!!!!  The phone worked GREAT!  It's never worked so fast!  I then installed my husbands sd card to see if it was my phone's card reader or my card.  Turns out that the phone still worked great with his card installed and it did recognize his card in my phone.  So, my conclusion is that I need a new card.  I couldn't believe the difference in speed of everything!  It's like a brand new phone! 
    As for the hard reset...I did that over the weekend, before I could get to a verizon store.  It didn't work at all.
    I'd say, do the same thing I did and see if that works.  Can't hurt!!!  Please keep me posted.  I'd like to see what you find out 
    Good Luck!!!!

  • Why can't I get the Audi-video chat started?

    My step-daughter and I have iSight cameras and Macintosh Computers with iChat installed. On Friday afternoon we tried to start a video-chat. I heard by phone, that we were both trying to get in touch with each other at the same time.
    • I was able to get my step-daughter entered as one of my ‘Buddies’. There is a Buddy List and her name is there, correctly. Though I have to add her name, from my address book, each time I close iChat down.
    • The rectangular menu has the following icons at the bottom A, a telephone icon & a video-camera ‘greyed out’. I do not see why I cannot blacken them.
    • When my step-daughter succeeded in getting her camera turned on (see could see herself on her computer screen) I double-clicked on the video-camera part of her name card in the buddy list.
    • Miraculously, but ultimately disappointingly, the process of trying to contact my step-daughter began. Another view of my camera picture appeared, the rotating ‘stop-clock’ type icon began spinning for about ten seconds. The message setting up video-chat changed to tell me that the attempt to establish a video-chat had failed because I had failed to respond.
    • But I had no indication of how to respond. Minutes later I was able to establish a chat with my step-daughter with text. If I can establish textual contact, why not audiovisual?
    • I take it the use of Bonjour is the way to go rather than aim.
    iMac G4   Mac OS X (10.4.5)  

    I'm not sure how to add to my own topic, or I'm supposed to... but here goes.
    One thought as to why text messages will work and Audio Video won't has to do with broadband speed. I checked my Internet Service Provider website (Cable & Wireless in the Cayman Islands) and they have a way of 'Testing Your Broadband Speed'.
    I tried that and although I could not print the results, the test told me that my download speed is 1.3 mb and my upload speed is 553 kb. I haven't a clue if that is fast, slow or something in between. however, page 3 of the iChat brochure (videoconferencing for the rest of us) http://www.apple.com/macosx/features/ichat/ said that to initiate or participate in a 1 to 1 video conference the bandwidth required is 100 kbps. I've got that, right?
    Another thoughtthat I had was that my step-daughter may not have 'Full .Mac membership', she may just be 'on trial'. I'll ask her and if that's the case it's problem solved, see page one of http://www.mac.com/1/ichat.html.
    Router doubts have been dispelled. I have a Netopia not a Belkin. A troubleshooting piece from 2003 refering to a Beta version of all this said that a Belkin router would not do the business.
    So, anymore thoughts out there, Mac people?

  • Can Anyone Tell Us What CPU This Blade Log Has? (SPARC T3-1B) - PLEASE

    Primary Bootstrap.
    U-Boot 1.1.4
    Custom AST2100 U-Boot 3.0 (Feb  4 2011 - 00:21:51) r62572
    DRAM:  119 MB
    Flash bank 0 at 10000000 has 32MB in 256 sectors (chipSize 1<<25, ratio 1, bufSz 64).
    Flash: 32 MB
    VUART1 at port 0x03f8, SerIRQ[4] disabled
    VUART2 at port 0x02f8, SerIRQ[3] disabled
    Protecting U-Boot flash sectors; monitor_base=100a0000.
    board_findGpioNum(): ERROR, 'BIOS_TOP_BLOCK_LOCK' does not match any pin.
    board_findGpioNum(): ERROR, 'SP_PECI_ENABLE' does not match any pin.
    H/W:   Virgoplus Service Processor; SOC: AST2100 Rev. 02 ('A3')
      PWC_SP_Broken_OD = 0;  ARM restart caused by: power-on
      The host is OFF(held) (hostWantsPwr=1, powerGood=0,
            allowPwrOn=0|0, outOfReset=0, fatalError=0).
      Reset straps=0x8c819180, def. H-PLL=264 MHz, CPU/AHB=2:1, boot CS0# normal speed
      PCI w/VGA noVBIOS;  NOR 38ns/byte;  DRAM clock is M-PLL: 264 MHz (DDR2-528)
      DRAM: 128MB data - 8MB VGA, 32-bit noECC, 2 BA 10 CA, CL=4 BL=4 ap=1, 61440 us refr, DQSipv=0x2020202
    Board Revision - 8d
    Date: 2013-11-05 (Tuesday)    Time: 16:15:08
    Reading FRUID...Valid CRC.
    ethaddr=00:21:28:BB:FD:76
    eth1addr=00:21:28:BB:FD:77
    Platform (virgo): Configuring HPC FPGA (data=0x100ed800, len=45844)
    ## Extracting HPC microcode...done
    Now programming 225844 bytes...
    HPC programming done, rc = 0
    HPC_FPGA_DONE = 1
    Net:   faradaynic#0, faradaynic#1
    Enter Diagnostics Mode ['q'uick/'n'ormal(default)/e'x'tended(manufacturing mode)] .....   0
    Diagnostics Mode - NORMAL
    <DIAGS> Memory Data Bus Test ... PASSED
    <DIAGS> Memory Address Bus Test ... PASSED
    I2C Probe Test - Motherboard
            Bus     Device                          Address Result
            ===     ============================    ======= ======
             1               PCA9548 MUX (U3004)    0xE2    PASSED
             2                 Sys FRUID (U3003)    0xA0    PASSED
             2                Power CPLD (U3301)    0x4E    PASSED
             2          CPU0 Fault LED's (U3001)    0x40    PASSED
             2          CPU1 Fault LED's (U3002)    0x42    PASSED
             2            PCA9555 (Misc) (U3005)    0x44    PASSED
             2        Temp. Sensor(LM75) (U3006)    0x90    PASSED
             2                   LTC4215 (U5102)    0x96    PASSED
             2                 DIMM IMAX (U3102)    0x12    PASSED
             6          Bank Panel Led's (U3406)    0xC6    PASSED
             6               DS1338(RTC) ( U803)    0xD0    PASSED
    <DIAGS>Testing 4eyes access .... PASSED
    <DIAGS> PHY #0 R/W Test ... PASSED
    <DIAGS> PHY #0 Link Status ... PASSED
    <DIAGS> ETHERNET PHY #0, Internal Loopback Test ... PASSED                                                           <DIAGS> USB 1.1 Test ... PASSED
    <DIAGS>Access to BIOS Flash ... PASSED
    <DIAGS> Testing PowerCPLD version ... PASSED
    checking for abnormal reboots: 0:0.
    abnormal reboot found -- too long, ignore
    Booting linux in 3 seconds...
    Un-Protect Flash Bank # 1
    flctrl: Recovery U-Boot (r56177) at 0x10040000 is valid (min. r51654).
    Trying primary image...
    Trying to boot package at 10100000
    Found kernel image at 10102000
    Found root image at 1025f9f4
    copying 0x00a8d040 bytes from 0x1025f9f4 to 0x00800000
    bootargs= root=/dev/ram  ramdisk_size=10804  console=ttyS0,9600 bigphysarea=6144 ractrends.mtdblocks=env,0x20000,0x20000,coredump,0x1500000,0x800000,persist,0x1d00000,0x200000,params,0x1f00000,0x100000,
    ## Booting image at 10102000 ...
       Image Name:   Linux-2.6.27.43
       Created:      2011-02-04   5:18:45 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    1431988 Bytes =  1.4 MB
       Load Address: 00008000
       Entry Point:  00008000
       Verifying Checksum ... OK
    OK
    do_bootm_linux() armlinux.c:104
      bootm
      0x10102000
      0x00800000
    theKernel=00008000
    do_bootm_linux() armlinux.c:121 - 9
    ## Loading Ramdisk Image at 00800000 ...
    do_bootm_linux() armlinux.c:155 - 10
       Image Name:
       Created:      2011-02-04   6:07:05 UTC
       Image Type:   ARM Linux RAMDisk Image (uncompressed)
       Data Size:    11063296 Bytes = 10.6 MB
       Load Address: 00000000
       Entry Point:  00000000
       Verifying Checksum ... OK
    do_bootm_linux() armlinux.c:182 - 11
    do_bootm_linux() armlinux.c:245 - 15
    arch_number = 0x00000386
    env_t       = 0x01ED0008
    boot_params = 0x40000100
    DRAM bank   = 0x00000000
    -> start    = 0x00000000
    -> size     = 0x07700000
    ethaddr     = 00:21:28:BB:FD:76
    eth1addr    = 00:21:28:BB:FD:77
    ip_addr     = 0.0.0.0
    baudrate    = 9600 bps
    Sun extensions:
      bi_UBootEnvAddr     = 0x10020000
      bi_UBootEnvSize     = 0x00020000
      bi_flashstart       = 0x10000000
      bi_flashsize        = 0x02000000
      bi_flashbanksize    = 0x02000000
      bi_flashbanks       = 0x01
      bi_flashbankwidth   = 0x01
      bi_flashsectorsize  = 0x00020000
      bi_flashsectorcount = 0x00000100
      bi_boottype         = 0x02
      bi_primarytype      = 0x02
      bi_secondarytype    = 0x00
      bi_booted           = 0x10100000
      bi_primary          = 0x100a0000
      bi_secondary        = 0xffffffff
      bi_primaryhdr       = 0x10100000
      bi_secondaryhdr     = 0xffffffff
      bi_imagearea0       = 0x100a0000
      bi_imagearea1       = 0xffffffff
      bi_maximagesize     = 0x01f60000
      bi_min_firmware_rev = 0
      bi_sptrace_base     = 0x00000000
      bi_sptrace_len      = 0x00000000
      bi_apbclockhz       = 0x03ef1480
    H/W:   Virgoplus Service Processor; SOC: AST2100 Rev. 02 ('A3')
      The host is OFF(held) (hostWantsPwr=1, powerGood=0,
            allowPwrOn=0|0, outOfReset=0, fatalError=0).
      ARM Control reg: RR=0 HV=0 IC=1 BPd=0 RomP=0 SysP=0 BE=0 WB=1 DC=0 AlinFlt=1 MMU=0
      Cache Type reg: CType=0xe WB, sep.; I: 16KB of 32B lines 4-way; D: 16KB of 32B lines 4-way
            IC locked ways(3:0): 0000b, DC locked ways: 0000b
      Reset straps=0x8c819180, def. H-PLL=264 MHz, CPU/AHB=2:1, boot CS0# normal speed
      H-PLL (params=0x04291) 264.000 MHz, M-PLL params=0x04120-->264.000 MHz
      CPUCLK: H-PLL/1=264 MHz, AHB HCLK: CPUCLK/2=132 MHz, APB PCLK: H-PLL/4= 66 MHz
      PCI w/VGA noVBIOS;  NOR 38ns/byte;  DRAM clock is M-PLL: 264 MHz (DDR2-528)
      Bus-master-mode clocks: PCI BHCLK= 33 MHz, LPC LHCLK= 33 MHz
      Stopped clocks: vidCap-1, SP-Display, HACE, PCI-host
      DRAM: 128MB data - 8MB VGA, 32-bit noECC, 2 BA 10 CA, CL=4 BL=4 ap=1, 61440 us refr, DQSipv=0x2020202
      Reset controls: HACE, PwmFt, displays, MDMA, PCI-host
      Register protect: SCU prot, DMC prot, AHBC prot, VIC U-prot
      Ethernet MAC-PHY interface mode=6 (RMII + RMII), no MII2DC+DIO pins
    do_bootm_linux() armlinux.c:260
    do_bootm_linux() armlinux.c:263
    do_bootm_linux() armlinux.c:267
    do_bootm_linux() armlinux.c:279
    do_bootm_linux() armlinux.c:283
    do_bootm_linux() armlinux.c:287
    do_bootm_linux() armlinux.c:295
    Galactic register 1: 400509c0
    Starting watchdog timer.
    Starting kernel at 0x00008000...
    do_bootm_linux() armlinux.c:320
    do_bootm_linux() armlinux.c:324 (0x00000386,0x40000100)
    Uncompressing Linux............................................................................................... done, booting the kernel.
    Linux version 2.6.27.43 (buildbot@build-slave-sh-8) (gcc version 3.3.6) #1 Fri Feb 4 00:18:12 EST 2011
    CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177
    Machine: ASPEED-AST2100
    Memory policy: ECC disabled, Data cache writeback
    CPU0: D VIVT write-back cache
    CPU0: I cache: 16384 bytes, associativity 4, 32 byte lines, 128 sets
    CPU0: D cache: 16384 bytes, associativity 4, 32 byte lines, 128 sets
    Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 30226
    Kernel command line: root=/dev/ram  ramdisk_size=10804  console=ttyS0,9600 bigphysarea=6144 ractrends.mtdblocks=env,0x20000,0x20000,coredump,0x1500000,0x800000,persist,0x1d00000,0x200000,params,0x1f00000,0x100000,
    PID hash table entries: 512 (order: 9, 2048 bytes)
    console [ttyS0] enabled
    mach/timer.c: Just lost 80 clock interrupts.
    Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
    Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
    Memory: 119MB = 119MB total
    Memory: 82144KB available (2708K code, 246K data, 124K init)
    Calibrating delay loop... 131.48 BogoMIPS (lpj=657408)
    Mount-cache hash table entries: 512
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    CPU: Testing write buffer coherency: ok
    net_namespace: 804 bytes
    NET: Registered protocol family 16
    NET: Registered protocol family 2
    IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
    TCP established hash table entries: 4096 (order: 3, 32768 bytes)
    TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
    TCP: Hash tables configured (established 4096 bind 4096)
    TCP reno registered
    NET: Registered protocol family 1
    checking if image is initramfs...it isn't (bad gzip magic numbers); looks like an initrd
    Freeing initrd memory: 10804K
    NetWinder Floating Point Emulator V0.97 (double precision)
    bigphysarea: Allocated 6144 pages at 0xc128e000.
    squashfs: version 3.4 (2008/08/26) Phillip Lougher
    squashfs: LZMA suppport for slax.org by jro
    JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
    msgmni has been set to 181
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    io scheduler noop registered (default)
    ttyS0 at MMIO 0x1e783000 (irq = 9) is a GUC-ASPEED UART
    ttyS1 at MMIO 0x1e784000 (irq = 10) is a GUC-ASPEED UART
    brd: module loaded
    loop: module loaded
    FTGMAC100: ASPEED FTGMAC Driver, (Linux Kernel 2.6.15.7) 11/17/2008 - by ASPEED
    FTGMAC100: eth0: at 0xfe660000 IRQ:2 noWait:0, MAC 00:21:28:bb:fd:76
    FTGMAC100: eth0:ftgmac100_reset, phyAddr=0x0, miiPhyId=0x0040_61e4
    FTGMAC100: lp->rx_descs = ffc00000, lp->rx_rx_descs_dma = 67ac000
    FTGMAC100: lp->rx_buf = 00000000, lp->rx_buf_dma = 0
    FTGMAC100: lp->tx_descs = ffc01000, lp->tx_rx_descs_dma = 67bd000
    FTGMAC100: lp->tx_buf = 00000000, lp->tx_buf_dma = 0
    FTGMAC100: eth1: at 0xfe680000 IRQ:3 noWait:0, MAC 00:21:28:bb:fd:77
    FTGMAC100: eth1:ftgmac100_reset, phyAddr=0xff, miiPhyId=0x0000_0002
    FTGMAC100: lp->rx_descs = ffc02000, lp->rx_rx_descs_dma = 67c1000
    FTGMAC100: lp->rx_buf = 00000000, lp->rx_buf_dma = 0
    FTGMAC100: lp->tx_descs = ffc03000, lp->tx_rx_descs_dma = 67d4000
    FTGMAC100: lp->tx_buf = 00000000, lp->tx_buf_dma = 0
    Ractrends Flash mapping: 0x2000000 at 0x10000000
    Bank #0: Found 1 x16 devices at 0x0 in 8-bit bank
    Amd/Fujitsu Extended Query Table at 0x0040
    Bank #0: CFI does not contain boot bank location. Assuming top.
    number of CFI chips: 1
    Number of banks found = 1
    GetMTDPartitions() says string is "env,0x20000,0x20000,coredump,0x1500000,0x800000,persist,0x1d00000,0x200000,params,0x1f00000,0x100000,"
    MTD Partition 0 : fullpart @ 0x0 of Size 0x2000000
    MTD Partition 1 : env @ 0x20000 of Size 0x20000
    MTD Partition 2 : coredump @ 0x1500000 of Size 0x800000
    MTD Partition 3 : persist @ 0x1d00000 of Size 0x200000
    MTD Partition 4 : params @ 0x1f00000 of Size 0x100000
    Creating 5 MTD partitions on "Bank #0":
    0x00000000-0x02000000 : "fullpart"
    0x00020000-0x00040000 : "env"
    0x01500000-0x01d00000 : "coredump"
    0x01d00000-0x01f00000 : "persist"
    0x01f00000-0x02000000 : "params"
    wdt: AST2100 WDT is installed.
    wdt: AST2100 WDT nowayout = 1, heartbeat = 30 secs
    wdt: AST2100 WDT guardstartupshutdown = 1
    wdt: AST2100 WDT startuptimeout = 600, shutdowntimeout = 60
    wdt: AST2100 WDT was enabled at driver start, time remaining 53 secs.
    wdt: Guarding startup, setting watchdog for 600 seconds.
    nf_conntrack version 0.5.0 (2048 buckets, 8192 max)
    CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Plase use
    nf_conntrack.acct=1 kernel paramater, acct=1 nf_conntrack module option or
    sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
    ip_tables: (C) 2000-2006 Netfilter Core Team
    TCP cubic registered
    NET: Registered protocol family 10
    ip6_tables: (C) 2000-2006 Netfilter Core Team
    NET: Registered protocol family 17
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    802.1Q VLAN Support v1.8 Ben Greear <[email protected]>
    All bugs added by David S. Miller <[email protected]>
    drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
    RAMDISK: squashfs filesystem found at block 0
    RAMDISK: Loading 10801KiB [1 disk] into ram disk... done.
    VFS: Mounted root (squashfs filesystem) readonly.
    Freeing init memory: 124K
    INIT: version 2.86 booting
    Creating /var tmpfs
    Creating directories in /var...done.
    Creating /var/log tmpfs...done.
    Calculating module dependencies... done.
    Loading modules...
        flashinfo
        helper
    Helper Module Driver Version 1.1
    mach/timer.c: Just lost 2 clock interrupts.
    Copyright (c) 2006 American Megatrends Inc.
        dbgpersist
    Persistent Driver Debugger version 1.1
    Copyright (c) 2008 Sun Microsystems Inc.
            Loading debug: usbhub [success]
            1 debug modules loaded
        gpiomgr
        gpioint
        peci
    PECI Driver: peci_initialize_device(696) Setup device peci0.
        i2c-core
    i2c_boardinfo: module license 'unspecified' taints kernel.
        i2c-dev
    i2c /dev entries driver
        i2c-algo-as
        i2c-aspeed
    i2c-adapter i2c-0: Hardware routines registered
    Registered bus id: i2c-0
    i2c-adapter i2c-1: Hardware routines registered
    Registered bus id: i2c-1
    i2c-adapter i2c-2: Hardware routines registered
    Registered bus id: i2c-2
    i2c-adapter i2c-3: Hardware routines registered
    Registered bus id: i2c-3
    i2c-adapter i2c-4: Hardware routines registered
    Registered bus id: i2c-4
    i2c-adapter i2c-5: Hardware routines registered
    Registered bus id: i2c-5
    i2c-adapter i2c-6: Hardware routines registered
    Registered bus id: i2c-6
        i2c-boardinfo
        videocap
    AST Video Capture Driver Version 1.0
    Copyright (c) 2005-2006 American Megatrends Inc.
        usb
    Initializing USB Devices -
    USB Device Endpoint Driver
    Copyright 2006 American Megatrends Inc.
    usb_init(): --USB INITIALIZING-- version MOD-VER:2011-02-04,00:09:46 with UsbEth and EndPoint-Remapping: 1
    USB GlobalDisconnect(): Called
    (E)ethBot_ConvertMacStr: converting '002128574716'
    Init AST11 Success
    USB GlobalReconnect(): Called
    mach/timer.c: Just lost 2 clock interrupts.
    USB Driver is Successfully Initialized
        btkcs
    All modules loaded.
    ... done.
    Checking device file systems
    Finished check of device file systems
    Checking configuration files state ...
    Image date:  Fri Feb  4 01:06:21 EST 2011       Image revision: 62572
    Conf date:   Fri Feb  4 01:06:21 EST 2011       Conf revision:  62572
    Configuration files state good after upgrade.
    Starting Platform Initialization: platinit.
    Running ldconfig...done
    Starting Platform Initialization: c10init.
    Starting FRU update program, platform id phase: frutool.
    Starting spdiag Platform Init: /usr/local/bin/spdiag  Done (0)
    Setting up networking...done.
    Hostname: SUNSP-1113FMN04D.
    Setting up IP spoofing protection: rp_filter.
    Configuring IPv6...done
    Configuring network interfaces...FTGMAC100: eth0:ftgmac100_open
    mach/timer.c: Just lost 3 clock interrupts.
    FTGMAC100: eth0:ftgmac100_reset, phyAddr=0x0, miiPhyId=0x0040_61e4
    FTGMAC100: eth1:ftgmac100_open
    FTGMAC100: eth1:ftgmac100_reset, phyAddr=0xff, miiPhyId=0x0000_0002
    SIOCSIFNETMASK: Cannot assign requested address
    SIOCSIFBRDADDR: Cannot assign requested address
    Failed to bring up eth1.
    done.
    Starting Constellation Blade Daemon: c10bd.
    Running ldconfig...done
    Starting portmap daemon: portmap.
    Starting ILOM Watchdog daemon.
    wdt: WDT device opened.  Watchdog starting with heartbeat = 30 secs
    mach/timer.c: Just lost 6 clock interrupts.
    wdt: AST2100 WDT was enabled at driver open, time remaining 556 secs.
    Done
    populating memstore vars from disk
    Running plat...plat: platform=b10, chassis=c01
    Done running plat
    Identifying Product Data...done.
    Starting FRU info cache program: frucache.
    INIT: Entering runlevel: 3
    Preparsing sensor.xml...
    Starting Shared Sensor Broadcast Daemon: ssbcastd  Done
    Starting system log daemon: syslogd and klogd.
    Starting capidirect daemon: capidirectd . Done
    Starting Event Manager: eventmgr  . Done
    Starting ipmi log manager daemon: logmgr . Done
    Starting System Avoidance Daemon: sad  Done
    Starting user mgmt upgrade program: usrmgt_upgrade.
    Starting the Health Monitor Daemon...
    Starting portmap daemon: portmap.
    Starting Host console Daemon: consd . Done
    Starting capidirectd: Done.
    Starting Error Telemetry Collection Daemon: etcd . Done
    Starting Fault Diagnosis Daemon: fdd . Done
    Starting IPMI Stack: . Done
    SSH RSA Host Key Files already exist. Skipping key creation ...
    SSH DSA Host Key Files already exist. Skipping key creation ...
    Starting sshd.
    Starting OpenBSD Secure Shell server: sshd-man.
    Starting SP fishwrap cache daemon: fishwrapd . Done
    Starting Network Controller Sideband Interface Daemon: ncsid . Done
    Starting Platform Obfuscation Daemon: pod . Done
    Starting lu main daemon: lumain . Done
    Starting HT sign on daemon: htsignond . Done
    Starting webgo Web Server: webgo . Done
    Starting Detection/Diagnosis After System Boot: dasboot  Done
    Starting Shared Sensor Poller: sspoller  Done
    Starting Servicetags discoverer: stdiscoverer.
    Starting Servicetags listener: stlistener.
    Starting Dynamic FRUID Daemon: dynafrud  Done
    Starting FRU info cache program: frucache.
    SUNSP-1113FMN04D login:

    For which reason do you want to known the SP processor model ?

Maybe you are looking for

  • Username availability in post-login application processes

    Hi there, I have a problem with a post-login application procedure that sets session variables. Some of the variables are based on the username of the user that is logging in. I'm using the function htmldb_custom_auth.get_username to return the usern

  • Captivate 6 trial

    I am looking for a trial of Captivate 6 (64 bit) and only see Captivate 7

  • Problem Exporting.. (WMV FORMAT)

    Can anyone help? I am new to Final Cut Pro 6 and I have just finished my first video for my company that we plan to put on our website. The video uses 4 Video Tracks and 5 Audio Tracks. Currently I have the the video finalized and save in final cut p

  • Finding the min value in a hashtable

    Hi, I'm trying to work out the lowest value contained in a hashTable. So far I've got. import java.util.Enumeration; import java.util.Hashtable; import java.util.Vector; public class StoreValuesDouble extends Statistic {       * Each object of the cl

  • Podcast is asking for username and password.

    So I downloaded a podcast and now the podcast keeps showing up on my home screen asking for a username and password, why? How can I make it stop? I have a screenshot but obviously can't load it. I deleted all my podcasts and even the app. I synced an