.save problem, need help as soon as possible !

function dataGrabbed(event:Event):void
var dataText = input_txt.text
saver.addEventListener(Event.COMPLETE, dataSaved);
saver.save("saver.php","data.xml",dataText);
the above code is a code I am trying to use, but dataText as you can se is just a var, how do I tell ActionScript3 to put dataText into dataXML.options.info.uid ?
saver.php content:
<?php
$content = $_POST['content'];
$file = $_POST['fileName'];
$content = stripslashes($content);
$writeFile = fopen($file, "w");
if(fwrite($writeFile, $content))
  echo $content;
else
  echo "Error writing to file";
fclose($writeFile);
?>

use:
var urlR:URLRequest = new URLRequest("saver.php");
var ldr:URLLoader= new URLLoader();
ldr.dataFormat = URLLoaderDataFormat.VARIABLES;
var urlV:URLVariables = new URLVariables();
urlV.content = input_txt.text;
urlV.fileName = "data.xml";
urlR.data = urlV;
urlR.method = URLRequestMethod.POST;
ldr.addEventListener(Event.COMPLETE, completeF);
ldr.addEventListener(IOErrorEvent.IO_ERROR, IOErrorF);
ldr.load(urlR);
function completeF(e:Event):void {
function IOErrorF(e:IOErrorEvent):void {

Similar Messages

  • HT5622 Hey Hi ! I brought iPhone 5 in Kuwait and now I'm in India now.I noticed my FaceTime option is missing. No option no settings and no data related to FaceTime . I'm very much worried about it. Need help as soon as possible.

    Hey Hi ! I brought iPhone 5 in Kuwait and now I'm in India now.I noticed my FaceTime option is missing. No option no settings and no data related to FaceTime . I'm very much worried about it. Need help as soon as possible.

    Someone could have stolen it in Kuwait...happens all the time .
    Seriously...FaceTime is banned there...there is no way to add it back to your phone...if you wanted FaceTime, you should not have purchased your phone there.
    BTW: You don't have any warranty or support for this phone in India.
    You live & you learn

  • BW Archiving- Need help as soon as possible

    Hi,
    Can Archiving on ODS be implemented using an ABAP program? If the data is loaded on to flat files and if it is required to reload it back to ODS is ABAP a better choice. If any one has worked on this issue earlier please provide me the information as soon as possible. Any input on this issue will be of great help.
    Thanks,
    SP

    Hi sudheer,
    I have gone through few of your requests to SDN network . and found out thta you have worked on  "sap bw archiving ". So, I need a small help from you . need to clear out some of my doubts with sap bw archiving issues . So could you please send me your e-mail id . so that i can be in contact with you . As i am new to SDN .
    Thanking you in advance . I would appreciate your help .
    or Anyone who have experience with "SAP  BW archiving " could you please send me your mail id . Thanks for your help .
    Cheers,
    shailu.

  • 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));
    }

  • WLAN problem, please help as soon as possible!

    I have a problem with my new nokia n8. i was going to connect my phone to my home network and enter the wlan code. i entered wrong code and i can't change it. please help! i have tried to restart the phone, looking through the menues, and even reset the phone, nothing worked, HELP ME!!!!!
    Solved!
    Go to Solution.

    Check if you find this helpful...

  • Wanted Main window only on Task bar ...Need help as soon as possible

    Hello All,
    We are creating one application.
    We have main window(JFrame) with four subwindows.
    By clicking buttons on main window the subwindows will be opened.
    By using Iconified method we are able to minimise all the subwindows when main window is minimised.
    But on the task bar all the windows are showed.
    But we want to show main window only on the task bar while minimising
    That means all the sub windows should come under main window.
    Will Deiconified satifies this condition while maximisation.
    Need some ones help.
    Thank You All.
    Rajiv.V

    Use show() and hide() on your subwindows instead of iconifying and deiconifying them. Minimizing a window should produce exactly the behavior you're seeing. Using the right tool will get you the right result.

  • I need help as soon as possible

    Can anyone please help me and explain how can I do this white effect on dark background? Can I do this in Illustrator or I must use Photoshop?
    Thank you.

    1.     Use a black rectangle to make your black background.
    2.     Create your mountain shape using the pen tool.
    3.     Make a ellipse in the shape of your white glow. Set its stacking order to be behind your mountain, but in front of your background (or use different layers).
    4     Set the fill of your ellipse to be a radial gradient from white to black.
    5.    Select your ellipse and go to Effect > Texture > Grain. Play with the sliders until you achieve the desired effect. You may need to bounce back and forth between your gradient settings and the texture settings to get it right.
    Tip* You can access the settings of the texture effect again after you apply them by going to your appearance palette and selecting it.

  • A emergent problem, please help as soon as possible!!!!

    I have a list, and I want to add it to my GUI JTextArea. could you
    the list:
    for (int i = 0; i < goods.length; i++)
    if (goods.getName().length() >= 8)
    System.out.println("\t\t" + goods[i].getName() + "\t" + goods[i].getQuantity() + "\t" + goods[i].getSellPrice() + "\t" + goods[i].getBuyPrice());
    else
    System.out.println("\t\t" + goods[i].getName() + "\t\t" + goods[i].getQuantity() + "\t" + goods[i].getSellPrice() + "\t" + goods[i].getBuyPrice());
    this loop will print a list, now I need to put this list in my JTextArea, what method should I use to do it.
    Thank you very much

    you should have a JTextArea on your GUI I suppose?
    Are you using one class for your program?
    private JTextArea txt = new JTextArea();
    for (int i = 0; i < goods.length; i++) {
      if (goods.getName().length() > = 8) {
        System.out.println("stuff");
        JTextArea.append("stuff");
      else {
        System.out.println("other stuff");
        JTextArea.append("other stuff");
    }correct me if I'm wrong but I don't think this is what you are looking for.
    Please post your code or send the .java file(s) to [email protected]
    Maybe then, I'll understand.

  • Rendering a composition with bicubic interpolation (I NEED HELP AS SOON AS POSSIBLE!!!!!) thanks!

    So I have this composition that I want to render. Some of the layers in that composition has bicubic interpolation enabled. When I rendered that composition, the layers with bicubic interpolation enabled went back to default, seen in the image file attached.
    For more information, I'm importing this into a premiere which I will then render again for YouTube. Would this happen again when I render from adobe premiere?

    The layers highlighted are the ones with bicubic interpolation enabled. It looks fine in the preview window and in premiere, since this whole after effects comp is a dynamicly linked comp between AE and Premiere. The problem is, when I render this comp in After Effects, those highlighted layers become blurry. Also, if you're wondering why I'm rendering this comp even though it's dynamically linked with premiere, it's because I do it to reduce time in rendering when I color correct/grade in premiere.

  • I need help as soon as possible. statement wont execute the if statement

    I can not seen to make my "if statement work" can someone guide me in the right direction.
    import java.util.Scanner;
    import java.lang.Math;
    public class bm
    * main
    public static void main(String[] args) throws Exception
    Scanner scanner1,scanner2,scanner3;
    String sGradeType,sGrade="",sUGrade;
    char cGrade;
    double dGrade;
    long drGrade;
    int iGrade=0;
    System.out.println("Type of Entry (Chars(C)/Digits(D)");
    scanner1 = new Scanner(System.in);
    scanner2 = new Scanner(System.in);
    sGradeType = scanner1.next();
    sGradeType = "D";
    if (sGradeType == "D")
    System.out.println("Enter Grade number");
    scanner2 = new Scanner(System.in);
    dGrade = scanner2.nextDouble();
    drGrade = Math.round(dGrade);
    iGrade = (int)dGrade;
    switch (iGrade)
    case 75 :
    sGrade = "A" ;
    break ;
    case 60 :
    sGrade = "B";
    break ;
    case 50 :
    sGrade = "C";
    break ;
    case 40 :
    sGrade = "D";
    break ;
    default :
    System.out.print("illegal Grade !") ;
    System.out.printf("Grade Value, %8.3f. Grade %s", dGrade, sGrade);
    } else if (sGradeType == "C")
    System.out.println("Enter Grade Letter");
    scanner3 = new Scanner(System.in);
    sGrade = scanner3.next();
    sUGrade = sGrade.toUpperCase();
    cGrade = sUGrade.charAt(0);
    switch (cGrade)
    case 'A' :
    iGrade = 75 ;
    break ;
    case 'B' :
    iGrade = 60;
    break ;
    case 'C' :
    iGrade = 50;
    break ;
    case 'D' :
    iGrade = 40;
    break ;
    default :
    System.out.print("illegal Grade !") ;
    System.out.printf("Grade Value, %d, Grade %s", iGrade, sGrade);
    } // end of method main
    }

    Oops! Hit the wrong button.
    OK.
    First up - welcome to the Sun forums.
    A few points.
    >
    I can not seen to make my "if statement work" can someone guide me in the right direction.>1) Maybe the if statement is just a little tired. Give it a good night's rest and it will probably do twice the work tomorrow.
    Or to put that a less funny way..
    Please describe what it was supposed to do, why you thought it would do that, and what it actually did.
    2) Which 'if' statement? There are two if statements in that code.
    3) String comparison should not be done using '==', instead use string1.equals(string2)
    4) Please use the code formatting tags when posting code, and indent code using the common conventions.
    This is what I mean..
    import java.util.Scanner;
    import java.lang.Math;
    public class bm
    * main
         public static void main(String[] args) throws Exception
              Scanner scanner1,scanner2,scanner3;
              String sGradeType,sGrade="",sUGrade;
              char cGrade;
              double dGrade;
              long drGrade;
              int iGrade=0;
              System.out.println("Type of Entry (Chars(C)/Digits(D)");
              scanner1 = new Scanner(System.in);
              scanner2 = new Scanner(System.in);
              sGradeType = scanner1.next();
              sGradeType = "D";
              if (sGradeType == "D")
                   System.out.println("Enter Grade number");
                   scanner2 = new Scanner(System.in);
                   dGrade = scanner2.nextDouble();
                   drGrade = Math.round(dGrade);
                   iGrade = (int)dGrade;
                   switch (iGrade)
                        case 75 :
                             sGrade = "A" ;
                             break ;
                        case 60 :
                             sGrade = "B";
                             break ;
                        case 50 :
                             sGrade = "C";
                             break ;
                        case 40 :
                             sGrade = "D";
                             break ;
                        default :
                             System.out.print("illegal Grade !") ;
                   System.out.printf("Grade Value, %8.3f. Grade %s", dGrade, sGrade);
              } else if (sGradeType == "C")
                   System.out.println("Enter Grade Letter");
                   scanner3 = new Scanner(System.in);
                   sGrade = scanner3.next();
                   sUGrade = sGrade.toUpperCase();
                   cGrade = sUGrade.charAt(0);
                   switch (cGrade)
                        case 'A' :
                             iGrade = 75 ;
                             break ;
                        case 'B' :
                             iGrade = 60;
                             break ;
                        case 'C' :
                             iGrade = 50;
                             break ;
                        case 'D' :
                             iGrade = 40;
                             break ;
                        default :
                             System.out.print("illegal Grade !") ;
                   System.out.printf("Grade Value, %d, Grade %s", iGrade, sGrade);
         } // end of method main
    } Edited by: AndrewThompson64 on Apr 12, 2009 10:47 PM

  • NEED HELP AS SOON AS POSSIBLE!

    my computer crashed just recently and i got my account back for itunes, but my library is empty. so i plugged my ipod in to put my songs from my ipod to my library, but it wont work. i went to my account page and it says "one machine is authorized to play music purchased with this account". how do i authorize another computer to play music?

    With iTunes open, look at the very top of the screen, just a bit to the left of center.

  • How to download a .txt file correctly. Please help as soon as possible!

    Hi everybody,
    I need to implement download that prompts the user to save a txt file.
    If I use "attachment" in response.setHeader, my IE 5.50 crashes after downloading 4 to 6 files consecutively.
    I tried to change the response.setHeader to "inline" and the response.setContentType to "application/zip" or "application/UNKNOWN", and although it works in IE 5.50, my IE 5.00 never prompts asking to save the file, it always opend the file into the browser window, and I need a prompt.
    I saw many questions related with this problem in this forum, but none that answered accurately to this problem.
    Please help as soon as possible, I dont have much time to do this.
    Thank you very much.

    Thank you gypsy617 for your reply, but it still does not work!
    I made all the changes to
    1)res.setContentType("application/x-download");
    2)res.setHeader("Content-Disposition", "attachment; filename=" + filename);
    3)OutputStream out = res.getOutputStream();
    4)returnFile(filename, out);
    5) and i sent the file content as bytes
    But the real problem is regarding the "attachment" option !!!
    In my application, in the same page, there are a lot of links that users can download, each one a link that calls a action. It works well for the first downloaded file, for the second, ..., and then, when we try to download the file number 4 or 5, IE says that there is a problem and it must close (and it asks us to send a report - something like "Exception Information Code:0xc0000005 Flags:0x00000000 Record:0x0000000000000000 Address:0x0000000077a7710a").
    I know that the problem is the "attachment" because if I choose "inline", IE never crashes. But i really need a Save As dialog, the txt files cannot be openned into the browser window, so i cant use inline.
    Any idea?
    Thank you.

  • I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

  • Hi Rstor work for the iPhone 5 remains 4 hours Standby Please please help as soon as possible and thank you

    Hi Rstor work for the iPhone 5 remains 4 hours Standby Please please help as soon as possible and thank you

    These are user-to-user forums, you are not talking to Apple here - I've asked the hosts to remove your phone number from your post.
    You can contact iTunes support via email via this page and ask them why the message is appearing : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Can vmware run on Boot Camp?Please Help as soon as possible

    I recently installed vista ultimate through vmware, but is it possible in any way to boot this vista OS I installed through vmware fusion through boot camp?
    Please help as soon as someone finds a certain answer.
    Thanks

    Running Windows (Vista or XP) is somewhat slower in virtualization than in BootCamp. If this is an important issue for you - and particularly if you are going to be running programs that benefit from fast screen updates - then you want BootCamp. If you need BootCamp then install it and afterwards install VMWare Fusion and use the BootCamp installation rather than a virtualized disk.
    If you are satisfied with the performance of virtualization there is no benefit from having BootCamp installed in terms of running VMWare. This is a disadvantage though - you have to shut down, you cannot save an instance, at least with version 1. I haven't downloaded version 2 to see if this has changed. It is much faster to resume an instance than to restart Windows and then your applications.

Maybe you are looking for

  • ViewCriteriaRow attribute to check for null or not null

    I Want to apply a view criteria to check for null or not null on a column , i see examples on how to set for value like vcRow.setAttribute("Sal", "> 2500")but i need to check for Sal is null or not null , tried vcRow.setAttribute("Sal", null) and it

  • Flash Player 11.8.800.94  Critical Vulnerability

    Greetings. To my horror I just discovered on our webpages, with Plash Player enabled in the latest versions of IE and Firefox that at our commercial website (supremefulvic.com) advertising links are randomly being added to words on our webpage!!!! Th

  • Handling Special characters in call to apex_util.download_print_document

    I am developing some custom reports that I need as PDFs. My client does not have BI Publisher so I am doing some custom xsl to generate the reports. I test as I develop by using a simple web page that POSTs to the apex_fop.jsp. Then I also test by sa

  • Why can I no longer drag a .eps file from finder into a slide to embed the image?

    I have always been able to embed a .eps file into a Keynote presentation by dragging the file from Finder onto a slide. This no longer seems to work in Keynote 6.1 in Maverick 10.9.1

  • Lightroom Exposure Control

    Can I use LRs exposure control slider for the same function as it is used in my camera? I'd like to get additional shots but only have a -3, 0 and a +3 on the camera. I'm doing some photos in High Definition Imaging and want to increase the number if