Need quick response if possible please (pop/clicks throughout project)

i've made many cd's with waveburner. i've imported regular 16bit tracks and created an order the cd. The cd's are nothing fancy just a few earlier fades than the original audio track...changing gaps to 1 sec instead of 2 sec. Then bounced the project and for the first time took off any dither...I realized in all previous projects i must have been dithering twice. Now I get pop clicks through out the cd...not just the start , gaps...but everywhere. I looked to see if there was a previous post for this and although there are quite a few regarding gaps...not throughout the cd.....I have logic pro 7.2.3 and the waveburner version that came along with that. anybody please??

I don't know if this might help:
http://rajeev.name/blog/2006/09/09/integrating-mac-os-x-into-unix-ldap-environme nt-with-nfs-home-directories/

Similar Messages

  • Need Quick Help if Possible

    I have two big questions that I need urgent help with.
    1. Can you reference a background image in flash that will
    change montly?
    2. Can you reference Microsoft Reporting Services to publish
    reports through a flash interface in SharePoint?
    I know these are crazy questions, but I am working with a
    client and need to know whether this is possible ASAP as I have to
    get it completed by COB tomorrow if it is possible.
    Thanks so much!

    Remove all the videos that won't play from your iPod. Go to the Store menu in iTunes, Deauthorize your computer, play one of the videos in question and when prompted enter your Apple ID and password. Resync the videos.

  • Reinstalling Mac OS X Problem. Can't lose information. Need quick response!

    Okay ,so I recently had a software problem with my mac, and I went to the apple store and the genius told me I need to reinstall mac os x tiger, and it wil work. WEll I put the disc in and he gave me specific instructions on how to keep all my documents, movies, pictures, etc. He told me that when I get to the screen wherer it asks me to choose a harddrive to install it, I need to click "options" and make sure "preserve network settings and users" is checked, but when I got there it was gray, and unclickable. I only have 17 gigs of space left, and that may be the reason, but I don't know... I don't want to click "archive and install" and not click what he told me, and click continue, cause if I seriously loose all my information, I will die. I was thinking about clearing out my harddrive somehow, but Ithe genius told me that 17 gigs was DEFINATELY enough. I don't know what todo

    If you have a 250GB drive, 17 GB is right on the border of too little.
    I'm not sure if I understand whether you have actually tried to reinstall? Have you inserted the disc and gone to options>archive and install>preserve settings?
    I wasn't suggesting you partition your main drive, just an external one.
    Why is your computer not working? Have you discovered what its problem is? Have you run the Hardware Test from your install disc?
    Lots of questions, but it's hard to solve a problem without all the pieces of the puzzle being there
    Miriam

  • Transparent Partion with three sources and one target- Need quick response

    I am creating transparent partion with three sources and one target.What will be the impact of this on retrieval and how can I improve retrieval.
    Thanks,

    transparent partion
    1:network load will be heavy
    2:transparent partion allows user to manipulate or edit or delete at will ,from the user to target
    and also from target u can update it back to respective databases
    3: disk usage will be high
    [email protected]

  • I need help as soon as possible please hs to with arrays.

    import java.util.Random;
    public class AviarySimulator
        // Instance variables
        private Aviary aviary;
        private int numberOfDays = 0;
        private Random r;
    public void simulateDay(int amtFeed)
            //a new Day
            numberOfDays++;
            System.out.println("**************************");
            System.out.println ("Day : " + numberOfDays);
            if(!aviary.isEmpty())
                    // Ask the cage to supply its budgie object
                    Budgie theBudgie = aviary.getBudgie();
                    /* Check there really is a Bird in the cage. null means that there is no
                     * bird object assigned to the myBudgie variable in class cage.
                    if(theBudgie != null)
                       // Code moved from below.  PR
                       // Budgie gets older because a day has gone by.                     
                       theBudgie.incAge();
                       // Budgie exercises every day PR
                       theBudgie.exercise(DAILY_EXERCISE);
                        // Feed the budgie
                        // To avoid feeding nothing, check that food is given PR
                        // Also rejects negative feed!
                        if(amtFeed > 0)
                            theBudgie.eat(amtFeed);
                            System.out.println("Just been fed " + amtFeed + " grams of bird seed");
                        // Check if the budgie is still alive
                       if(theBudgie.isDead())
                            System.out.println(theBudgie.getName() + " just died...sob");
                            System.out.println("Here lies " + theBudgie.getName() + " this budgie was much loved by its " +
                                                   theBudgie.getNumEggsLaid() + " eggy ofspring");
                            aviary.removeBudgie();
                        // If alive is it overweight?
                        else if(theBudgie.isObese())
                            System.out.println(theBudgie.getName() + " is obese it needs some exercise");
                            theBudgie.exercise(10);
                        else // Budgie is alive and not overweight
                            System.out.println(theBudgie.toString());
                           // The budgie gets a day older
                           // theBudgie.incAge(); // Moved to above PR
                            // The budgie may lay an egg                   
                            if(theBudgie.layEgg(r))
                                System.out.println(theBudgie.getName() + " has just laid an egg ");
                                System.out.println("The egg has been removed from the cage for artificial incubation \n"
                                                      + "and will be adopted out after hatching");
                else  // No budgie in the cage
                   System.out.println("The cage is empty");
         * Simulate several days without food.
         * @param numDays, the length of the simulation
        public void simulateDays(int numDays)
            for(int i = 0; i < numDays; i++)
                simulateDay(0); // PR
         * Simulate several days with food.
         * @param numDays, the length of the simulation
         * @param amtFeed, the amount of budgie food in grammes
        public void simulateDays(int numDays, int gmsSeed)
            for(int i = 0; i < numDays; i++)
                simulateDay(gmsSeed);
    }This code is supposed to be compatible with this code:
    public Budgie(String name, boolean female) // Added gender PR
            // Initialise instance variables
            age = 0;
            colour = "green"; // Default colour
            canTalk = false;  // Cannot talk yet, can only go "cheep"
                              // Quotes removed PR
            budgiesWords = "cheep";
            weight = 25; // In healthy weight range
            bIsFemale = female; // PR
            water = 10;
            // Record supplied name       
            this.name = name;
         * Teaches a budgie to talk
         * @param phrase - what the budgie can say
        public void teachToTalk(String phrase)
            // Ignore an empty string
            if(phrase != "")
                // Budgie can now talk
                canTalk = true;
                budgiesWords = phrase;
         * Increments a budgie's age by a day
        public void incAge()
            age++;
         * The budgie is dead if it is too old or too fat or starved or too thirsty.
        public boolean isDead()
            return (diedOfOldAge() || diedFromOverFeeding() || isStarved() || diedOfThirst());
         * The budgie is too old if it is older than the budgie's maximum age.
        public boolean diedOfOldAge()
            return (age > MAX_AGE);
         * The budgie is too thirsty if it is has less than 10mls of water.
        public boolean diedOfThirst()
            return (water < MIN_DRINK);
         * The budgie is too heavy to live if it is more than double a
         * budgie's sensible weight limit.
        public boolean diedFromOverFeeding()
            return (weight >= TOO_FAT*2);
         * The budgie is obese if it is more than a budgie's sensible
         *  weight limit.
        public boolean isObese()
            return (weight >= TOO_FAT);
         * The budgie is starved if it is less than a budgie's sensible
         *  minimum weight.
        public boolean isStarved()
            return (weight <= TOO_THIN);
         *  The budgie has been fed.  It will put on weight.
         *  @param gmsOfBirdFeed, the amount of food eaten in grammes
        public void eat(int gmsOfBirdFeed)
            // Convert to gms fat
            double fat = gmsOfBirdFeed/10.0;
            weight = weight + fat;
         *  The budgie has drunk.
         *  @param mlsofwater, the amount of water drunk in mls
        public void drink(int mlsOfWater)
            water = mlsOfWater;
         *  The budgie has done some exercise.  It will lose weight.
         *  @param minutesOfExercise, the time of the exercise
        public void exercise(int minutesOfExercise)
            double weightLoss = minutesOfExercise * 0.1; // For each minute lose 0.1 gms fat      
            weight -= weightLoss;
            System.out.println("Budgie exercising for " + minutesOfExercise + " minutes, has lost " + weightLoss + " grammes in weight." );
        *  The budgie may lay an egg.  Only adults can lay eggs.
        *  @param rnd, a random object
        public boolean layEgg(Random rnd)
           boolean bLaying = false; // default
           // Only hens can lay eggs // PR
           if(bIsFemale)
               int probability = rnd.nextInt(10);
               // Random chance that it will lay
               // Added that cannot lay if last egg laid yesterday PR
               if((probability >= 5) && (age > ADULT_AGE ) && (age - lastEgg != 1))
                    // Can only lay eggs if a grown-up
                    numEggsLaid++;
                    bLaying = true;
                    lastEgg = age; // Laid an egg today PR
           return bLaying;      
         *  The budgie talks - display its words.
        public void talk()
            System.out.println(budgiesWords);
         *  Change the colour of the budgie.
         *  @param newColour, new value of budgie's colour
        public void setColor(String newColour)
            colour = newColour;
         *  Return the colour of the budgie.
         *  @return budgie's colour
        public String getColour()
            return colour;
         *  Output the budgie's details.
         *  @return A string containing all details of the budgie
        public String toString()
            String msg = "Budgie " + name + " ";
            if(canTalk)
                msg += "can talk it says ";
            else
                msg += "can not talk it just makes the sound ";
            msg += "'" + budgiesWords + "'";
            msg += "\n";
            msg += " Its colour is : " + colour;
            msg += "\n Its age is : " + age + " days.";
           return msg;
         *  Return the number of eggs the budgie has laid.
         *  @return eggs laid by budgie
        public int getNumEggsLaid()
            return numEggsLaid;
         *  Return the budgie's age.
         *  @return age of budgie
        public int getAge()
            return age;
         *  Return the budgie's name.
         *  @return name of budgie
        public String getName()
            return name;
         *  Return the budgie's gender.
         *  @return true if budgie is female
        public boolean isFemale()
            return bIsFemale;
    But everytime I try to compile it highlight this bit in the simulator:Budgie theBudgie = aviary.getBudgie();With an error message:
    getBudgie in Aviary cannot be applied to ()
    Im sorry for the long post please help would be most apreciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    NO prob man thank for such a quick response
    import java.util.ArrayList;
    * A Aviary for budgies to live in.
    * A maximum of one budgie can live in aviary
    * @author (Jacqui Whalley)
    *  Modified by Phil Robbins
    * @version (v0.2)
    *  9-3-2006 Fixed bugs from stage 1.
    *           Added stage 2 code
    public class Aviary
        // Instance variables
        private ArrayList budgies; // The budgies that live in the aviary
       // private boolean empty;   // Removed PR
         * Constructor for objects of class aviary.
        public Aviary()
            //empty = true; // removed PR
            budgies = new ArrayList(); // Semi colon added PR 
         *  Add a budgie to the aviary.
         *  @param bird, the budgie to add to the aviary.
        public void addBudgie(Budgie bird)
            // Can only have one budgie
            budgies.add(bird);
         * Remove the budgie - eg if it has died.
        public void removeBudgie(int index)
            if (index <= budgies.size() && index > 0)
                // Can only remove if there is a budgie there
                budgies.remove(index);
            else
                System.out.println("Error");
         * Returns the Aviary's budgie (which my be null).
         * @return The budgie that lives in the Aviary
        public void getBudgie(int index)
            if (index <= budgies.size() && index > 0)
                // Can only remove if there is a budgie there
                System.out.println(budgies.get(index));
            else
                System.out.println("Error");
         * Returns true if the cage is Aviary.
         * @return the emptiness of the Aviary
        public boolean isEmpty()
            //return empty; // Removed PR
            return budgies.size() == 0;
         * List budgies and there details
        public void listBudgieDetails()
            for(int i = 0;i < budgies.size();i++)
                System.out.println(budgies.get(i));
    }

  • On my iCloud account I can see an alternate email ID which can be used to login to my account, this email ID does not belong to me so I need to delete it. Please advice the best possible way as it does. It show any option to delete that ID

    On my iCloud account I can see an alternate email ID which can be used to login to my account, this email ID does not belong to me so I need to delete it. Please advice the best possible way as it does. It show any option to delete that ID

    Do the alternate e-mail address ends with me.com or icloud.com?

  • My phone has been changed under warranty by the apple store in germany. ı need a change document to register the phone in my country again. ımeı numbers of old and new must be in the document.you can send an mail in pdf format as soon as possible please.

    my phone has been changed under warranty by the apple store in germany.
    ı need a change document to register the phone in my country again.
    ımeı numbers of old and new must be in the document.you can send an mail in pdf format
    as soon as possible please.
    your's respectfully.
    new phone serial no:DQ******TC0
    old phone serial no:DN*******T9Y
    Product:
    iPhone 4S
    Serial Number:
    DN*******T9Y
    Service Requested:
    December 3, 2012
    Status:
    Repair Complete
    <Edited by Host>

    No we cannot send it to you because we are users just like you and Apple does not monitor these forums.
    But you can find the IMEI numbers yourself. Read the ENTIRE article:
    http://support.apple.com/kb/HT4061

  • My home button is not very responsive and I have to click it few times to get it to work. What do I need to do to get it fixed?

    My home button is not very responsive and I have to click it few times to get it to work. What do I need to do to get it fixed?

    TROUBLESHOOTING iPhone Hardware
    http://support.apple.com/kb/TS2802
    http://support.apple.com/kb/TS1630
    The Home button is slow to respond
    If the Home button is slow to respond when exiting one application, try another application.
    If the issue exists only in certain applications, try removing and reinstalling those applications. For further assistance in installing and troubleshooting applications see this article
    If the issue continues, turn iPhone off and back on.
    If the issue continues, reset iPhone. Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds or until the Apple logo appears.
    Restore iPhone. Follow the steps the steps in the iPhone Troubleshooting Assistant.

  • HT4061 I lost my Iphone and I need IMEI number, but I have only serial number. Can I get IMEI number through Iphone serial number ? if possible please help and let me know how

    I lost my Iphone and I need IMEI number, but I have only serial number. Can I get IMEI number through Iphone serial number ? if possible please help and let me know how

    If you go to the computer where your sync your phone to and open itunes and then go to edit in the tool bar then preferences then device preferences then devices.. hover the mouse pointer over your device name in the back up lists that appear there and it shows the IMEI

  • Need quick help please!! Fast!

    Here is my code... I know it's long, but it's simple. The only part I'm having trouble with is the very end. You don't really have to know what point of this to help me figure out the problem. Near the very bottom, you'll see the line "double refund = (startcancount/startendcount)*premium;". For some reason, this keeps coming out as zero, even though I run it through the debugger and every single one of the variables has a non-zero value. I cannot figure it out. I tried changing the data type to float to no avail. What is the problem!?
    package isys202p1;
    import javax.swing.JOptionPane;
    public class ISys202P1 {
         public static void main(String[] args) {
              //Initialized variables for storing the string values of the entered names, premium
              String firstname;
              String middlename;
              String lastname;
              String response = null;
              double premium = 0;
              int startyear = 0;
              int startmonth = 0;
              int startday = 0;
              int endyear = 0;
              int endmonth = 0;
              int endday = 0;
              int canyear = 0;
              int canmonth = 0;
              int canday = 0;
              int startendcount = 0;
              int startcancount = 0;
              String ssmonth = null;
              String esmonth = null;
              String csmonth = null;
              //Prompts user for first name and stores it in the string variable firstname
              firstname = JOptionPane.showInputDialog("Please enter your first name:");
              //Prompts user for middle name and stores it in the string variable middlename
              middlename = JOptionPane.showInputDialog("Please enter your middle name");
              //Prompts user for last name and stores it in the string variable lastname
              lastname = JOptionPane.showInputDialog("Please enter your last name:");
              //Prompts the user for a premium amount, without the dollar sign, and assigns to the premium variable
              response = JOptionPane.showInputDialog("Please enter your premium amount: $");
                   premium = Double.parseDouble(response);
              //Prompts the user for the starting date of the policy term (year)
              response = JOptionPane.showInputDialog("Please enter the starting date for the policy term (year)");
                   startyear = Integer.parseInt(response);
              //Prompts the user for the starting date of the policy term (month)
              response = JOptionPane.showInputDialog("Please enter the starting date for the policy term (month)");
                   startmonth = Integer.parseInt(response);
              //Prompts the user for the starting date of the policy term (day)
              response = JOptionPane.showInputDialog("Please enter the starting date for the policy term (day)");
                   startday = Integer.parseInt(response);
              //Prompts the user for the ending date of the policy term (year)     
              response = JOptionPane.showInputDialog("Please enter the ending date for the policy term (year)");
                   endyear = Integer.parseInt(response);
              //Prompts the user for the ending date of the policy term (month)
              response = JOptionPane.showInputDialog("Please enter the ending date for the policy term (month)");
                   endmonth = Integer.parseInt(response);
              //Prompts the user for the ending date of the policy term (day)          
              response = JOptionPane.showInputDialog("Please enter the ending date for the policy term (day)");
                   endday = Integer.parseInt(response);
              //Prompts the user for the effective date of the policy cancellation (year)
              response = JOptionPane.showInputDialog("Please enter the effective date for the policy cancellation (year)");
                   canyear = Integer.parseInt(response);
              //Prompts the user for the effective date of the policy cancellation (month)
              response = JOptionPane.showInputDialog("Please enter the effective date for the policy cancellation (month)");
                   canmonth = Integer.parseInt(response);
              //Prompts the user for the effective date of the policy cancellation (day)
              response = JOptionPane.showInputDialog("Please enter the effective date for the policy cancellation (day)");
                   canday = Integer.parseInt(response);
                   //if statements that account for mid-year starting dates
              if (startmonth==1)
                   startcancount=0+startday;
              if (startmonth==2)
                   startcancount=31+startday;
              if (startmonth==3)
                   startcancount=59+startday;
              if (startmonth==4)
                   startcancount=90+startday;
              if (startmonth==5)
                   startcancount=120+startday;
              if (startmonth==6)
                   startcancount=151+startday;
              if (startmonth==7)
                   startcancount=181+startday;
              if (startmonth==8)
                   startcancount=212+startday;
              if (startmonth==9)
                   startcancount=243+startday;
              if (startmonth==10)
                   startcancount=274+startday;
              if (startmonth==11)
                   startcancount=304+startday;
              if (startmonth==12)
                   startcancount=335+startday;
                   //if statements that account for mid-year ending dates
              if (canmonth==1)
                   startcancount=startcancount+canday;
              if (canmonth==2)
                   startcancount=startcancount+31+canday;
              if (canmonth==3)
                   startcancount=startcancount+59+canday;
              if (canmonth==4)
                   startcancount=startcancount+90+canday;
              if (canmonth==5)
                   startcancount=startcancount+120+canday;
              if (canmonth==6)
                   startcancount=startcancount+151+canday;
              if (canmonth==7)
                   startcancount=startcancount+181+canday;
              if (canmonth==8)
                   startcancount=startcancount+212+canday;
              if (canmonth==9)
                   startcancount=startcancount+243+canday;
              if (canmonth==10)
                   startcancount=startcancount+274+canday;
              if (canmonth==11)
                   startcancount=startcancount+304+canday;
              if (canmonth==12)
                   startcancount=startcancount+335+canday;
                   //if statements that account for mid-year starting dates
              if (startmonth==1)
                   startendcount=0+startday;
              if (startmonth==2)
                   startendcount=31+startday;
              if (startmonth==3)
                   startendcount=59+startday;
              if (startmonth==4)
                   startendcount=90+startday;
              if (startmonth==5)
                   startendcount=120+startday;
              if (startmonth==6)
                   startendcount=151+startday;
              if (startmonth==7)
                   startendcount=181+startday;
              if (startmonth==8)
                   startendcount=212+startday;
              if (startmonth==9)
                   startendcount=243+startday;
              if (startmonth==10)
                   startendcount=274+startday;
              if (startmonth==11)
                   startendcount=304+startday;
              if (startmonth==12)
                   startendcount=335+startday;
              //if statements that account for mid-year ending dates
              if (endmonth==1)
                   startendcount=startendcount+endday;
              if (endmonth==2)
                   startendcount=startendcount+31+endday;
              if (endmonth==3)
                   startendcount=startendcount+59+endday;
              if (endmonth==4)
                   startendcount=startendcount+90+endday;
              if (endmonth==5)
                   startendcount=startendcount+120+endday;
              if (endmonth==6)
                   startendcount=startendcount+151+endday;
              if (endmonth==7)
                   startendcount=startendcount+181+endday;
              if (endmonth==8)
                   startendcount=startendcount+212+endday;
              if (endmonth==9)
                   startendcount=startendcount+243+endday;
              if (endmonth==10)
                   startendcount=startendcount+274+endday;
              if (endmonth==11)
                   startendcount=startendcount+304+endday;
              if (endmonth==12)
                   startendcount=startendcount+335+endday;
              //for loop that counts the days between the beginning and end of the policy
              for (int startcount = startyear; startcount < canyear; startcount++){
                   startcancount = startcancount + 365;
                   if (((startcount%4==0) & (startcount%100!=0)) | ((startcount%400==1) & (startcount%100==0))){
                        startcancount = startcancount + 1;
              for (int startcount = startyear; startcount < endyear; startcount++){
                   startendcount = startendcount + 365;
                   if (((startcount%4==0) & (startcount%100!=0)) | ((startcount%400==1) & (startcount%100==0))){
                        startendcount = startendcount + 1;
              //[Start String Month] Assigns the number for starting month entered to its corresponding month (starting date)
              if (startmonth == 1)
                   ssmonth = "January";
              if (startmonth == 2)
                   ssmonth = "February";
              if (startmonth == 3)
                   ssmonth = "March";
              if (startmonth == 4)
                   ssmonth = "April";
              if (startmonth == 5)
                   ssmonth = "May";
              if (startmonth == 6)
                   ssmonth = "June";
              if (startmonth == 7)
                   ssmonth = "July";
              if (startmonth == 8)
                   ssmonth = "August";
              if (startmonth == 9)
                   ssmonth = "September";
              if (startmonth == 10)
                   ssmonth = "October";
              if (startmonth == 11)
                   ssmonth = "November";
              if (startmonth == 12)
                   ssmonth = "December";
              //[cancellation string month]Assigns the number for ending month entered to its corresponding
              //month (cancellation effective date)
              if (canmonth == 1)
                   csmonth = "January";
              if (canmonth == 2)
                   csmonth = "February";
              if (canmonth == 3)
                   csmonth = "March";
              if (canmonth == 4)
                   csmonth = "April";
              if (canmonth == 5)
                   csmonth = "May";
              if (canmonth == 6)
                   csmonth = "June";
              if (canmonth == 7)
                   csmonth = "July";
              if (canmonth == 8)
                   csmonth = "August";
              if (canmonth == 9)
                   csmonth = "September";
              if (canmonth == 10)
                   csmonth = "October";
              if (canmonth == 11)
                   csmonth = "November";
              if (canmonth == 12)
                   csmonth = "December";
    //Assigns the number for ending month entered to its corresponding month (ending date)
              if (endmonth == 1)
                   esmonth = "January";
              if (endmonth == 2)
                   esmonth = "February";
              if (endmonth == 3)
                   esmonth = "March";
              if (endmonth == 4)
                   esmonth = "April";
              if (endmonth == 5)
                   esmonth = "May";
              if (startmonth == 6)
                   ssmonth = "June";
              if (endmonth == 7)
                   esmonth = "July";
              if (endmonth == 8)
                   esmonth = "August";
              if (endmonth == 9)
                   esmonth = "September";
              if (endmonth == 10)
                   esmonth = "October";
              if (endmonth == 11)
                   esmonth = "November";
              if (endmonth == 12)
                   esmonth = "December";
              double refund = (startcancount/startendcount)*premium;
              //The final output consisting of the users first name, middle name, and last name.
              JOptionPane.showMessageDialog(null, "Name: " + firstname + " " + middlename + " " + lastname + "\n" +
                        "Premium: $" + premium + "\n" + "Date: " + ssmonth + " " + startday + ", " + startyear + "\n" +
                        "End Date: " + esmonth + " " + endday + ", " + endyear + "\n" + "Effective Date: " + csmonth +
                        " " + canday + ", " + canyear + "\n" + "Refund: " + refund);
    }

    DeLorean wrote:
    If I want the program to repeat itself (except for entering the names), how would I do it using a for loop? Could someone edit my code to show me?Why don't you try it yourself?
    If you have tried, but failed to get it working, then you can post back here. Be sure that when asking a question here, the chances in getting helpful answers increase dramatically when you:
    - show what you have already tried;
    - post code using code tags;
    - use a meaningful title for your question;
    - DONT try to hurry those who are able to help you with words like "fast", "asap", "urgent", etc.

  • What do i NEED to go Wireless?  PLEASE HELP

    I have a Powerbook Titanium Ethernet 15" with 550/512/60. I am connected to the internet via a Cable Modem from Adelphia.
    I am clueless.
    So could someone please give me a list of what i need so i can move my powerbook around the house and not be hooked up to the cable modem.
    thanks, Gordon

    Dear Gordon,
    A few points.
    Please don't for 1 minute think I'm trying to be in any way churlish but this query might have got a quicker response in the Titanium PB forum. I only say that because it took me about 20 mins to find the answer I'm about to give and much longer to type as I'm not familiar with the nuances of your hardware
    Having said that, I'm more than happy to try to assist a fellow thespian.
    To get wireless you need;
    a) Some means for your PB to send/receive wireless signals.
    Originally, this would have been an 802.11b (11Mbps)Airport card installed in your machine. This would give you a slow but adequate connection by todays standards. The current main standard is 54g (54Mbps Megabits per second). It is not cost effective, nor a good idea to get an original card. It will be slow and expensive.
    So - You need a compatible card. Apparently, Apple uses or used to use the broadcom chipset to make Airport cards. Consequently a good 54g card based on the broadcom chipset should be plug and play in your card slot and behave just like a native Airport Extreme card (54g), especially if your OSX is up to date.
    This card is the one I think you need therefore is the Sonnet 54 card.OtherWorldComputing has it for $70, but I rcommend shopping around - it doesn't work better if you pay more for it.
    http://eshop.macsales.com/item/Sonnet%20Technology/G54CB/
    $55 here
    http://www.provantage.com/sonnet-g54-cb~7SONT038.htm
    b) You need something for the Airport extreme card to talk to - this is a wireless router - again 54g.
    This bit is easy - if you have a cable modem, it will have an ethernet connection, so all you need is the router.
    There are many options, but you can get them reasonably cheaply - I picked mine up for $70 with $60 in rebates from circuit city. - This netgear one is on sale at $59 with $30 of rebates and you can probably pick it up from the store;
    http://www.circuitcity.com/ssm/Netgear-Wireless-Router-WGR614-/sem/rpsm/oid/7288 8/catOid/-12980/rpem/ccd/productDetail.do
    (If the link doesn't work - go to circuit city and type 54g in the search box)
    An alternative is a Belkin f5d72304
    There are many alternatives, so if you can find a good price on a 54g router (with at least 4 ports) take it up.
    Once you get the router - take a look at the instructions, but essentially what you will do is plug the internet to the router and then configure it to do2 things
    a) Connect itself to the internet through the cable modem.
    b) Allow the Powerbook to connect to it wirelessly (and route Powerbook traffic to/from the internet). So the router sits as if at the junction of 2 circles the powerbook and the internet, each of which only touches the router, not the other circle.
    You will configure the router by connecting the router with a cable to the PowerBook and connecting to it from your web browser. Once you type in the address of the router you will get the config page where you can change settings.
    You will need to enter the username and password for the WAN(Internet Cable Account).
    You will also need to enable wireless networking, create a name for your network and then enable wireless security so that any Tom Dick or Harriet can't just come and get onto your network.I would recommend WPA Personal. You will need a password or phrase - I would recommend a mix of letters and numbers that are not immediately obvious - e.g HenryIrving
    1838 or some such. Also disable ssid (this disables the broadcasting of the network name - to connect you type in the name of the network and the password instead of having the name presented to you). These are basic and essential security precautions.
    Lastly you will then connect your Sonnett card - it should be recognised immediately as an airport card - you will get the "fan" icon on the top of the toolbar. Click that and select "other" for network - type in the network name, type of security (WPA Personal) and the password and you should get a connection. You can make this the default network from the system preferences.
    That's all. Phew! If you do all that and eat your greens I'll tell you more about security. Spelling mistakes are gratis.
    Best of luck.
    PS - Whilst you can use almost any 54g router, do not be tempted by a cheaper card for the PowerBook - they may not work properly.

  • Need to print a pdf on button click

    Hi,
    I need to do something similiar to what the code is doing below, except I need to create a button that when clicked will print a pdf. Not sure if it is better(easier) to add the pdf to my library and print that way or just upload the pdf to the server and print that.
    anyway here is the code I have sofar. Not sure exavtly what I need to change/modify.
    package com.wiley.as3bible.printing {
        import flash.display.Sprite;
        import flash.text.TextField;
        import flash.text.TextFieldAutoSize;
        import flash.net.URLLoader;
        import flash.net.URLRequest;
        import flash.events.Event;
        import flash.printing.PrintJob;
        import flash.display.SimpleButton;
        public class Printing extends Sprite {
            private var _printableContent:Sprite;
            private var _textField:TextField;
            private var _loader:URLLoader;
            public function Printing() {
                //Load the text from a text file
                _loader = new URLLoader();
                _loader.load(new URLRequest("http://www.rightactionscript.com/samplefiles/lorem_ipsum.txt"));
                _loader.addEventListener(Event.COMPLETE, completeHandler);
                //Create a multiline text field that autosizes.
                _textField = new TextField();
                _textField.width = 400;
                _textField.multiline = true;
                _textField.wordWrap = true;
                _textField.autoSize = TextFieldAutoSize.LEFT;
                //Create a sprite container for the text field,
                //and add the text field to it.
                _printableContent = new Sprite();
                addChild(_printableContent);
                _printableContent.addChild(_textField);
            //When the text loads add it to the text field and  then print the text
            private function completeHandler(event:Event):void {
                _textField.text = _loader.data;
                var printJob:PrintJob = new PrintJob();
                if (printJob.start()) {
                    printJob.addPage(_printableContent);
                    printJob.send();
    I know the button code should be something like:
    Printbtn.addEventListener(MouseEvent.CLICK,startPrint);
    thanks in advance for any help.

    I see what you are saying. I think I am going about this the wrong way. Really all I need is to upload the pdf to the server, since it is already created, and then in AS3 create a link that will be clickable and will download the pdf, in which case they can just print the download. I know how to do this in HTML, but not AS. Basically, it needs to be the equivalent of <a href="PathtoPDF_File">Click to download file</a>.
    also I have a message window already coded, and within this message window is where I need to add the link:
    package exam {
        import flash.display.*;
        import flash.events.*;
        import flash.text.*;
        //this class is used to create a "pop-up" window to ask users to confirm they want to exit (after clicking
        //exit exam button), and then to report back on how the submission went, and offer to resend if necessary
        public class MessageWindow extends Sprite {
            //VARIABLES
            private var feedback:TextField;
            private var confirm:YesBtn;
            private var quit:CancelBtn;
            private var resend:ResendBtn;
            public function MessageWindow (type:String, unanswered:Number=0, score:Number=0) {
                var bg:Shape = new Shape();
                bg.graphics.beginFill(0xffffff,1);
                bg.graphics.lineStyle(3,0x6fc9f4);
                bg.graphics.lineTo(400,0);
                bg.graphics.lineTo(400,250);
                bg.graphics.lineTo(0,250);
                bg.graphics.lineTo(0,0);
                bg.graphics.endFill();
                addChild(bg);
                var format:TextFormat = new TextFormat();
                format.font = "Verdana";
                format.size = "22";
                format.bold = false;
                format.color = 0x464646;
                feedback = new TextField();
                feedback.width = 300;
                feedback.x = 50;
                feedback.y = 15;
                feedback.wordWrap = true;
                feedback.autoSize = TextFieldAutoSize.LEFT;
                feedback.mouseEnabled = false;
                if (type == "confirm") {
                    feedback.text = "Are you sure you want to exit the exam?";
                    if (unanswered > 0) {
                        feedback.appendText("  You still have "+unanswered+" unanswered questions.");
                    feedback.setTextFormat(format);
                    addChild(feedback);
                    quit = new CancelBtn();
                    quit.setType("cancel");
                    quit.x = 25;
                    quit.y = this.height - (quit.height + 15);
                    addChild(quit);
                    confirm = new YesBtn();
                    confirm.setType("confirm");
                    confirm.y = quit.y;
                    confirm.x = this.width - (confirm.width + 25);
                    addChild(confirm);
                }else if (type == "success") {
                    feedback.text = "Congrats on finishing the exam!\r\nYour score is "+Math.round(score*100)+"%\r\nYou may now close the exam window.";
                    feedback.setTextFormat(format);
                    addChild(feedback);
                }else {
                    if (type == "databaseError") {
                        feedback.text = "Errors occured while saving your data.  Please retry.";
                    }else if (type == "networkError") {
                        feedback.text = "Could not contact the server.  Please make sure you are connected to the internet and try again.";
                    feedback.setTextFormat(format);
                    addChild(feedback);
                    resend = new ResendBtn();
                    resend.setType("resend");
                    resend.x = 200-(resend.width/2);
                    resend.y = this.height - (resend.height + 15);
                    addChild(resend);
    in the else if(type =="success") part in the feedback.text ="" is where I need the link to go.

  • Pop/clicking sound when in 5.1 mode under Vista 32bit using the latest 2_18_0004 drive

    I'm using S750 speaker system, very noticeable!!!!
    I tried 7. mode, still pop/clicking sound!!!!! But no in stereo mode!!!!
    It's long time for users that reported this issue, after Creative Labs released so many driver versions, this issue still not been
    corrected, it's really SHAME!!!!!
    Hope this get worked out in next release!!!!!!
    Hope this will never be heard in X-Fi 2 !!!!!!

    X-FI 2 is the same failure as X-FI IN drivers hardware xfi is great, so if you buy the new x-fi2 there will be the same crappy drivers as you use now.
    Anyway, Please post spec, Because this is a hard problem to solve many things can make the Sound to crackle.
    PSU = To low Watts for a system can make the soundcard crackle,
    =2, sharing power with other devices like hard drivers floppy drivers etc.
    = Not goot psu enough, bad quality psu can make this beli've me i had the same problem
    = Quality cables to the soundcard, use a different rail if that is possible.
    Bios = check for bios updates. even if there is none information about creative, sometimes it can help BUT READ INSTRUCTIONS on how to do it and what the stakes are if you do it wrong, and read the forums about the new bios, not allways new bios is good. IF you are a Asus user you should know why.
    GFX = Place the soundcard (PCI) away from the grphics card, if you got ex 4pci slots and gfx pci express use the last slot for soundcard, if that dosnt work try 3,2, etc. but futher away from the graphics card should prevent EMI
    X-FI= check the power slot in soundcard check for bendings etc.
    I had this issue fixed it with new psu, had no idea first but after my ASPIRE TRIO 520w cought fire and i changed it to Antec 620w it allmost dissapeard, then i checked the power slot in X-FI and it was bent outwards, after carefully bending it back the crackle dissapread.
    Now im using Cooler Master Real Power 850emba and using a different rail for the soundcard.
    Hope you solve it, best regards Commander

  • I need help organising my iPhoto please

    Can someone help me with my iPhoto.
    I have 14,400 photos in my iPhoto library.
    I have albums which contain the photos from the library,as I assumed once you created an album it would eliminate them from the library.
    Consequently I have lots of albums with what I thought was trying to was create some order ...but instead it's left me with photos everywhere.
    To create more dilema,I lost my hard-drive a few years ago and had not backed up any photos(5 years worth)....luckily for me my brother had backed up some and put them back into iPhoto for me but for some reason I now have 3 and 4 of the same photo.
    To make it more annoying the photos whilst there may be 3 of the same they are all different pixel sizes?Not sure how this happened?
    I've also got 3,300 photos in trash that I'm too scared to delete incase I don't have that exact photo in the library.
    Is there any easy way to sort this out,because the problem is getting worse as I try to create order?
    Is it possible to organize them all into folders that way I can delete them from the library and trash ?
    Thanks in advance

    leonieDF Hamburg, Germany
    Re: I need help organising my iPhoto please 
    Apr 6, 2013 9:07 AM (in response to flyinghostie)
    Would you mind to clarify a few points, please?
    I have 14,400 photos in my iPhoto library.
    o.k.
    I have albums which contain the photos from the library,as I assumed once you created an album it would eliminate them from the library.
    Consequently I have lots of albums with what I thought was trying to was create some order ...but instead it's left me with photos everywhere.
    That part is not clear to me.
    What kind of albums are you talking about? Do you mean iPhoto albums as seen in the "Albums" section of the source list?
    Yes the albums are contained in the Albums section
    as I assumed once you created an album it would eliminate them from the library.
    Albums will index and organize the photos in your library, but not store them and not remove them from the library. All photos need to be contained in an event. When you are referring to "library", are you referring to your iPhoto library or to the "Library" section in the source list in the iPhoto window?
    Yes the library I'm referring to is the Iphoto library.I do have Events also...will organising Events take them out of my Libraray?
    .but instead it's left me with photos everywhere.
    Perhaps you are confused by iPhoto showing you different views of the same photos.
    The top part of the source list "Library" gives you access to all your photos based on the events, as list of all "Photos", organized by the Faces, or organized by the Places. You can access the same photos in four different ways.
    The "Recent" section gives you access based on the date; but again you will see the very same photos, only grouped differently.
    These are the access paths predefined by iPhoto. The "Albums" section and "Projects" section will give you additional custom structures to retrieve your photos, the access structure you define yourself. But it will not remove the default organisation created by iPhoto, only supplement it with your own custom structures.
    To make it more annoying the photos whilst there may be 3 of the same they are all different pixel sizes?Not sure how this happened?
    Now, this is probably caused by the way you reimported your photos into your new library. When you take the folders from an iPhoto library and simply import all folders, you will import each photo in three different sizes, for the library contains thumbnails, previews, and full size original image files and versions.
    Would it be possible for you to repeat the import step from the backup your brother has made for you? It might be easier to sort your photos in the finder by size and only to import the full size image files, then to do that manually. What is the backup like, that your brother has made? Is it an iPhoto library or a folder containing photos and folders of your old iPhoto library?
    I'm not sure how my brother saved the photos as it's been years since he re imported them for me,I'd rather do this myself than trouble him again.I've thought maybe I can set up a folder on my desktop and drag all the main photos from the library into there,then delete iPhoto and start all over again?
    But before you proceed with deleting photos that you are not sure about, create a backup of the library, so you will be safe, if you accidentally delete too much.
    Regards
    Léonie

  • Replacement Needed. This iphone is not able to complete the activation process and needs to be replaced. Please visit your nearest apple store or authorized service center.

    Probably will never ever think of buying a locked phone from AT&T cause its one of the worst system integrations ever that these companies could think of.
    The entire problem started when I put in a request with at&t to unlock my iphone 4s (ios7) which did get approved. I performed the entire instructions they asked me to do, which is to backup and restore. After doing those instructions my iphone gave me an error message below
    The SIM card inserted in this iPhone does not appear to be supported.
    The SIM card that you currently installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. Please contact Apple for more information.
    Basically saying that at&t hasn't still unlocked the iphone which a really helpful apple executive was able to confirm. I initiated another unlock process from at&t in order to unlock the iphone, just to be sure that its not something wrong from my end. The nice at&t lady stayed on chat with me to unlock the iphone step my step while I was calling the apple tech too. And the apple tech confirmed again that the iphone is locked to at&t.
    Now, just a few minutes ago I tried another restore to see if any progress is being made and to my surprise I got an error message saying
    Replacement Needed. This iphone is not able to complete the activation process and needs to be replaced. Please visit your nearest apple store or authorized service center.
    I feel like I am just going around these two different "money hogger" companies which set certain rules and regulations to screw a regular phone buyer. I purchased this iphone in USA and trying to unlock in India, is it really this hard to simply unlock a device.
    For now I am going to try to call a apple office in india (apprently we don't have very many out here) and see if they can help me. But any other assistance regarding unlocking an iphone 4s would be helpful. I have however, tried checking IMEI.info, called up apple, talked to at&t (which always say go talk to apple) I do have a case number from apple as well in case an apple executive reads this discussion forum (case number: 566383594)
    Thanks

    You got a confirmation from AT&amp;T that it was authorized. Is this correct? - Yes i did get an email authorization on the 21st.
    Then you connected the phone to a computer with the latest version of iTunes installed. You clicked on the phone's name in iTunes, then clicked "Backup Now". - Yes
    When that finished you clicked "Restore iPhone" (NOT "Restore Backup") - Yes
    Are you with me so far? - Yes.
    And @ Varjak is right that after the 3rd restore I get the replacement error. 
    Plus I have NEVER jailbroken the iPhone. To give you another update, I spoke to a really nice apple tech in India who was atleast able to get me out of the replacement error by doing a recovery mode option. However, the lastest restore still gives me the same error
    The SIM card inserted in this iPhone does not appear to be supported.
    The SIM card that you currently installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. Please contact Apple for more information.
    Message was edited by: jabgars

Maybe you are looking for