Large background video/image

Hey all,
I am currently designing a website and one of the main features I would like is a large background video/image with header and large centred text laid over the top. The link I have provided shows exactly what I want to achieve but I don't know where to start.
The link below is the example:
http://weareadaptable.com/
Thanks for the help.
Alex

You have a link with an example. Do you know how to view source code? Start there!

Similar Messages

  • Setting a LARGE background footer/image - CSS

    Hi all,
    I am pretty new to CSS design and come from the old skool of table design :-(
    I have a photoshop design that I have ALMOST completed converting into CSS. The final piece of the puzzle (really should have solved this first :-) ) is the footer - the design uses a rather large footer that seamlessly blends into the rest of this site. I have posted a pic of what the final design SHOULD look like and a pic of where I am at.
    As you can see everything is in place apart from the footer. I am after some advice as to how I can place the footer so that the main content overlaps it and it blends into the background.
    Thank you so much to anyone that can shed some light on this!
    Tris

    Hard to advise based on screenshots alone.
    Can you upload the page and post a link so we can see the site?

  • Display a large sequence of images like a video.

    I want to display a large sequence of images (.jpg) like a video, something like a Component that displays an image and a TimerTask that changes that image every 50 milseconds and repaints:
    class SlideShow extends Component
         private Timer timer;
         private TimerTask imageFliper;
         private Image currentImage;
         private Image nextImage;
         private int arraysize;
         private int arrayoffset;
         private int currentposi;
         String fileMask;
         public SlideShow(int offset, int size, String filemask)
              super.setSize(640,480);
              currentposi = arrayoffset = offset;
              arraysize = size;
              fileMask = filemask;
              timer= new Timer();
              nextImage = Toolkit.getDefaultToolkit().getImage(fileMask.replaceFirst("#",leftZero(currentposi,4)));
              imageFliper = new TimerTask()
                   public void run()
                        currentImage = nextImage;
                        repaint();
                        if(++currentposi > arrayoffset + arraysize)
                             currentposi = arrayoffset;
                        nextImage = Toolkit.getDefaultToolkit().getImage(fileMask.replaceFirst("#",leftZero(currentposi,4)));
              timer.schedule(imageFliper, 0, 50);
         public void paint(Graphics g)
              g.drawImage(currentImage,0,0,super.getWidth(),super.getHeight(),this);
         public void update(Graphics g)
              paint(g);
         static public String leftZero(int target,int leftcount)
              StringBuffer sb = new StringBuffer();
              int i = (int)Math.pow(10,leftcount-1);
              while(i!=1)
                   if(target<i)
                        sb.append("0");
                        i=i/10;
                   else
                        break;
              sb.append(Integer.toString(target));
              return sb.toString();
         public static void main(String[] args) 
              Frame f = new Frame("slide show");
              SlideShow s = new SlideShow(1,1000,"intro\\intro#.jpg");
              f.add(s);
              f.addWindowListener(new WindowAdapter()
                             public void windowClosing(WindowEvent e){System.exit(0);}
              f.pack();
              f.setSize(640,480);
              f.setVisible(true);
    }but just using the Image class seems to be unefective.
    Does anyone kwon a library that does this fast and efective?
    or should i just convert the images to a media file and use a media library?
    Message was edited by:
    nmfmr

    Firstly if you're loading images with Toolkit you'll nbeed to use MediaTracker (see the Javadoc for full and clear instructions).
    Secondly, be aware of how long it takes to load image data, allocate the memory for it, and decode it. This is where you're going to suffer and it's the fundamental flaw in the plan of simulating video by flipping single frames: it's highly unlikely you'll manage it quickly enough. As above, 50ms is quite optimistic.
    You could do your loading up-front and buffer a load of images - there are a few strategies you could use for this. But bear in mind that (a) this is going to be very memory hungry, and (b) if your image load time is greater than your frame display time you're always going to be fighting a losing battle. But it should work for very small animations.
    Run yourself some tests: write yourself a simple test class which just loads an image in its main() method using a MediaTracker. It'll tell you how long loading the image takes. Of course, if you're doing it in an applet then you've got all sorts of other factors to consider and the load times will be high.

  • How to do basic corrections to large numbers of images

    I have to do basic corrections to large numbers of images that will be coming in separate
    batches and which need to be kept in their separate batches. I cant mix them together.
    Do I create a new catalog for each batch? What should I do, if anything with collections and
    what is the fastest way to make basic corrections to hundreds of images? Some of the images
    are similar but many are not.
    Oh, I was also wondering if Lightroom can import through FTP or if I need to download the
    images and then import them.
    Thank you!

    Hi Jim,
    you need to understand what is happening or you can become very frustrated
    That's for sure. I have found countless tutorials on how to do specific things and procedures in Lightroom but I wasnt able to find a macro or aerial view of what it does and how it works. Things like what is a catalog and if it mimics the file structure on the disk, if and when to have more than one catalog, where the catalog and collections files are stored and how to back them up, how to re-synchronize the catalog if you move things around with finder/explorer, etc.
    I'm slowly piecing those things together by thinking and working backwards from all the more lower level tutorials. I keep thinking I want a "Missing manual" for moving from Finder and Bridge to Lightroom.
    For instance, are you aware that in its default state Lightroom does not write any changes to the files?
    And are you aware of how to change that? Are you aware that if you make that change there will be XMP files for every raw file that you worked on?
    I knew that Lightroom doesn't  normally save changes to the image files, it basically stores a history of the adjustments in a separate file and applies them to the original, kind of like adjustment layers in photoshop dont change the background layer. I think I read that if working with a dng file the history of adjustments is saved within the dng image file but I'm not sure about that. The xmp files are the same or similar to the ones that are created in ACR, I believe.
    you really need to have a good working knowledge of the program in order to use it efficiently.
    I dont expect to be very efficient at first. I'm thinking of this experience as on the job training and thanks to all of the internet resources available and people like you I think I'll be able to adapt to Lightroom fairly quickly.
    I looked at the videos that you linked me to. Some of them I had found previously but it was good to view them again. I do that a lot, after I do some work I look back at books or videos I had previously studied and I normally get more out of it the second time.
    Is there a way that you know of to improve a few hundred images more efficiently that selecting the most similar ones for a group adjustment and doing the rest individually? I have images that are under and over exposed, tilted and with various color casts :-(
    I'm thinking about going to PDN Photo Expo over the next few days and taking retouching courses with Carrie Beene. Would you happen to be going?
    Thanks,
    Bob

  • How to send files like audio,video,images and text via RMI..

    Hi everyone,
    As I am working under a project, my own, of creating a chat machine, I've thought to make it capable of doing everything that MSN or yahoo MSN can do. Till now I've just been able to send messages and some small icons as expressions. So, my next step will be making my progam able to send even other files like audio, video, images and text to the person on the other machine to whom I'm chatting. But as I don't have any idea on how to start doing it, I want anyone who think he/she can help me to give me the basic logic that is used to do so. I would very much appreciate it. I've used vectors to store the text messages which is visible to all the users using the chat program enabling them to see various messages in it.
    thank you...
    Jay

    Hi,
    Now, I got stuck because the code doesn't seem to work well. For large files with around 40 mb or more size couldn't be sent. I have constructed the code, just rough sketch, as follows:
    ** In the Server Implementation class I've used FileInputStream to read the contents of a file that is sent as an argument to the method.
    ** Similarly, in the client side I've used RandomAccessFile to save the received array of bytes.
    public void sendFile(File f)
       ChatServer cs=(ChatServer)Naming.lookup("rmi://localhost/ChatServer");
       cs.readsAndStoreTheFileInTheServer(f); // In the Server Implementation the contents of the file is read and saved in an array of byte. later method is invoked by the client to get the array of the saved byte.
       cs.message("-Accept-"); // When a client receives this word then a JComponent with accept and cancel button will be constructed from where other clients can save/cancel the sent file.
    }For small size files this code works well but for files more than 40 mb of size it is useless. I wonder if there's any other alternative.
    regards,
    Jay

  • Help centering background video in fluid grid layout inside div

    Hopefully this all makes sense. I am trying to center the background video (the animation on the website towards the bottom)... I have tried all sorts of things to try and center this. If it can't be done, it can't be done. The banner on top works as should. If all else fails I will just not use a fluid grid page and that will be that. I self taught myself  Adobe After Effects to make that animation (took me a month and 1/2) and I have self taught myself Dreamweaver.. coming from Frontpage and Expression Web.
    Here is the website (thank you in advance for your input):
    http://a1customcomputers.com/Web%20Development/A1CC/Main.html
    I just tested it and it's not playing how it should.. I'll figure that out later but where it says "Enter", that is what I need centered. Thanks
    My html so far:
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Untitled Document</title>
    <link href="boilerplate.css" rel="stylesheet"/>
    <link href="assets/style.css" rel="stylesheet"/>
    <script src="respond.min.js"></script>
    <script type="text/javascript" src="assets/jquery-1.5.1.js"></script>
    <script type="text/javascript" src="jquery.videoBG.js"></script>
    <script type="text/javascript" src="assets/script.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
    <div id="div1" class="fluid">
      <div align="center"><img src="A1_Banner.jpg" /></div>
    </div>
    <p> </p>
    <p> </p>
    <div id="div2" class="fluid"></div>
    </div>
    </body>
    </html>
    my style.css so far:
    @charset "utf-8";
    /* Simple fluid media
       Note: Fluid media requires that you remove the media's height and width attributes from the HTML
       http://www.alistapart.com/articles/fluid-images/
    img, object, embed, video {
    max-width: 90%;
    /* IE 6 does not support max-width so default to width 100% */
    .ie6 img {
    width:100%;
    Dreamweaver Fluid Grid Properties
    dw-num-cols-mobile:  5;
    dw-num-cols-tablet:  8;
    dw-num-cols-desktop: 12;
    dw-gutter-percentage: 15;
    Inspiration from "Responsive Web Design" by Ethan Marcotte
    http://www.alistapart.com/articles/responsive-web-design
    and Golden Grid System by Joni Korpi
    http://goldengridsystem.com/
    .fluid {
    clear: none;
    width: 400px;
    float: left;
    display: block;
    padding-left: auto;
    padding-right: auto;
    .fluidList {
        list-style:none;
        list-style-image:none;
        margin:0;
        padding:0;       
    /* Mobile Layout: 480px and below. */
    .gridContainer {
    width: 100%;
    clear: none;
    float: none;
    height: 100%;
    margin-top: 20px;
    padding-left: 0.7851px;
    padding-right: .7851px;
    #div1 {
    width: 100%;
    #div2 {
    width: 400px;
    height: 400px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    .zeroMargin_mobile {
    margin-left: 0;
    .hide_mobile {
    display: none;
    /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
    @media only screen and (min-width: 481px) {
    .gridContainer {
    width: 100%;
    padding-left: 0.7581%;
    padding-right: 0.7581%;
    clear: none;
    float: none;
    margin-top: 20px;
    height: 100%;
    #div1 {
    width: 100%;
    #div2 {
    width: 400px;
    height: 400px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    .hide_tablet {
    display: none;
    .zeroMargin_tablet {
    margin-left: 0;
    /* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
    @media only screen and (min-width: 769px) {
    .gridContainer {
    width: 100%;
    margin-top: 20px;
    clear: none;
    float: none;
    padding-left: 0.7581%;
    padding-right: 0.7581%;
    height: 100%;
    #div1 {
    width: 100%;
    margin-bottom: 13%;
    #div2 {
    width: 400px;
    margin: 0 auto;
    .zeroMargin_desktop {
    margin-left: 0;
    .hide_desktop {
    display: none;
    /* DEMOS */
    #div2 {
    width: 400px;
    margin: 0 auto;

    Not trying to argue with you and I know you are only trying to help and I know that you know ALOT more about this than I do.. you do... I don't know if background was the correct "place" to call it.. but nevertheless.. what I beleive it is, is in the background.. and maybe that is part of the problem. It is supposed to be called from a JQuery plugin, and where I have it now is in a "div [div2]" in the "gridcontainer". It was working and my latest attempts it was working great.. but wasn't centered. But I've changed a bunch of code around lately and so that is why it is not working right now... The "Enter" that you see on the link I provided is the "poster". When I get a chance I will work on it and get the animation working again.. or back to normal.. just not centered. At first I was thinking "centered vertically".. and so for like a week, maybe longer.. everthing that I was searching for and trying was for "vertically center a div".. then it hit me.. you jacka$$.. you want to horizontally center it... Haha! Again, thank you for your input.

  • Problem with importing a large number of images to Lightroom?

    I'm trying to import a large number of images from disk to Lightroom. If I select more that approximately 1500 images (1250 works fine), I get an error message saying "files do not exist". If I reduce the number of files imported, everything works fine. I can import in groups as long as the number selected at any one time is less that the ~1500 limit.
    Has any one had a similar problems? I'm running LR 2.4 64-bit on Win7 RC 64-bit, Q6600 processor, 8 GB RAM.
    Does not seem like this should be a problem. Its a real hassle to my workflow. I'm working on a series of time-laps movies (here is a link to a sample: http://vimeo.com/6375019).

    Thanks for your reply Sean,
    It is an internal disk drive, SATA II interface.I have no other disk/file problems, this is unique to LR as far as I can tell.
    I'm loading files onto disk from a CF card reader outside of Lightroom, then opening LR and telling it to import from disk. I've never had a problem before with imports. Experimenting with number of files, somewhere between 1250 and 1500 is where the problem occurs.
    Been busy making time-lapse videos of the fire in LA, so I'm away from the computer most of the time.
    thanks,
    Dan Finnerty

  • How do I add mpg background video behind a psd menu in Encore?

    How do I add mpg background video behind a psd menu in Encore? The psd file is transparent and it still comes out as pitch black behind the menu. I'm inexperienced with these products so any help is greatly appreciated.

    If you have done what Russ describes and it does not work...
    Encore replaces the background layer with your motion video. So make sure you have a) a layer at the bottom (in Photoshop layer order) that is named "background," and b) no other full layer above that (for example, an image in another layer you've used instead of the original background layer).
    Also keep in mind that setting transparency in Photoshop is overridden by various Encore processes.

  • Background video behaviourattached

    When you put a video using the video tag on stage as a background or even with edgehero background video the video behaves strangely .
    I will try to explain….
    - the video is at the background all right . But If you start ‘playing’ with your browser window and make it really small, the video will tends to disappear somewhere at the back of the top left corner.
    It seems as that the video or the div it is "attached"  to, is linked to the bottom right corner.
    It looks like the computer display extends itself all over the place around it. It's weird.
    An image doesn't behave the same way. The 0 0  of the image is the at the top left corner as it should be.
    thanks

    You may have done this already, but whenever you do updates you should follow with a permissions repair, and then delete preferences for iMovie and iDVD.
    If you haven't done it before: Delete preferences by closing iMovie and trashing the file com.apple.iMovie.plist found in User (the House icon)/Library/Preferences. Then do a permissions repair using the Utilities/Disk Utility App on your Mac. Open the Disk Utilities window and select the Mac hard drive icon at the top of the side pane at the left. Then click on the Repair Permissions button. When you have repaired permissions and deleted preferences, restart your computer and launch iMovie. iMovie will replace the .plist file that you deleted. Be sure also that you have sufficient free disk space on your hard drive for iMovie to function correctly. 20GB often is recommended by users of this forum. After doing all of the above, relaunch iMovie and see whether you still have the problem.

  • Adobe Encore - Background Video Rendering & 'Photoshop File Error - 1'

    Hi, I am having serious problems with Adobe Encore at the moment, and really need help fast.
    I am currently making a DVD project where:
    I have used Photoshop to create the buttons (It's just the two buttons/options created in groups with the text and their highlights. There is no background).
    Once that was done, I created a spearate animation in After Effects that allowed images to change from one to the next.
    I exported this as an MPEG so that it could be inserted as a background video in Encore.
    So I went back to Encore, inserted the buttons and my background video, created the motion properties so that the video would play behind the buttons (and I did the same for audio). Then I went to preview it, and clicked 'render' and it wouldn't! It just pops up 'Photoshop File Error-1'.
    I read that other people have the same problem and have tried editing the psd with the buttons, but still nothing has helped!!!
    Can someone please help me??
    I would really appreciate it. Thank You
    By the way, I am using MAC OS X Version 10.9.2 (Mavericks), if that matters.

    >alert them to the problem, and fix it?
    Will never be fixed... CS6 is done
    CS6 is the final Encore http://www.adobe.com/products/encore/faq.html
    -see #8 here for why http://forums.adobe.com/thread/1337952?tstart=0
    >So how exactly do you 'create a small partition on my drive just for the old OS X'?
    That would be a question to ask Apple, or in an Apple forum

  • Having difficulty using quick selection tools to remove background form images. Any help appreciated

    Hello All,
    I am trying to remove background from images using the 3 different selection tools.  I start off fine, but ultimately the entire images keeps getting grabbed which ever tool I am using.  It is easier if you are using a pro version of photoshop and not any of the elements versions?  I have elements 11.
    Thanks
    -Deby

    Accents Accents wrote:
    Whenever I have watched a video of this process, it seems so easy!
    So much depends on the image itself to determine which tool is most appropriate. Another tool to try is the selection brush, where you literally paint in what you want to select.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Looking for background videos

    Hello all
    I'm on the hunt for various background videos, I have found IStockPhoto and Getty Images, but I was wondering what other options I may have and, was hoping for a few recommendations, I'm not really looking for anything specific cause it really all depends on what project I'm working on at the time....
    Thanks

    Is joke, yes?
    Anyone know where I can find a red and white swirling, falling into the vortex,
    There are several presets and prebuilts within Motion and LiveType.
    kinda cartoony looking type
    You mean text? Can't imagine text doing what you're describing without many carefully applied filters. Since the text is customized by the user, no.
    background to key?
    You mean key in front of? Or you want to key out the background? Huge difference and we cannot possibly read your mind.
    bogiesan
    Message was edited by: David Bogie Chq-1

  • Linksys WVC210 Automated Video/Image Capture

    So i have a need to do automated video/image capture from a pair LinkSys WVC210's, they are being used in a friends shop and aswell as being able to view from home there is also a requirement to record them.
    It needed to be simple and not a big combersome display with fairly large hardware requirements like the supplied software, so i started with a VB Script doing what i wanted but had the need to do some more advanced stuff so ported it over to VB.Net and would like to share the software/source if anyone else want's something similar.
    Bassicly it is a Command Line App that accepts 4 arguments.
    Usage is as follows:
    LinkSysWVC.exe 192.168.1.211 Front 10 10
    Where the first arg is obviously the Camera's IP, the 2nd arg is a Name for the camera that will be used in the filenames of videos and images, the 3rd arg is how long to record for in seconds, and the final arg is how many loops to do
    The Program uses native VB code to download the image from the camera and save it to a file, and mencoder to capture the streaming video.
    I chose mencoder as it is cross platform, simple, supports streaming containers and can output virtually any video.
    It saves the stream as a AVI with the following specs:
    Video
    Format                           : MPEG-4 Visual
    Bit rate                         : 384 Kbps
    Width                            : 720 pixels
    Height                           : 576 pixels
    Display aspect ratio             : 5/4
    Frame rate                       : 6.000 fps
    Audio
    Format                           : MPEG Audio
    Format profile                   : Layer 3
    Codec ID                         : 55
    Codec ID/Hint                    : MP3
    Bit rate mode                    : Constant
    Bit rate                         : 64.0 Kbps
    Channel(s)                       : 1 channel
    Sampling rate                    : 8 000 Hz
    Resolution                       : 16 bits
    At the moment there is no error checking, all it does is attempt to ping the camera if it responds then it starts the capture process.
    C:\>LinkSysWVC.exe 192.168.1.211 Front 10 10
    LinkSys IP Camera Recorder.
    Camera IP: 192.168.1.211
    Camera Name: Front
    Recording Blocks: 10 seconds
    Recording Loops: 10
    Trying to ping 192.168.1.211...
    Ping Reply 16 msec.
    Beginning Capture...
    Looping 10 Times.
    Saved Current Image to "09-2-21 - 143325 - Front - 1.jpg"
    Saved Current Image to "09-2-21 - 143337 - Front - 2.jpg"
    Saved Current Image to "09-2-21 - 143350 - Front - 3.jpg"
    Saved Current Image to "09-2-21 - 143402 - Front - 4.jpg"
    Saved Current Image to "09-2-21 - 143414 - Front - 5.jpg"
    Saved Current Image to "09-2-21 - 143426 - Front - 6.jpg"
    Saved Current Image to "09-2-21 - 143438 - Front - 7.jpg"
    Saved Current Image to "09-2-21 - 143451 - Front - 8.jpg"
    Saved Current Image to "09-2-21 - 143503 - Front - 9.jpg"
    Saved Current Image to "09-2-21 - 143515 - Front - 10.jpg"
    Exiting...
    Download LinkSysWVC.exe (23kb)
    Download mencoder.exe (12.3mb)

    Hi,
    I am using Linksys WVC8oN Cisco camera, I want to automate image capturing and video capturing.
    I tried using LinkSysWVC.exe, the first image is captured after that it throws an error. What is the setup is required?
    for mencoder.exe what is the command line argument to be passed to get video captured?

  • Stacking video images question

    hello,
    i can capture itunes visualizer playing a song in a window. i would like to put another video image, a persons face singing for instance, centered over the visualizer video and capture that in a new video if that makes sense. is this possible for a novice like me to do with an ilife or other entry level program?

    i would like to put another video image, a persons face singing for instance, centered over the visualizer video and capture that in a new video if that makes sense. is this possible for a novice like me to do with an ilife or other entry level program?
    Just an idea -- something I would like to try but can't -- using Leopard's Photo Booth. According to the write-up, it can apply a user selected video "backdrop" to your work. Whether this can only be done with stills or second layer of video remains to be tested/seen. in Any case, here are the "Help" instructions:
    To use a video backdrop:
    1) Click Effects, then click the right arrow until you see the video backdrop effects.
    2) To add a picture or movie of your own, go to the panel that has empty backdrop frames and drag the picture or movie to one of the empty frames.
    3) You can drag pictures or movies from the Finder, iMovie, or iPhoto.
    4) Select the video backdrop you want to use.
    5) When prompted, step out of the picture for a moment, until Photo Booth detects the background.
    Winston, since you have a Xeon platform, can you try this out and report back? My PPC won't even show the effect as a possibility for selection, let alone allow me to test it.

  • Asc 2.0 crash with large embedded video file

    Hello,
    asc 2.0 crash with large embedded video files
    package{ 
      import flash.display.Sprite;
      public class Main extends Sprite{
        [Embed(source="video/myVideo.mp4", mimeType="application/octet-stream")]
        public var video:Class;
        public function Main(){
    on Windows with a small video, it compile fine, with a large video (525 Mo) the compiler crash
    internal error : java.lang.NullPointerException
            at com.adobe.flash.swf.SWF.addFrame(SWF.java:91)
            at com.adobe.flash.compiler.internal.targets.SWFTarget$FramesInformation
    .createFrames(SWFTarget.java:876)
            at com.adobe.flash.compiler.internal.targets.AppSWFTarget$AppFramesInfor
    mation.createFrames(AppSWFTarget.java:386)
            at com.adobe.flash.compiler.internal.targets.SWFTarget.build(SWFTarget.j
    ava:243)
            at com.adobe.flash.compiler.clients.MXMLC.buildSWFModel(MXMLC.java:674)
            at com.adobe.flash.compiler.clients.MXMLC.buildArtifact(MXMLC.java:660)
            at com.adobe.flash.compiler.clients.MXMLC.compile(MXMLC.java:541)
            at com.adobe.flash.compiler.clients.MXMLC.mainNoExit(MXMLC.java:230)
            at com.adobe.flash.compiler.clients.MXMLC.mainNoExit(MXMLC.java:184)
            at com.adobe.flash.compiler.clients.MXMLC.staticMainNoExit(MXMLC.java:15
    6)
            at com.adobe.flash.compiler.clients.MXMLC.main(MXMLC.java:143)
    Thanks

    java.lang.NullPointerException
    i met this error every time if i compile a "BIG " project.(with 1G+  image resources).   And also ,if you  import 500+ images into Flash CS ...you  know ,its prefix is  "Adobe".
    i guess , it's  because somebody not like "BIG " thing.
    So..on  32bit windows  platform ..i  upgrade my JVM to  1.7 ,and..modified  -XSS value . it will help us ..but not 100% resolved.
    Finally ,i upgrade to  64bit platform ..this problem seems  gone.
    I think ,it's  because of the bad RAM Manager  of  JVM. on 32bit windows machine .it's only can manager 1024M ram .(such a stupid VM).   And  on 64bit platform ..JVM seems  to be d normal.

Maybe you are looking for