Problems using 100% to scale movie

hi guys,
ive embedded my flash 8 movie using some swfobject script.
ive made the movie 1024px X 768px but set the html values to 100%
as there will be a fullscreen option.
everytime i test the page my movie just appears in the top
left of the screen as 1024x768!
attached is the code ive used.
am i doing something wrong??!! is there something i should
put in the flash file to make it scale properly?
thank you very much and i hope to hear from you.
all the best,
mark

try:
function scaleUp(e.keyCode=="="){
        selectedObj.scaleX+=5;
        selectedObj.scaleY+=5
function scaleDown(e.keyCode=="="){
        selectedObj.scaleX-=5;
        selectedObj.scaleY-=5;
//End
//Function to change shape
var selectedObj:DisplayObject;
function makeShapes(e:MouseEvent):void {
    if (shapeType=="ellipse"){
        var ellipse:Ellipse = new Ellipse(15,15,color);
        addChild(ellipse);
        ellipse.x=mouseX;
        ellipse.y=mouseY;
ellipse.addEventListener(MouseEvent.CLICK,selectedObjF);
ellipse.buttonMode=true;
selectedObj=ellipse;
    } else if (shapeType=="rectangle") {
        var rectangle:Rect = new Rect(15,15,color);
        addChild(rectangle);
        rectangle.x=mouseX;
        rectangle.y=mouseY;
rectangle.addEventListener(MouseEvent.CLICK,selectedObjF);
rectangle.buttonMode=true;
selectedObj=rectangle;
function selectedObjF(e:MouseEvent){
selectedObj=e.currentTarget;

Similar Messages

  • Problem using BufferToImage with Quicktime mov�s.

    I have modified the FrameAccess.java in an attempt to grab frames from a quicktime movie and output them as jpeg sequence. While I can use FrameAcess to grab the frames of an avi, I cannot get it to output frames from the quicktime movie.
    The qicktime movie I am using plays fine within jmf (in fact it was generated by jmf) and it plays fine within the standard quicktime player.
    However, when I use the bufferToImage method on a quicktime movie, it always outputs a null image (I have tried various methods).
    I have provided my complete code (which has a hardcoded link to a quicktime file). Any ideas? Has anyone been able to do this? Perhaps I have a format error? Should jmf really be this confusing?
    Thanks,
    -Adam
    import java.awt.*;
    import javax.media.*;
    import javax.media.control.TrackControl;
    import javax.media.Format;
    import javax.media.format.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.media.util.BufferToImage;
    import java.awt.image.BufferedImage;
    import javax.imageio.*;
    import javax.imageio.stream.*;
    import java.util.*;
    import javax.imageio.event.*;
    * Sample program to access individual video frames by using a "pass-thru"
    * codec. The codec is inserted into the data flow path. As data pass through
    * this codec, a callback is invoked for each frame of video data.
    public class FrameAccess extends Frame implements ControllerListener {
         Processor p;
         Object waitSync = new Object();
         boolean stateTransitionOK = true;
         public boolean open(MediaLocator ml) {
              try {
                   p = Manager.createProcessor(ml);
              } catch (Exception e) {
                   System.err.println("Failed to create a processor from the given url: " + e);
                   return false;
              p.addControllerListener(this);
              p.configure();
              if (!waitForState(p.Configured)) {
                   System.err.println("Failed to configure the processor.");
                   return false;
              p.setContentDescriptor(null);
              TrackControl tc[] = p.getTrackControls();
              if (tc == null) {
                   System.err.println("Failed to obtain track controls from the processor.");
                   return false;
              TrackControl videoTrack = null;
              for (int i = 0; i < tc.length; i++) {
                   if (tc.getFormat() instanceof VideoFormat) {
                        videoTrack = tc[i];
                        break;
              if (videoTrack == null) {
                   System.err.println("The input media does not contain a video track.");
                   return false;
              System.err.println("Video format: " + videoTrack.getFormat());
              // Instantiate and set the frame access codec to the data flow path.
              try {
                   Codec codec[] = { new PreAccessCodec(), new PostAccessCodec() };
                   videoTrack.setCodecChain(codec);
              } catch (UnsupportedPlugInException e) {
                   System.err.println("The process does not support effects.");
              // Realize the processor.
              p.prefetch();
              if (!waitForState(p.Prefetched)) {
                   System.err.println("Failed to realize the processor.");
                   return false;
              setLayout(new BorderLayout());
              Component cc;
              Component vc;
              if ((vc = p.getVisualComponent()) != null) {
                   add("Center", vc);
              if ((cc = p.getControlPanelComponent()) != null) {
                   add("South", cc);
              // Start the processor.
              p.start();
              setVisible(true);
              return true;
         public void addNotify() {
              super.addNotify();
              pack();
         * Block until the processor has transitioned to the given state. Return
         * false if the transition failed.
         boolean waitForState(int state) {
              synchronized (waitSync) {
                   try {
                        while (p.getState() != state && stateTransitionOK)
                             waitSync.wait();
                   } catch (Exception e) { }
              return stateTransitionOK;
         * Controller Listener.
         public void controllerUpdate(ControllerEvent evt) {
              if (evt instanceof ConfigureCompleteEvent
                        || evt instanceof RealizeCompleteEvent
                        || evt instanceof PrefetchCompleteEvent) {
                   synchronized (waitSync) {
                        stateTransitionOK = true;
                        waitSync.notifyAll();
              } else if (evt instanceof ResourceUnavailableEvent) {
                   synchronized (waitSync) {
                        stateTransitionOK = false;
                        waitSync.notifyAll();
              } else if (evt instanceof EndOfMediaEvent) {
                   p.close();
                   System.exit(0);
         public static void main(String[] args) {
              String s = "c:\\videoTest\\testJava.mov";
              File f= new File(s);
              MediaLocator ml=null;
              try {
              if ((ml = new MediaLocator(f.toURL())) == null) {
                   System.err.println("Cannot build media locator from: " + s);
                   System.exit(0);
              }} catch(Exception e) { }
              FrameAccess fa = new FrameAccess();
              if (!fa.open(ml))
                   System.exit(0);
         static void prUsage() {
              System.err.println("Usage: java FrameAccess <url>");
         public class PreAccessCodec implements Codec {
              void accessFrame(Buffer frame) {
                   long t = (long) (frame.getTimeStamp() / 10000000f);
                   System.err.println("Pre: frame #: " + frame.getSequenceNumber()+ ", time: " + ((float) t) / 100f + ", len: "+ frame.getLength());
              protected Format supportedIns[] = new Format[] { new VideoFormat(null) };
              protected Format supportedOuts[] = new Format[] { new VideoFormat(null) };
              Format input = null, output = null;
              public String getName() { return "Pre-Access Codec"; }
              public void open() { }
              public void close() {}
              public void reset() {}
              public Format[] getSupportedInputFormats() { return supportedIns; }
              public Format[] getSupportedOutputFormats(Format in) {
                   if (in == null)
                        return supportedOuts;
                   else {
                        // If an input format is given, we use that input format
                        // as the output since we are not modifying the bit stream
                        // at all.
                        Format outs[] = new Format[1];
                        outs[0] = in;
                        return outs;
              public Format setInputFormat(Format format) {
                   input = format;
                   return input;
              public Format setOutputFormat(Format format) {
                   output = format;
                   return output;
              public int process(Buffer in, Buffer out) {
                   // This is the "Callback" to access individual frames.
                   accessFrame(in);
                   // Swap the data between the input & output.
                   Object data = in.getData();
                   in.setData(out.getData());
                   out.setData(data);
                   // Copy the input attributes to the output
                   out.setFormat(in.getFormat());
                   out.setLength(in.getLength());
                   out.setOffset(in.getOffset());
                   return BUFFER_PROCESSED_OK;
              public Object[] getControls() {
                   return new Object[0];
              public Object getControl(String type) {
                   return null;
         public class PostAccessCodec extends PreAccessCodec {
              public PostAccessCodec() {
                   // this is my guess for the video format of a quicktime? Any ideas?
                   VideoFormat myFormat= new VideoFormat(VideoFormat.JPEG, new Dimension(800,
                             600), Format.NOT_SPECIFIED, Format.byteArray,
                             (float) 30);
                   supportedIns = new Format[] { myFormat };
                   // this will load in an avi fine... but I commented it out
                   //supportedIns = new Format[] { new RGBFormat() }; /
              void accessFrame(Buffer frame) {               
              if (true) {
                   System.out.println(frame.getFormat());
                   BufferToImage stopBuffer = new BufferToImage((VideoFormat) frame.getFormat());
                   Image stopImage = stopBuffer.createImage(frame);
                   if (stopImage==null) System.out.println("null image");
                   try {
                        BufferedImage outImage = new BufferedImage(800, 600, BufferedImage.TYPE_INT_RGB);
                        Graphics og = outImage.getGraphics();
                        og.drawImage(stopImage, 0, 0, 800, 600, null);
                        //prepareImage(outImage,rheight,rheight, null);
                        Iterator writers = ImageIO.getImageWritersByFormatName("jpg");
                        ImageWriter writer = (ImageWriter) writers.next();
                        //Once an ImageWriter has been obtained, its destination must be set to an ImageOutputStream:
                        File f = new File("newimage" + frame.getSequenceNumber() + ".jpg");
                        ImageOutputStream ios = ImageIO.createImageOutputStream(f);
                        writer.setOutput(ios);
                        //Add writer listener to prevent the program from becoming out of memory
                   writer.addIIOWriteProgressListener(
                             new IIOWriteProgressListener(){
                             public void imageStarted(ImageWriter source, int imageIndex) {}
                             public void imageProgress(ImageWriter source, float percentageDone) {}
                             public void imageComplete(ImageWriter source){
                             source.dispose();
                             public void thumbnailStarted(ImageWriter source, int imageIndex, int thumbnailIndex) {}
                             public void thumbnailProgress(ImageWriter source, float percentageDone) {}
                             public void thumbnailComplete(ImageWriter source) {}
                             public void writeAborted(ImageWriter source) {}
                        //Finally, the image may be written to the output stream:
                        //BufferedImage bi;
                        //writer.write(imagebi);
                        writer.write(outImage);
                        ios.close();
                   } catch (IOException e) {     
                        System.out.println("Error :" + e);
              //alreadyPrnt = true;
              long t = (long) (frame.getTimeStamp() / 10000000f);
              System.err.println("Post: frame #: " + frame.getSequenceNumber() + ", time: " + ((float) t) / 100f + ", len: " + frame.getLength());     
              public String getName() {
                   return "Post-Access Codec";

    Andyble,
    Thanks for the suggestion. When I use your line, my Image is no longer null (and the resulting BufferedImage is not null either), but it outputs a "black" in the jpeg file. Any other ideas? What did you mean by a -1 F for the frame rate? Did you mean changing the format to a negative 1 frame rate? I tried that, but it did not seem to have any change. Can you let me know if I misunderstood that. Thanks.
    -Adam

  • Hi. I am just about to move from the UK to Kuwait. Will I have any problems using my iPhone 4 and able to join a local carrier using this device please?

    Hi. I am just about to move from the UK to Kuwait. Will I have any problems using my iPhone 4 and able to join a local carrier using this device please?

    If your phone is locked to a particular carrier, you must contact them to request they unlock it. Once they've taken care of that and you've followed the instructions to complete the unlock process, you will be able to use the phone elsewhere.
    ~Lyssa

  • How do I find out what program / file is using 100 GB of space on my Hard drive?  Once I find the problem  how do I delete the specific files to increase GB of space?

    How do I find out what program / file is using 100 GB of space on my Hard drive?  Once I find the problem  how do I delete the specific files to increase GB of space?

    Use OmniDiskSweeper
    Once you find file, it can be deleted from within OmniDiskSweeper
    Allan

  • Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Hi .
    Apple no longer supports Safari for Windows if that's what you are asking >  Apple apparently kills Windows PC support in Safari 6.0
    Microsoft has not written IE for Safari for many years.

  • Problem Using iDVD to burn a movie

    Hi, I'm very new to Mac world and trying to learn.
    Recently when I tried to use my iDVD to burn DVD, I faced a problem where even the Mac Support centre fail to help me.
    I have a movie files and individual is about 420M in DiVX format. When I import into the iDVD, by right a DVD should be able to accomodate up to 5 or 6 movie. However, when I import the 3rd movie file, the iDVD told me I already exit a DVD capacity of 4.7G.
    Can any expert can help me to resolve this issue so that I can burn my movie in DVD using the iDVD?
    thanks for the advise.

    Hi
    1. To me DivX is a stranged format. I use only streamingDV QT.mov files as in iMovie
    I drop the movie project icon into iDVD.
    I would convert them to this.
    2. iDVD doesn't care about Mb or Gbs on file size - only minutes in total including menu.
    If it exceeds 60 or 120 minutes dep on quality encoding seleected there are problems.
    One can easily make a 100Mb file that lasts >>2h and a 50Gb that is a 30 min movie.
    Yours Bengt W

  • I am having problems using mov files imported into a project. I get the message "Not rendered" in the Canvas and clip won't play. Can anyone help?

    I am having problems using mov files imported into a project. I get the message "Not rendered" in the Canvas and clip won't play. Can anyone help?

    When clips won't play without rendering in the Timeline, it usually means that the clip's specs don't match the Sequence settings.
    A .mov file could be made from any number of codecs; the QuickTime Movie designation is merely a container for video files of all kinds.  Since FCE only works with the QuickTime DV codec and the Apple Intermediate Codec (AIC) natively, if your mov files aren't one of those two, you need to convert them PRIOR to importing into your FCE project.
    -DH

  • Problems using CFFile to move files

    Hi there - I am having some problems using CFFile to move
    files from one directory to another. It only seems to only move
    some of the files in the group that I choose to move over, and
    there is nothing specific about which files are moved - different
    files are moved each time. There are no error messages that are
    showing up, so I am totally baffled. Has anyone else experienced
    this or does anyone else have any ideas on how to fix this problem?
    Any help would be much appreciated!! My code is below.

    First, an incidental matter. I don't think there's any need
    for so many try-catch tags. I would expect all the tags <cffile
    action="move"> to throw the same class of exception, and so
    would use one try-catch for them all. Even if you expect different
    exceptions to be thrown, one cftry tag might still be sufficient,
    if implemented as follows
    <cftry>
    <!--- code block 1 --->
    <!--- code block 2 --->
    <!--- ... etc... --->
    <cfcatch type="exceptionType1"></cfcatch>
    <cfcatch type="exceptionType2"></cfcatch>
    <!--- ... etc... --->
    </cftry>
    I suspect the cause of the problems lies in the dynamic
    values that you give the attributes. Perhaps incorrect values are
    passed for the source and/or destination values in certain
    circumstances. As A3gis has said, if that were to happen you
    probably wouldn't notice, because of the try-catches. Find a way to
    ensure that all the generated values for source and destination are
    correct.

  • Finder and loginwindow use 100% cpu with 10.6.8

    I recently installed the patch to OS X 10.6.8 and now the finder is very unstable and uses 100% cpu and the loginwindow uses 100% cpu also.  Yes I have Parallels 6 on this machine but I already "un-checked" the "show windows applications in doc" option which is the recommended solution.  However, this did not fix the problem.  I do not know how to determine what actual process is causing this finder / loginwindow issue.  I very much appreciate if anyone has suggestion how to fix this problem. 
    This is on a mid-2011 MacBookPro.
    thank you.

    TBauer, I had the same problem with 10.6.8 using 100% of the CPU with Parallels 6 installed.  The following steps solved this problem for me:
    0.  Take a screen shot of your Dock if you wish to remember it as currently set
    1. Launch Activity Monitor and click on the CPU column so you can see Dock using the CPU
    2.  Move   ///Users/ ...  /Library/Preferences/com.apple.dock.plist to the trash
    3.  Click on Dock and click on Quit Process to stop the Dock
    OS X will then rebuild the default Dock
    4.  Put the items back in the Dock that you want
    That solved the problem for me yesterday morning.  I've launched Parallels 6 several times now and moved the machine from my work network to home and the 100% CPU problem hasn't returned.
    Hope that works for you, too!
    I don't think using the combo updater will solve the problem.  The problem appears to be a .plist that is generated with OS X 10.6.7 and earlier that contains icons of a larger than Apple documented size causes the CPU looping.  Rebuilding the dock.plist under OS X 10.6.8 appears to solve the problem.
    Parallels has issued a knowledge bulletin saying they are looking into the problem.  On their web site they have another approach involving moving the offending icon out of the dock to solve the problem.  I like my solution better but theirs works, too.

  • Video Art Sync Problems: TV Shows Artwork No, Movies Artwork Yes

    Strange occurrences since upgrade to IOS 8 on the iPhone 6: I have video cover art embedded in 100% or my movies and TV shows. Before the IOS 8 upgrade no problems with the cover art appearing on either TV Shows or Movies. Now after the update, video cover artwork does not transfer to the iPhone for TV Shows alone. If the type selection is changed to Movie, then the show appears in the Movies tab and the art appears! Change the type back to TV Show and it disappears again. Anyone else have an experience with this one? Seems like a bug to me....

    It would seem this issue has been seen by a lot of people looking at my post.
    For anyone who converts files so their apple devices can use them, Smart Convertor Pro 2 has just sent out an update which has the option for square artwork for TV Shows. So when you convert your file it adds the metadata to the file and includes the artwork in a square format, when you load this onto your device it works and you can see the artwork!
    Well done guys, at least you looked at your customers issue and done something about it! Lets hope Apple sorts themselves out too!

  • Itunes using 100% of CPU

    In the last 6 months or so (and across at least two iTunes updates), whenever I launch iTunes it ends up using 100% of my CPU and basically hangs my PC until I can manage to stop the iTunes 32 process.
    Before it hits 100% it hovers in the 60-90% range...the kicker is usually when it trys to sync an iPod or iPad...then it's 100% and doesn't ever come down.
    I've done some of the suggested solutions in previews forums and posts, and nothing has ever worked.
    Any ideas?  Anyone from Apple actually willing to take ownership of this problem that seems to date back years and years and over many different versions of the software.
    It also seems to affect both Mac and PC users - althought the majority seem to be PC users.
    I have a dual core HP laptop with Windows 7 Home 64-bit and 8 Gbs of RAM....so it should have the horsepower to run this with no issues.
    Although iTunes has never run smoothly on any PC, it's never been this bad and basically unusable.
    Any help would be great....from an actual Apple engineer would be nice
    Jake in Vancouver

    Hello mjake7,
    It sounds like iTunes is having performance issues when you launch it, and in particular when you are trying to sync a device. I would recommend the troubleshooting steps from this article named:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issueshttp://support.apple.com/kb/ts1717
    You will want to start with troubleshooting for 3rd party plugins that could be causing the issue, then move onto system wide vs user specific isolation with the next part of the article.
    Start iTunes in Safe Mode
    Open iTunes in Safe Mode to isolate any interference from plug-ins or scripts not manufactured by Apple.
    Hold down Shift–Control while opening iTunes. You should see a dialog that says "iTunes is running in safe mode" before iTunes finishes starting up.
    Click Continue.
    See if the issue you're experiencing persists in Safe Mode.
    If you have the same issue while iTunes is in Safe Mode, proceed to the "Create a new user account" section. If you don't experience the same issue, follow these steps to remove third-party plug-ins.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Huge problem using apple mail while sending email to a group...

    Hey - I am quite confused... apple mail has huge problems using groups with about 150 addresses when writing and sending an email... the writing of emails is nearly impossible. Once the group name is inserted in the addressline (address book in iCloud!), apple mail uses nearly 100% CPU and further writing is nearly impossible. When sending such an email, all addresses are suddenly visible - though the box is NOT checked and the addresses should be hidden... what can I do? I use this feature (sending mails to groups) on a daily basis and cannot accept visible addresses...
    Greetings and sorry for inconvenient english...
    Christof

    How about next time you send to the group, cc yourself, or include yourself in the group. Then receive the email on the iphone, you can "reply all" in order to send to the group. If you use an imap account, you can make a new folder, call it something like "groups", and save different group emails there for the next time you need to "reply all".

  • Windows Server 2003 R2 Enterprise Edition 32 bits Service Pack 2 never finishes searching for updates and use 100% of CPU.

    Hi everyone, I am having issues updating a clean Windows Server 2003 R2 Enterprise Edition 32 bits Service Pack 2, so any help with be appreciated cause I've already tried all my cards for the past 5 days in this particular issue without success.
    All I did so far is installing Windows Server 2003 R2 Enterprise with Service Pack 2, open IE to update, it keeps searching for updates and never stop, after 20mn to 30mn the process svchost.exe start using 100% of my CPU.
    I already tried the following scenarios:
    1-  Install IE8, install the update KB927891 and the Windows Update Agent 3.0 (I already had this one installed). Reboot and run windows update trough IE8 and the problem did not solved.
    2- Install those 2 software "MicrosoftFixit.wu.MATSKB.Run" and "MicrosoftFixit50777", open IE to update, it still hangs and continues eating my CPU. This is the output of "MicrosoftFixit".
    Windows Update error 0x8007000D(2014-01-06-T-06_06_34A) --> Not Fixed
    Cryptographic service components are not registered (This service is actually running successfully) --> Not Fixed
    3- I found the following script that would register some DLL, deleting the "SoftwareDistribution" and forcing windows update to solve the problem and nothing happened either.
    Link to script:
    http://gallery.technet.microsoft.com/scriptcenter/Dos-Command-Line-Batch-to-fb07b159#content
    Here is a link to the content of my WindowUpdate.log file:
    https://skydrive.live.com/redir?resid=883EE9BE85F9632B%21105
    Thank you in advance for helping.

    All I did so far is installing Windows Server 2003 R2 Enterprise with Service Pack 2, open IE to update, it keeps searching for updates and never stop, after 20mn to 30mn the process svchost.exe start using 100% of my CPU.
    Herein is the root cause of your issue. A topic that's been discussed in several blogs, forums, and even in the media since September regards a known issue with attempting to patch IE6 RTM via Windows Update.
    Aside from that particular issue... browsing the Internet with an unpatched instance of IE6, especially from a Windows Server system, is also asking for a world of hurt.
    Might I suggest the following:
    Download the IE8 for Windows Server 2003 installer to a thumb drive.
    Download the latest Cumulative Security Update for IE8 for Windows Server 2003 to a thumb drive.
    Reinstall Windows Server 2003 with Service Pack 2.
    Upgrade to IE8 from the thumb drive installer and apply the
    Cumulative Security Update.
    Now your machine is capable of safely browsing to Windows Update to install the rest of the updates (well, maybe, there's also all those other Security Updates from the past seven years that your machine still has vulnerabilites for -- even those seven
    years of updates are going to take a Very Long Time to scan for, download, and install).
    Why don't you have a WSUS server? -- noting, wryly, that you've posted in the *WSUS* forum.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Mail is using 100% CPU processes - wondering if I possibly have the answer?

    Hi...
    I have a big problem with Mail using all the CPU processes but may just have found a possible solution. I'm posting to see if anyone else shares this problem or can shed some light on whether or not this is a possible solution.
    _*The Problem*_
    Over the past couple of weeks, I've noticed that Mail is using on average 100% of the processes and sometimes up to 168% (I have screenshots to prove it). My 17" MacBookPro gets very, very hot and the fans spin up to cool it down so it's obviously not right as it's never done this before. I can only use Mail intermittently now as the machine overheats quickly soon after Mail starts up. As a result, the CPU is being hammered so I can't now use Mail or other CPU intensive applications properly, which is a big problem.
    I've used the iStatPro widget to verify that Mail is constantly using 100% of the CPU processes. I've also verified this using Utilities / Activity Monitor. When the Activity Monitor application loads, I've selected Mail from the list of Process Names and then clicked Inspect. I've managed to identify the parent process as being launchd (110) which is using all the CPU power. Here are some other stats for this parent process:
    %CPU 95.56 (at that specific instance)
    Threads 15
    Ports 275
    CPU Time 3:30.55
    Context Switches 310968
    Faults 65795
    Page Ins 1
    Mach Messages In 272627
    Mach Messages Out 65025
    Mach System Calls 1459878
    Unix System Calls 103120
    I guess the important bit is the first bit that says 95.56%.
    I have screenshots to back this up but no way of posting them here. I have also managed to use Activity Monitor to generate sample data that the process is creating and again there is no way of posting an attachment here but there is lots of sample data from the process to look at. I've compared the sample data from my MacBookPro to a colleagues machine and the difference between the sample data is enormous. There is obviously something very wrong happening.
    Here's some basic info about my machine, with the serial number removed:
    Hardware Overview:
    Model Name: MacBook Pro 17"
    Model Identifier: MacBookPro2,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.33 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 2 GB
    Bus Speed: 667 MHz
    Boot ROM Version: MBP21.00A5.B08
    SMC Version: 1.14f5
    Sudden Motion Sensor:
    State: Enabled
    System Software Overview:
    System Version: Mac OS X 10.5.6 (9G55)
    Kernel Version: Darwin 9.6.0
    Boot Mode: Normal
    Time since boot: 1:44
    _*The Possible Solution??*_
    I recently installed a Beta version of Daylite 3 as I was interested in the application and remembered that it integrates closely with Mail. I wondered if Daylite was constantly trying to communicate with Mail and having problems. Having uninstalled Daylite 3, the problem of Mail using all the processes has so far not reappeared. Mail is now using very little of the CPU processes as is usual. However, I'm currently at home instead of on my network at the office so I'll wait to see if the problem still fails to appear when at work.
    I know other people have had problems with Mail using 100% of the processes. Have you also installed Daylite 3? There has been some talk of Flip4Mac being a possible culprit but I use Flip4Mac and haven't previously had the problem. The only recent change and connection I can think of is an install of Daylite 3.
    I don't want to talk down Daylite 3 but it's the only thing I can think of and having uninstalled it, the problem hasn't occurred. I hope I have stumbled across the solution but any thoughts, shared experiences or feedback would be greatly appreciated...
    Many Thanks,
    Nigel

    Hi...
    Thanks for the post. Not sure what you mean when you say "What does Mail say it's doing?" Can you be more specific and supply specific instructions to follow so that I can give you the information you need?
    I've sampled the process but can't post any attachments on the forum. I've listed what the Activity Monitor stats are saying at the top level in the post above.
    This is a serious problem that's hammering my machine and making it overheat and almost making it unusable. Any feedback or instructions anyone can give me for what info to supply to help you determine what the issue is would be greatly appreciated. I'm hoping to find a solution here rather than have the machine overheat permanently and eventually fail, leaving me to sort it out with AppleCare.
    Help!
    Clown Guy

  • WHAT THE HELL IS GOING ON? Activation problem 194:100

    What the ihell is going on?
    I have been burdened with activation issues for weeks - see my previous thread. I have had no response here from Adobe about how to fix it. Please don't say this is a 'user to user' forum. It isn't a 'U2U' forum when Adobe state this is the first place we should look!
    Now, no CC program will run owing to something called 'Activation problem 194:100'.
    Yes, I have logged out. Yes, I have rebooted. Yes, I have deactivated 'more than 2 machines'. Why should I have to repeatedly click to 'deactivate 2 previous activations' when there has NEVER been more than one activation?
    Adobe not only make me look a laughing stock in the classroom but this constant issue that has been going on for weeks now subliminally tells students Adobe software is useless!
    When will I be able to use CC again? I am paying for it remember!!!!!!!!!!!!!!!!!!!!!!

    Hello Rajshree,
    Welcome to Adobe Forum.
    CC has only EVER been activated on ONE PC.
    If you look at http://forums.adobe.com/message/6198690#6198690 you'll see (like many other users) I have to constantly sign in and reactivate. It is probably this that is causing the multiple activations.
    However, to reiterate, CC is only running on ONE computer. It has not at any time been activated on more than the same PC. One activation - one PC.
    So, the suggestion of waiting a few hours (if the prog won't activate / run) is less than adequate. Like everyone else, I pay to have it running 24 hours a day - every day.

Maybe you are looking for

  • Dual boot ArchLinux and Win XP on 2 separate HDD

    Dear Archers My friend wants me to install ArchLinux on his desktop, with 2 separate HDD. He already has win xp installed on one HDD. He wants to dual boot. Pl. give some inputs as to how this should be done. (My experience is limited.  I have instal

  • Enable Signing in Reader but Disable Commenting

    I am a new-comer to Acrobat.  In fact, I'm still using the trial version.  So far I like it much better than the cheaper Acrobat "alternatives" I've tried.  But I do have some questions. I work for a geomatics and land planning firm and we recently d

  • Getting Internet Explorer Script error while Installing SAP B1 2007

    I got error nternet Explorer Script error msg while installing SAP B1 2007, please help me regarding it Thanks

  • BADI to change the email subject

    Hi all, Which BADI can be used to change the subject of the email when a SC is created?? I tried using the BADI "BBP_OFFLINE_APP_BADI" and the implementation "MAIL_DATA_GET" but it is not getting reflected in the mail.. Am I using the right BADI or i

  • Transfer PS 7 To new pc.

    I'm attempting to transfer ps 7, (saved on a flash drive) to my new laptop running windows 8. When I try to install I get a pop up that says it cannot install, missing personal information. Please Help! I no longer have the install cd. just the progr