Installer file damaged  try obtaining new installer file from app author?

I'm running windows 7 home premium & using google chrome.  My ultimate goal is to connect my cricut to my alienware laptop

What version of Mac OS do you have? I'm guessing it's 10.6.8, which is not supported by App Builder. You need to update to a newer version of Mac OS.
Neil

Similar Messages

  • Remove / unload external swf file(s) from the main flash file and load a new swf file and garbage collection from memory.

    I can't seem to remove / unload the external swf files e.g when the carousel.swf (portfolio) is displayed and I press the about button the about content is overlapping the carousel (portfolio) . How can I remove / unload an external swf file from the main flash file and load a new swf file, while at the same time removing garbage collection from memory?
    This is the error message(s) I am receiving: "TypeError: Error #2007: Parameter child must be non-null.
    at flash.display::DisplayObjectContainer/removeChild()
    at index_fla::MainTimeline/Down3()"
    import nl.demonsters.debugger.MonsterDebugger;
    var d:MonsterDebugger=new MonsterDebugger(this);
    stage.scaleMode=StageScaleMode.NO_SCALE;
    stage.align=StageAlign.TOP_LEFT;
    stage.addEventListener(Event.RESIZE, resizeHandler);
    // loader is the loader for portfolio page swf
    var loader:Loader;
    var loader2:Loader;
    var loader3:Loader;
    var loader1:Loader;
    //  resize content
    function resizeHandler(event:Event):void {
        // resizes portfolio page to center
    loader.x = (stage.stageWidth - loader.width) * .5;
    loader.y = (stage.stageHeight - loader.height) * .5;
    // resizes about page to center
    loader3.x = (stage.stageWidth - 482) * .5 - 260;
    loader3.y = (stage.stageHeight - 492) * .5 - 140;
    /*loader2.x = (stage.stageWidth - 658.65) * .5;
    loader2.y = (stage.stageHeight - 551.45) * .5;*/
    addEventListener(Event.ENTER_FRAME, onEnterFrame,false, 0, true);
    function onEnterFrame(ev:Event):void {
    var requesterb:URLRequest=new URLRequest("carouselLoader.swf");
    loader = null;
    loader = new Loader();
    loader.name ="carousel1"
    //adds gallery.swf to stage at begining of movie
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader.load(requesterb);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader);
    loader.x = (stage.stageWidth - 739) * .5;
    loader.y = (stage.stageHeight - 500) * .5;
    // stop gallery.swf from duplication over and over again on enter frame
    removeEventListener(Event.ENTER_FRAME, onEnterFrame);
    //PORTFOLIO BUTTON
    //adds eventlistner so that gallery.swf can be loaded
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    function Down(event:MouseEvent):void {
    // re adds listener for contact.swf and about.swf
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    //unloads gallery.swf from enter frame if users presses portfolio button in nav
    var requester:URLRequest=new URLRequest("carouselLoader.swf");
        loader = null;
    loader = new Loader();
    loader.name ="carousel"
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader);
    loader.x = (stage.stageWidth - 739) * .5;
    loader.y = (stage.stageHeight - 500) * .5;
    removeChild( getChildByName("about") );
    removeChild( getChildByName("carousel1") );
    // remove eventlistner and prevents duplication of gallery.swf
    MovieClip(root).nav.portfolio.removeEventListener(MouseEvent.MOUSE_DOWN, Down);
    //INFORMATION BUTTON
    //adds eventlistner so that info.swf can be loaded
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    function Down1(event:MouseEvent):void {
    //this re-adds the EventListener for portfolio so that end user can view again if they wish.
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    var requester:URLRequest=new URLRequest("contactLoader.swf");
    loader2 = null;
    loader2 = new Loader();
    loader2.name ="contact"
    loader2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader2.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader2);
    loader2.x = (stage.stageWidth - 658.65) * .5;
    loader2.y = (stage.stageHeight - 551.45) * .5;
    // remove eventlistner and prevents duplication of info.swf
    MovieClip(root).nav.info.removeEventListener(MouseEvent.MOUSE_DOWN, Down1);
    //ABOUT BUTTON
    //adds eventlistner so that info.swf can be loaded
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    function Down3(event:MouseEvent):void {
    //this re-adds the EventListener for portfolio so that end user can view again if they wish.
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    var requester:URLRequest=new URLRequest("aboutLoader.swf");
    loader3 = null;
    loader3 = new Loader();
    loader3.name ="about"
    loader3.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader3.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader3);
    loader3.x = (stage.stageWidth - 482) * .5 - 260;
    loader3.y = (stage.stageHeight - 492) * .5 - 140;
    removeChild( getChildByName("carousel") );
    removeChild( getChildByName("carousel1") );
    // remove eventlistner and prevents duplication of info.swf
    MovieClip(root).nav.about.removeEventListener(MouseEvent.MOUSE_DOWN, Down3);
    stop();

    Andrei1,
    Thank you for the helpful advice. I made the changes as you suggested but I am receiving a #1009 error message even though my site is working the way I wan it to work. I would still like to fix the errors so that my site runs and error free. This is the error I am receiving:
    "TypeError: Error #1009: Cannot access a property or method of a null object reference."
    I'm sure this is not the best method to unload loaders and I am guessing this is why I am receiving the following error message.
         loader.unload();
         loader2.unload();
         loader3.unload();
    I also tried creating a function to unload the loader but received the same error message and my portfolio swf was not showing at all.
         function killLoad():void{
         try { loader.close(); loader2.close; loader3.close;} catch (e:*) {}
         loader.unload(); loader2.unload(); loader3.unload();
    I have a question regarding suggestion you made to set Mouse Event to "null". What does this do setting the MouseEvent do exactly?  Also, since I've set the MouseEvent to null do I also have to set the loader to null? e.g.
    ---- Here is my updated code ----
    // variable for external loaders
    var loader:Loader;
    var loader1:Loader;
    var loader2:Loader;
    var loader3:Loader;
    // makes borders resize with browser size
    function resizeHandler(event:Event):void {
    // resizes portfolio page to center
         loader.x = (stage.stageWidth - loader.width) * .5;
         loader.y = (stage.stageHeight - loader.height) * .5;
    // resizes about page to center
         loader3.x = (stage.stageWidth - 482) * .5 - 260;
         loader3.y = (stage.stageHeight - 492) * .5 - 140;
    //adds gallery.swf to stage at begining of moviie
         Down();
    //PORTFOLIO BUTTON
    //adds eventlistner so that gallery.swf can be loaded
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    function Down(event:MouseEvent = null):void {
    // re adds listener for contact.swf and about.swf
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    //unloads gallery.swf from enter frame if users presses portfolio button in nav
         var requester:URLRequest=new URLRequest("carouselLoader.swf");
         loader = new Loader();
         loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader.load(requester);
         } catch (error:SecurityError) {
         trace(error);
         this.addChild(loader);
         loader.x = (stage.stageWidth - 739) * .5;
         loader.y = (stage.stageHeight - 500) * .5;
    // sure this is not the best way to do this - but it is unload external swfs
         loader.unload();
         loader2.unload();
         loader3.unload();
    // remove eventlistner and prevents duplication of gallery.swf
         MovieClip(root).nav.portfolio.removeEventListener(MouseEvent.MOUSE_DOWN, Down);
    //INFORMATION BUTTON
         //adds eventlistner so that info.swf can be loaded
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         function Down1(event:MouseEvent = null):void {
         //this re-adds the EventListener for portfolio so that end user can view again if they wish.
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
         var requester:URLRequest=new URLRequest("contactLoader.swf");
         loader2 = null;
         loader2 = new Loader();
         loader2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);    
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader2.load(requester);
    }      catch (error:SecurityError) {
         trace(error);
         addChild(loader2);
         loader2.x = (stage.stageWidth - 658.65) * .5;
         loader2.y = (stage.stageHeight - 551.45) * .5;
    loader.unload();
    loader2.unload();
    loader3.unload();
         // remove eventlistner and prevents duplication of info.swf
         MovieClip(root).nav.info.removeEventListener(MouseEvent.MOUSE_DOWN, Down1);
    //ABOUT BUTTON
         //adds eventlistner so that info.swf can be loaded
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
         function Down3(event:MouseEvent = null):void {
         //this re-adds the EventListener for portfolio so that end user can view again if they wish.
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         var requester:URLRequest=new URLRequest("aboutLoader.swf");
         loader3 = null;
         loader3 = new Loader();
         loader3.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader3.load(requester);
    }      catch (error:SecurityError) {
         trace(error);
         addChild(loader3);
         loader3.x = (stage.stageWidth - 482) * .5 - 260;
         loader3.y = (stage.stageHeight - 492) * .5 - 140;
         loader.unload();
         loader2.unload();
         loader3.unload();
         // remove eventlistner and prevents duplication of info.swf
         MovieClip(root).nav.about.removeEventListener(MouseEvent.MOUSE_DOWN, Down3);
         stop();

  • I am facing the problem on downloading apps from Mac App Store, when I try to install the application from App store, I am getting an error message "Status_Code_Error" while click on "Login"

    I am facing the problem on downloading apps from Mac App Store, when I try to install the application from App store, I am getting an error message "Status_Code_Error" while click on "Login"

    Same problem here in Brazil.
    It seems to be a problem with logging in App Store in the Mac (Yosemite 10.10.2).
    When I tried the very same userid and password I was able to login in to use my iCloud account from the same computer and also from my iPhone.

  • My iPhoto got deleted, when i try to re-download it from app store, i am prompted that Mac OS 10.9 or later is needed, is there any way i could back my iPhoto (and iMovies and garageband) back?

    My iPhoto somehow got deleted from my Macbook Pro. Now when i try to re-download it from app store, i get the message, "we could not complete your purchase, iPhoto cant be installed on Mac OSX install ESD, because Mac OS X version 10.9 or later is required." The iphoto was actually installed on this macbook and now i cant re-install it. This version of macbooks dont come with any CD. Please help somebody?

    Restore iPhoto from your boot drive backup.
    OT

  • How to crop a mp3 file and create a new small one from it?

    Hi all,
    I would crop a long mp3 sound file and create a new small one with the short part from the long mp3 sound file. How to do it? Anybody can help me?
    Thank you very much.
    Regard
    David

    Have you managed to do this?
    I would also like to know how.
    Thanks
    Jeff Singer

  • How to install Mountain Lion on New Macbook Pro from APPS

    How can I install Mountain Lion into a VM on a New Macbook Pro running YOSEMITE  from APPS
    I have it in my apps purchased but It tells me the system is to New to download/run it
    I have tried mounting my install ESD copy but it has the same Problem
    I don't have another Mac
    Thanks

    I think the problem is that you can't install an older OS X version onto a system running a newer OS X version. So I would try the following:
         1. have an external disk or create another partition on an internal drive to use for the Mountain Lion install (you might have to shrink an existing partition to make room for another)
         2. Create an external bootable USB thumb drive with the Mountain Lion OS on it (do a search on the web for this - for example see http://www.macworld.com/article/1167857/how_to_make_a_bootable_mountain_lion_ins tall_drive.html
         3. Reboot Yosemite and then boot from the USB thumb drive by holding down the option key
         4. run the mountain lion installer and install on the new disk/partition you created in step 1 - it will also create another recovery partition from this same part of the disk
    Now your Mac system will have both a Mountain Lion install as well as the Yosemite install. You won't be able to use Migration Assistant to move things from Yosemite to Mountain Lion because it will see that you're "going backwards" and won't allow you to.
    Have a good backup of everything before starting in case there are problems.
    Good luck...

  • Downloaded files from Firefox, opens temporary file instead of the new downloaded file?

    I have downloaded the same (but updated over time) file from dropbox many time. But when i try to download the updated version, Ecxel opens a temporary file. I know this, because i'm sure the file has been updated since last download, and when i download the file in another browser, i shows the file, with the new changes.
    Only Firefox seems to have the problem. How do i force Firefox to use the new download, and not a temporary file?
    Firefox is fully updated, and running on Windows 7 64 bit.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Creating Rpt Conmgr Cache File In Temp folder while opening report from app

    hi frends,
    I m facing one problem with my Web based erp application which is developed in .net ,
    in my application when i open the  report from my applicaiton , in my temp folder there one file gets created name is "rpt conmgr cache"
    bcoz of this for few records also my report takes too much time and opens very slow and it takes long time, and it happens in some of the reports only , other reports are working cool and its not creating any file in temp folder,,,
    so can u guide me whats this file and what can be the solution for it,
    Thanks
    Mithun

    I have never heard of "rpt conmgr cache" being created in any temp directory. Is that the actual name of the file you are seeing?
    As you have not applied any updates, I'd recommend applying SP 4 to your development system. SP 4 is here:
    https://smpdl.sap-ag.de/~sapidp/012002523100006255422008E/crxir2_sp4_inc.exe
    Next, I'd recommend getting the SP 4 runtime on the client. You have two options; MSI file of create your own deployment sing the msm files. The MSI file is here:
    https://smpdl.sap-ag.de/~sapidp/012002523100009657852008E/crxir2sp4_net_si.zip
    MSM is here:
    http://resources.businessobjects.com/support/communityCS/FilesAndUpdates/crxir2sp4_net_merge_modules.zip
    Also, I don't think I still have a good handle on this:
    "my report takes too much time and opens very slow and it takes long time"
    What is long time? Two seconds, two minutes, etc.?
    Ludek

  • Has anyone else had new security questions from app store today?

    Unannounced, apparently random (my colleages havent had this), intrusive and a personal data security risk? I'm not downloading apps until I know for sure its legitimate.  Even then, I think its too much information, when its just apps.

    Demo wrote:
    Did you check out the link that I posted above. Apparently this is now pretty easy to find discussions about it everywhere. Look at some of these.
    http://www.google.com/search?q=app%20store%20security%20questions%20popping%20up %20today
    Based on the sources, as well as the volume, I'd say it's legit. Haven't seen myself yet, but I have difficulty getting to the app store at work due to network security policies.

  • I'm doing something wrong when I try to create a file.

    I'm working with binary files, trying to do a log file and I'm having this error
    java.io.FileNotFoundException: log.dat (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at Servidor.XServer.log(XServer.java:186)
         at Servidor.XServer$nwc$readLine.run(XServer.java:312)This is because the file is not being created, but I don't know why, here is my code, where I try to create it.
         /// ANADIR EVENTOS AL ARCHIVO LOG // ADD EVENTS TO LOG FILE
         int log(String arg[], String ip , String voto){
              File file = null;
             if (file == null) {
                 System.out.println ("Default: log.dat");       
                 file = new File ("log.dat");     //    why it isn't creating the file?
             // Now write the data to the file.
             try{
                  FileInputStream file_input = new FileInputStream (file);
                 DataInputStream data_in    = new DataInputStream (file_input);
                 String iptmp ="";  // ip tmp
                 String vot1=null;          // vot 1er lugar tmp
                 String vot2=null;        // vot 2do lugar
                 int itmp=0;          // intentos tmp
                 while(true){
                    try{
                      iptmp= data_in.readUTF();
                      vot1= data_in.readUTF();
                      vot2=data_in.readUTF();
                      itmp=data_in.readInt();
                 DataOutputStream data_out = new DataOutputStream (new FileOutputStream (file));
                 voto=(voto.substring(0, 1)+chart.get(Integer.parseInt(voto.substring(1, voto.length()))));
                           // SI EL IP YA VOTO POR EL PRIMER EQUIPO (ERROR EN VOTO)
                        if (iptmp.equalsIgnoreCase(ip) && vot1!=null && voto.startsWith("1")){
                             data_out.writeInt(itmp+1);
                             return(-1);
                        // SI EL IP YA VOTO POR EL SEGUNDO EQUIPO (ERROR EN VOTO)
                        if (iptmp.equalsIgnoreCase(ip) && vot2!=null && voto.startsWith("2")){
                             data_out.writeInt(itmp+1);
                             return(-1);
                        // SI UN IP NO HA VOTADO POR EL PRIMER LUGAR     
                      if (iptmp.equalsIgnoreCase(ip) && vot1==null && voto.startsWith("1")){
                         data_out.writeChars(ip);  // ip
                         data_out.writeChars(voto);   // voto por primer lugar
                         data_out.writeInt(itmp); // intentos de votos
                         // SI UN IP NO HA VOTADO POR EL SEGUNDO LUGAR
                      if(iptmp.equalsIgnoreCase(ip) && vot2==null && voto.startsWith("2")){     
                         data_out.writeChars(ip);  // ip
                         data_out.writeChars(voto);   // voto por segundo lugar
                         data_out.writeInt(itmp); // intentos de votos
                      data_out.close();
                 }catch (EOFException eof) {
                             System.out.println ("End of File");
                             break;
                      data_in.close();
             } catch (IOException e) {
                   e.printStackTrace();
              return 0;
         }Would you help me out with this? I don't see what is wrong I'm following an example from the oracle / java tutorial and I cant see what is different

    I´m not sure if Im understanding what you´re saying... If you dont describe the path, then the file will be created in the project folder, right?
    check this program out
    it doesnt specifies a path but if you try run it the file will be created in the project folder. ¨
    import java.io.*;
    import java.util.*;
    /**  Write a primitive type data array to a binary file.**/
    public class BinOutputFileApp
      public static void main (String arg[]) {
        Random ran = new Random ();
        // Create an integer array and a double array.
        int    [] i_data = new int[15];
        double [] d_data = new double[15];
        // and fill them
        for  (int i=0; i < i_data.length; i++) {
          i_data[i] = i;
          d_data[i] = ran.nextDouble () * 10.0;
        File file = null;
        // Get the output file name from the argument line.
        if (arg.length > 0) file = new File (arg[0]);
        // or use a default file name
        if (file == null) {
            System.out.println ("Default: numerical.dat");
            file = new File ("numerical.dat");
        // Now write the data array to the file.
        try {
          // Create an output stream to the file.
          FileOutputStream file_output = new FileOutputStream (file);
          // Wrap the FileOutputStream with a DataOutputStream
          DataOutputStream data_out = new DataOutputStream (file_output);
          // Write the data to the file in an integer/double pair
          for (int i=0; i < i_data.length; i++) {
              data_out.writeInt (i_data);
    data_out.writeDouble (d_data[i]);
    // Close file when finished with it..
    file_output.close ();
    catch (IOException e) {
    System.out.println ("IO exception = " + e );
    } // main
    } // class BinOutputFileApp

  • Saving tiff or jpg files within a single, existing psd file without creating new files

         Hi, I just bought CS5 and I wonder if it is possible to save multiple images that are created within a single psd file in jpg or other image file formats without creating new psd files, but rather saving them as "embedded" within the single psd file in whih they are created. For example, one could select a portion of an image that one has created, and save just that selection as a jpg without leaving the existing psd file, and after that, one could select another portion of the same image and save it as a tiff, etc. Is this possible?
    Much thanks.

    No and Yes!
    You can do much of what you want, but not exactly as you described it.  You can certainly make multiple selections and have them saved in the psd file. You can also save jpg version of those selections, but you have to do a little extra work.
    Lets say, by way of example, you have an image and you want to make three different selections within that image, save each selection as a jpeg, and save those selections along with the full image as a psd file. You can do the following, which is just one way of several to proceed, with your image opened.
    1. Make selection 1, hit Ctrl+J to jump that selection to a new layer
    2. Make selection 2, hit Ctrl+J to jump that selection to a new layer
    3. Make selection 3, hit Ctrl+J to jump that selection to a new layer
    4. Alt click on the layer with selection 1. This makes only that layer visible.
    5. Click on Layer > Duplicate Layer > destination New > give it a name
    6. This creates a new (temporary document). Open it.
         click Image > Trim > transparent pixels
         click Save for Web & Devces, select your parameters and save your jpeg
         Close and discard this temporary file.
    7. Repeat steps 4,5 & 6 for selection 2 & selection 3
    8. Save your psd file
    You now have three jpegs and a psd file with all the information to create or modify the original selections
    Paulo

  • Installing Creative Suite 5.5 Web Premium on Win7, should newer target file be overwritten?

    Just received boxed version of Adobe Creative Suite 5.5 Web Premium on CD.
    Win7 is running computer.
    Uninstalled all Adobe products.
    Trying to install Adobe Creative Suite 5.5 Web Premium, message says "The target file exists and is newer than the source."
    The target and source seem to be "AdobePDF.dll". 
    I am asked to tell the program whether to overwrite the newer target file.
    Should the newer target file be overwritten, or not?

    YEs, go ahead and overwrite it.

  • Syslogd - How to make it close and open a new messages file

    I am doing some testing and I need that every time I start my testing a new
    var/adm/messages file is started.
    I can mv the /var/adm/messages file and touch a new message file. However,
    the syslogd process still does not notice this. I know there is a way to
    give a signal to the syslogd process without having to reboot the machine.
    So, the instruction will be kill -<signal> <process ID - pid>
    However, I do not know which signal.
    I give kill -l, and it shows me a lot of signal but no speciafication or
    description of each.
    in the man pages of the syslogd it is mentioned this possibility, but it
    does not say the signal.
    Please can you help me with this.
    Please e-mail to [email protected]
    Thanks

    Hi,
    i have a solution cum - question:
    Solution:
    we can clear the /var/adm/messages file (just before starting the testing) by :
    # > /var/adm/messages.
    Q: Though this is a very crude way of doing it, This serves the purpose doesnt it ? and has worked for me. I havent found any problems with this and I dont need to reboot either .
    Is there any problem that i am unaware of in this approach. ?
    HTH,
    Rgds,
    Sonith

  • Mixing two mp3 files and generating new mp3 file in java

    HI,
    I have problem, I have 2 mp3 files I have some defined times for both file. On particular time i want to mix both mp3 file sound and generate new mp3 file by mixing audio from both files.
    As i am new to mp3 in java , Please guide me from where should i start or any other good suggestion.
    Thanks & Regards
    Akhnukh

    Thanks a lot for ur reply....
    But my actual task is to mix two mp3 files and generate a new file where in i should be able to list the two mp3 files playing simultaniously......
    So can u please help me in writing the j2me code for mixing of two mp3 files.....
    Thank u very much
    Navya

  • File Name Copy (not text inside the file ) and change the extension of file

    Hi,
    I have a requirement in which I have to copy the file name (not the text inside file ) from one folder/dir to another folder/dir with some another extension.
    Suppose we have file abc.txt of 20kb in a folder ,we need this in another folder with abc.done extension of 0 kb.
    This I need just to trigger a process.
    I have a below code to copy some files from one folder to another but this code copies the complete file not the file name only.Need help.
    package com.sumit.collections;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.nio.channels.FileChannel;
    public class FileMove {
         * @param args
         * @throws IOException
         public static void main(String[] args) throws IOException {
              FileMove fm=new FileMove();
              fm.copyFiles();
         public void copyFiles() throws IOException { 
              File destination=new File("C://soft//test2");
              File srcDir = new File("C://soft//test");
         File[] files = srcDir.listFiles();
         FileChannel in = null;
         FileChannel out = null;
         for (File file : files) { 
         try { 
         in = new FileInputStream(file).getChannel();
         File outFile = new File(destination, file.getName());
         out = new FileOutputStream(outFile).getChannel();
         in.transferTo(0, in.size(), out);
         } finally { 
         if (in != null)
         in.close();
         if (out != null)
         out.close();
    Thanks
    Sumit

    Thanks for all your help.I got the solution.
    package com.sumit.collections;
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    public class DotDoneFile {
         public static void main(String[] args) throws IOException {
              DotDoneFile fm=new DotDoneFile();
              fm.copyFiles1();
         public void copyFiles1() throws IOException { 
              List<String> filnamne = new ArrayList();
              File destDir = new File("C://Barcklays-soft//test2");
              File srcDir = new File("C://Barcklays-soft//test");
              File[] listOfFiles = srcDir.listFiles();
         try{
         for (int i=0;i<listOfFiles.length;i++){
              if (listOfFiles.isFile())
              filnamne.add(listOfFiles[i].getName());
              System.out.println(listOfFiles[i].getName());
              File.createTempFile(listOfFiles[i].getName(), ".done", destDir);
         catch(IOException ioe)
         System.out.println("Exception creating temporary file : " + ioe);

Maybe you are looking for

  • Adobe Reader 11.0.02

    Hi All, Not a question, just sharing for the benefit of others. Was attempting to install Adobe Reader 11 with the 111.0.1 and 11.0.2 updates.  Guidance is available at http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/cmdline.html http://

  • HT5621 How can I scan for viruses on my Mac?

    How can I scan for viruses on my Mac desktop?

  • Notification origin

    Hi,     When I close the notification, I get a popup to choose if its internal or external origin. I need to get more detail as to who is reponsible for the defect. For eg if its external then it could be the distributor, the manufacturer, the transp

  • Exception in method: ejbPostCreate: java.lang.IllegalArgumentException

    Hi, when i ported our application from 6.1(SP3) to 7.0(SP1), I am getting the java.lang.IllegalArgumentException. I am attaching the relevent stack trace <Info> <EJB> <010051> <EJB Exception during invoc ation from home: com.ibsplc.gulfshare.reservat

  • Convert decimal to binary values

    Hello friends, I have this: Doblue [ ][ ] dbValues;and I need convert that array in a binary values...and save it in a File Do you know how can I do it?....thanks