Sending php variables to Flash Builder

Hi guys,
I have made a form which when sent to a Mysql server adds a table to a database.
Here is the code that I use in Flash Builder:
<mx:HTTPService id="srv" url="http://mysite.com/addTeam.php" method="POST">
<mx:request>
<teamName>{teamName.text}</teamName>
<city>{city.text}</city>
</mx:request>
</mx:HTTPService>
...<mx:Form x="25" y="10">
<mx:FormHeading label="Add a team"/>
<mx:FormItem label="Team name">
<s:TextInput id="teamName"/>
</mx:FormItem>
<mx:FormItem label="City">
<s:TextInput id="city"/>
</mx:FormItem>
<mx:FormItem>
<s:Button label="Add" click="srv.send()"/>
</mx:FormItem>
And here is my addTeam.php file:
<?php
  $teamName = $_POST['teamName'];
  $city = $_POST['city'];
  $addteam = $teamName ." ". $city;
  $connection = mysqli_connect("host", "username", "password", "db") or die(mysqli_connect_error());
  mysqli_query($connection, "SET CHARACTER SET utf8");  //the added table will be in bulgarian language
  $sql = "CREATE TABLE `$addteam`
  FirstName varchar(20),
  SurName varchar(20),
  LastName varchar(20),
  position varchar(20),
  price int
  mysqli_query($connection, $sql) or die ("Query failed: " . mysqli_error($connection));
?>
My question is: How can I return some text to Flash Builder if the query was successful or failed (like "echo") so that the user (admin in this case) knows what is going on and not just clicking the add button and having to go to phpmyadmin to see if the table has been created or not?

You have this declared
<mx:HTTPService 
id="srv" url="http://mysite.com/addTeam.php" method="POST">
just add
result="yourResultHandler()"/>
then create the function that would handle the result.
<mx:HTTPService 
id="srv" url="http://mysite.com/addTeam.php" method="POST" result="yourResultHandler(event)">

Similar Messages

  • PHP Connection in Flash Builder 4

    Hi
    Sorry if this is in the wrong place. I could see nowhere else to ask this question.
    I am very, very new to Flash Builder (in fact, I am following a tutorial on building a data-centric application using Flash catalyst CS5 and Flash Builder 4).
    The problem I am having is that I cannot seem to validate the data connection in Flash Builder 4.
    For my project, I click "Connect to Data/Service" then select PHP. I select Flex Server and change the "Application Server Type" to PHP.
    The page I then get asks for a Web Root and Root URL. This is where I'm having problems. No matter what I type in these boxes, when clicking the "Validate Configuration", I get the error of "Cannot access the web server".
    I have Apache and PHP installed on this Windows 7 64-bit machine.
    The Web root folder for my site is actaully held on my D drive, so web root reads.. "D:\Web Files\Site".
    The URL for this local site is http://site.local
    I can browse to http://site.local in my browser and all is well. My site shows. I can even see this fine in Flash Builder's Internal web browser.
    I have tried moving the web root folder inside the default apache root htdocs folder, but get the same problem. I have even changed the permissions on all folders to allow full control, but this doesn't help.
    I really am starting to tear my hair out now. Can someone please help me? Am I doing something obviously wrong?
    Many Thanks

    Did you install apache / php / (optionally mysql) separately or in a bundle. I would suggest using xampp bundle, because it configures everything correctly along with installing a few helpful tools like phpmyadmin, etc. Great fast setup for testing purposes. Anyway... about the URL: I think the url you should be using is something like http://localhost/yourprojectfolder/...
    Presuming you have set up a project... and selected the option PHP at application server type you would then input (in my case, using the default xampp setup):
    Web root: C:\xampp\htdocs
    Root url: http://localhost
    Output folder: C:\xampp\htdocs\<projectname_here>-debug
    The url you d input in the browser to navigate to your project would then be: http://localhost/<projectname_here>-debug
    (no index.html at the end, provided your server is setup to serve this file automatically if it exists)
    Hope this helps!

  • Please help!!! generate sample php service in flash builder 4.5

    Hi all complete noob here. I have gone trough several tutorials and this keeps popping up.
    On most of these tutorials after clicking new data service and selecting PHP the tutorials have a link generate sample php.
    I am using flash builder 4.5 for php premium and I don’t have that link. Was this link possibly moved? I really need this functionality please can someone help me?

    Hi Anju
    no wasnt what I was looking for but did find it after clicking all the buttons in the UI.
    For other users it is located on the Data/Service tab. on the right hand side is a little triangle pointing down. click on it and will have connection options. Select connect to PHP. Not sure why its not on the other tab.
    But thank you for the reply

  • Generate sample php service in flash builder 4.5.

    Hi all complete noob here. I have gone trough several tutorials and this keeps popping up.
    On most of these tutorials after clicking new data service and selecting PHP the tutorials have a link generate sample php.
    I am using flash builder 4.5 for php premium and I don’t have that link. Was this link possibly moved?
    I really need this functionality please can someone help me?

    Same here with Flash Builder 4.6 Premium for PHP, I see no way to generate a sample service!

  • PHP Profiler in Flash Builder 4.5

    Hi there, I'm using Flash Builder 4.5 for PHP Premium. I noticed on the features page, http://www.adobe.com/products/flash-builder-php/features._sl_id-contentfilter_sl_featuredi splaytypes_sl_top.html, it advertises "PHP profiling". I'd like to try this feature but I can't find any information on how to initiate a PHP profiling session. Any pointers would be greatly apreciated, I'm sure it's simple once you know how.
    Thanks

    Hope this page helps  http://files.zend.com/help/Zend-Studio/profiling.htm

  • Sending multiple variable to flash

    I did the following in passing several multiple to flash
    PHP code
    <?php
         $d  = array();
         $p = array();
         $t = array();
         require_once('C:\xampp\htdocs\moodle\config.php');
        $data = $DB->get_records_sql('SELECT questiontext,id FROM {question}');
        foreach ($data  as $element)  {
        $d[] = $element->questiontext ;
        $p[] = $element->id;}
        echo "var1=".urlencode($d[1])."&var2=".urlencode($p[1]);
    ?>
    Actionscript code
    var myLoader:URLLoader = new URLLoader();
    myLoader.dataFormat = URLLoaderDataFormat.TEXT;
    var myRequest:URLRequest=new URLRequest("http://localhost/moodle/selectquestion.php");
    myLoader.load(myRequest);
    myLoader.addEventListener(Event.COMPLETE,onCompleteHandler);
    var myValue: String;
    var valuetwo: String;
    function onCompleteHandler(e:Event):void{
       myValue = e.target.data.var1;
                          valuetwo = e.target.data.var2;
       trace(myValue);
       trace(valuetwo);
    However, error shows in actionscript that
    ReferenceError: Error #1069: Property var1 not found on String and there is no default value.
    Is there anything wrong in my php code or in the actionscript? How should I pass multiple variable to flash?

    I can fix it now as I should add
    var myvariable: URLVariables = new URLVariables(e.target.data);      
    to my actionscript code and then
    myValue = myvariable.var1;
    valuetwo = myvariable.var2;
    trace(myValue);
    trace(valuetwo);
    I can then trace back.

  • Loading php variables into flash 8

    i'm trying to load some vars into flash 8. i tried
    loadvariables, loadvariablesnum, loadvars, google. can't figure it
    out.
    2 years ago when using flash mx trying the same thing, the
    line:
    loadVariablesNum("file",0);
    was enough to do the trick.
    but in flash 8 can't get it to work ;(
    i have the simplest php file, something like this:
    <?
    $town = "where";
    $person = "who";
    $sex = "male";
    print "town=$town&person=$person&sex=$sex";
    ?>
    the use of variables is a must, so the solution
    print "town=where&person=who&sex=male"
    doesn't do me any good. actually this works.
    so what's the correct way of loading this into flash 8?
    thanks guyz.

    you can also use a FlashVars= parameter in your
    <object><embed> code, IF you are using your PHP code to
    also display your flash movie, and if you only need to pass these
    variables once when the movie loads. If this is what you need to
    do, use this....
    <object ...>
    ....// other params .....
    <param name="FlashVars" value="<?
    echo var1name;
    ?>=<?
    echo var1value;
    ?>&<?
    echo var2name;
    ?>=<?
    echo var2value;
    ?>" >
    Though you will have to do that in two places, once in the
    object code, and once in the embed code.
    The embed code would look more like
    <embed ...... FlashVars="<? //php similar to above
    ?>" ..... />
    I have used this successfully to pass in variables when the
    flash movie first loads, to pass in stuff like a URL for a link and
    other info. There are a lot of different ways to pass values in to
    flash. You can also use ExternalInterface.call and use Javascript
    along with PHP to retrieve info at any time, but that is more
    complex.
    This may not be what you need - but you can still use
    LoadVariables with Flash 8, as well.

  • Php service issue (flash builder 4)

    I started playing with Data/Services panel in FB4. Works pretty nice so far but there are a few issues I have:
    1. How can I manualy configure input types for the service? The dialog that appears is buggy - size is very small and I can't select input types there. Also changing method definithion in services.myservice._Super_MyService.as file (which is auto-generated) doesn't work - when I refresh or do something else FB4 just rewrites this file...
    2. Second issue is PHP related. I didn't use PHP for several years so my knowledge is still limited. I've created a service class like this:
    <?php
    class MyService {
    public function addUser($username, $password) {
      $connection =
    mysqli_connect('127.0.0.1', 'root', 'root', myDB, 3306) or
    die(mysqli_connect_error());
      $query = "INSERT INTO users (username,
    password, role)
          VALUES ('$username', PASSWORD('$password'),
    'visitor')";
      mysqli_query($connection, $query) or
    die(mysqli_error($connection));
    ?>
    and it works. But if I move $connection variable outside function (to use it with other methods) I get some errors.. Anyone knows why and how to do this? Tried it with different access modifiers, wrapping it in separate function, but nothing helps..
    Thanks

    Thanks for your inputs. I will look into that construct thingie (:
    As for 'Configure Input Types' dialogue, I can also use it in most cases, but some times it's static size isn't sufficient. For example, try adding this function to service:
    public function addUserData($username, $firstName, $lastName, $company, $jobTitle,
            $country, $state, $city, $zipCode, $address, $eMail,
            $phone, $cell, $fax, $webPage, $pictureURL) {
    On my PC when trying to change values, only one row is visible, and when I try to 'Select Type' for it, dropdown just closes without changing value. It would be nice if we could resize 'Configure Input Types' dialogue when needed... Or maybe just limit the size of 'Operation:' string in that dialogue..
    PS. I just played with it for a bit. If you enter too long function name select window completly disappears:
    public function abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz($abcdefghijklmnopqrstuvwxyz) {}

  • How to create php login in flash builder 4 using php data service

    I have seen the tutorials for creating a php login authentication using HTTP service in flex 3 It uses genrating xml and reading it . But i want to know how to do that with the help of php services in FB4 . I'm a newbie so please any kind of help would be appriciated as 'm not able to get any flex developer in nagpur ....

    Connect to PHP in FB4 is used when you have a PHP Class and you want to use that in FB, for example Employee.php and it has a Employee class and various methods in that like create, update, get, delete.
    However, if you have exposed your functionality in PHP as a HTTP URL (i.e. it is not a class), then you should be using HTTPService from the data menu.
    So if your file is login.php and is accessible as a URL, then using the HTTPService and enter the URL.
    Does this help?
    -Sunil

  • Send variable into flash macromedia

    Hi,
    I would send a variable into flash macromedia.
    I explain my problem. I created an flash wherein i send a word into a variable called lol and i read this varibale in a other variable called dis.
    But in labview i dont know how i can send this word into lol and read into dis.
    I did many research and i made a .vi who could be functional. 
    can you help me to see where is my error in this .VI.
    Thanks. 
    Solved!
    Go to Solution.
    Attachments:
    flash and prog.zip ‏40 KB

    Hi danylolo,
    You could use a web service between Flash and LabVIEW to pass your data? You'll certainly have to develop an adapter for Flash.
    Romain P.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> NIDays 2011, le mardi 8 février au CNIT de Paris La Défense

  • LoadVars-using send to pass a variable from flash to php

    For the life of me, I've tried everything:
    I've researched LoadVars on Adobe forum, used David Powers'
    books, googled 'flash to php', LoadVars, etc. and tried
    sendAndLoad, send, and using $_POST, $_GET, $_REQUEST.
    $HTTP_POSTVARS but I keep getting this same error. any advice
    please?
    I have a Unix server running Apache/PHP 4 - LoadVars worked
    to load name-value pairs into an array -see thread)
    My goal with this simple app is to prototype being able to
    pass a variable from flash to a variable in php.
    Parse error: syntax error, unexpected T_VARIABLE in
    flash_to_SQL.php on line 5
    Actionscript 2.0 code:
    var c :LoadVars = new LoadVars();
    c.testing = "123FOUR";
    c.send ("
    http://127.0.0.1/flash_to_SQL.php","_self","POST");
    php code: (I also tried $_POST, $_GET, $_REQUEST.
    $HTTP_POSTVARS)
    <?php
    //mysql 4.1.2, php 4 , NO mysqli
    ecbo $_REQUEST ['testing'];
    /?>

    var formData:LoadVars = new LoadVars();
    formData.fname = "Name";
    formData.send("
    http://www.website.com/flash_php.php",
    formData, "POST");
    <?php
    $name = $_POST['fname'];
    echo $name;
    ?>

  • Flash Builder 4.5 for PHP - show variable from PHP in app

    I have searched for hours and I can't figure this out…
    Is there a way to somehow "echo" my PHP code in my MXML file ?
    I know you can't echo something from PHP to MXML, so here's what I have done :
    I get my informations from my database, I need to show an image and its title, so I put the following code in a variable :
    <mx:Image id="laniraBlanche" x="25" y="65" width="210" height="126" source="'.$row->image_mini.'" click="selectLaniraBlanche()" rollOver="seePicture()" rollOut="outPicture()" />                                              <s:Label x="25" y="155.85" text="'.$row->nom.'" width="210" textAlign="center" height="37" fontSize="19" backgroundColor="#676666" verticalAlign="middle" fontFamily="Georgia" color="#FFFFFF" click="selectLaniraBlanche()" rollOver="seePicture()"  id="laniraBlancheTxt" rollOut="outPicture()" />'
    Then, I return that variable.
    I find the function where my var created is returned from the "Data/Service" tab, I am on Design mode on Flash Builder, and I "drop" my function where I want my image and text to show on my app.
    I tryed dropping it in a "group", it doesn't show anything. I tryed several other options, and nothing worked.
    So my question is, how could I have this code created in PHP show on my application ?
    Thank you  for your help

    I also have Flash Builder 4.5 for PHP and the ANT view does not show when going to Window -> Show View --> Other.  I could not find it in any of the folders.
    However, I was able to add it by hitting Command 3 (CTRL 3 on PC) and typing Ant.

  • Error while installing flash builder 4.5 for php

    Hello to all.
    Im having a problem while trying to install the flash builder 4.5 for php.... it keeps saying that i have the zend installed in my computer! but i have not... i just have buyed this computer... and it keeps saying that i have the zend installed....
    can someone please help me? I just wanna use this freaking tool!!! =D
    Here is my LOG of installation:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.0.50.0
    Win OS version: 6.1.0.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    Supported RIBS version range: [0.0.66.0,4.0.50.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0: 1 (0,1)
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0: 1 (0,1)
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0: 1 (0,1)
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0: 2 (3,1)
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0: 3 (0,1)
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0: 3 (0,1)
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0: 3 (0,1)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 3 (0,1)
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0: 3 (0,1)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 3 (0,1)
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0: 4 (0,0)
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0: 4 (0,0)
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0: 5 (7,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "INSTALLDIR" to: C:\Program Files (x86)\FLASHBUILDER
    Setting property "driverAdobeCode" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Setting property "mediaSignature" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Found payload actions:
    Deciding what installer mode to use...
    {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 not installed
    {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 not installed
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is: false
    [    4888] Mon Jun 20 08:30:05 2011  WARN
    DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    [    4888] Mon Jun 20 08:30:05 2011  INFO
    Value returned on lookup of payload: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is: true
    Action string for {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0  is remove
    Selection of payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is forbidden by the policy. Reason: Free payload
    Value returned on lookup of payload: {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 is: false
    Action string for {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: true
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0 is: true
    Action string for {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: true
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 is: true
    Action string for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0  is none
    Value returned on lookup of payload: {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0 is: true
    Action string for {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0  is none
    Value returned on lookup of payload: {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0 is: true
    Action string for {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0  is none
    Value returned on lookup of payload: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 is: true
    Action string for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0 is: true
    Action string for {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0 is: true
    Action string for {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 is: true
    Action string for {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0  is none
    END Setting requested payload actions
    INSTALLDIR passed path basic path validation: C:\Program Files (x86)\FLASHBUILDER
    [    4888] Mon Jun 20 08:30:06 2011  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    ::START TIMER:: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}]
    [    3776] Mon Jun 20 08:30:06 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Effective AdobeCode for: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} is {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    [    3776] Mon Jun 20 08:30:07 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}] took 1004.34 milliseconds (1.00434 seconds) DTR = 2732.15 KBPS (2.66812 MBPS)
    Updating driver data - Action: Add driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 0KB
    User specified overrideFile:
    The csu inventory was not updated for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0
    Calling the custom action code for pre-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    ::START TIMER:: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}]
    [    6088] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Effective AdobeCode for: {6F3A624B-1B72-4081-96E8-23261F389C5C} is {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:08 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}] took 1006.47 milliseconds (1.00647 seconds) DTR = 5250.03 KBPS (5.12699 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:09 2011  INFO
    Successfully updated the csu inventory for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0
    Calling the custom action code for pre-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066}
    ::START TIMER:: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}]
    [    1064] Mon Jun 20 08:30:09 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}] took 1014.44 milliseconds (1.01444 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0
    Calling the custom action code for pre-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    ::START TIMER:: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}]
    [    4696] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Effective AdobeCode for: {BD0D6363-E961-410F-8BF4-ECD8795F3923} is {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}] took 1009.85 milliseconds (1.00985 seconds) DTR = 6947.54 KBPS (6.78471 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0
    Calling the custom action code for pre-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    ::START TIMER:: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}]
    [    2788] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Effective AdobeCode for: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} is {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}] took 1019.34 milliseconds (1.01934 seconds) DTR = 18765.1 KBPS (18.3253 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0
    Calling the custom action code for pre-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378}
    ::START TIMER:: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}]
    [    4788] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}] took 1006.47 milliseconds (1.00647 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0
    Calling the custom action code for pre-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A}
    ::START TIMER:: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}]
    [     664] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}] took 1009.34 milliseconds (1.00934 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0
    Calling the custom action code for pre-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    ::START TIMER:: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}]
    [    5256] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Effective AdobeCode for: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} is {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    [    5256] Mon Jun 20 08:30:15 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:15 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}] took 1014.14 milliseconds (1.01414 seconds) DTR = 15709.9 KBPS (15.3417 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:16 2011  INFO
    Successfully updated the csu inventory for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0
    Calling the custom action code for pre-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
    ::START TIMER:: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}]
    [     304] Mon Jun 20 08:30:16 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}] took 1012.73 milliseconds (1.01273 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC}
    ::START TIMER:: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}]
    [    3496] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}] took 1004.29 milliseconds (1.00429 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403}
    ::START TIMER:: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}]
    [    2844] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:19 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}] took 1019.87 milliseconds (1.01987 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    [    4888] Mon Jun 20 08:30:21 2011  INFO
    Total components installed: 0
    Total components repaired: 0
    Successfully removed 11 components:
    - Microsoft_VC90_CRT_x86
    - Adobe Flash Builder
    - Adobe Flash Player 10 Plugin
    - Adobe Flash Player 10 ActiveX
    - Microsoft_VC90_MFC_x86
    - AdobeTypeSupport CS5
    - AdobeHelp
    - Microsoft_VC90_MFCLOC_x86
    - AdobeCMaps CS5
    - Adobe Player for Embedding 3.2
    - Suite Shared Configuration CS5.5
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 16246.8 milliseconds (16.2468 seconds) DTR = 3085.89 KBPS (3.01357 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 1 warning(s)
    WARNING: DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 0 - No error.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

    Hi Mike,
    Could you please send the following log files so we identify the exact problem and hopefully help you quickly:
    Windows:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under C:\Program Files\Common Files\Adobe\Installer\
    Max OSX:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under /Library/Logs/Adobe/Installers/
    Thanks for sharing this,
    Roy

  • Deletion of Flash Builder 4.5 when installing Flash Builder 4.5 for PHP

    There is a very serious error with the Flash Builder 4.5 for PHP installer (from http://static.zend.com/topics/Flash-Builder-for-PHP-4.5.0-Release-Notes.txt ):
    If Flash Builder 4.5 (not PHP) is already installed on the machine, and the
      product (Flash Builder for PHP 4.5) is then installed in a different location,
      the user gets the "FB is installed" dialog.
      After clicking OK, the installation rolls back and removes both Flash Builder
      and Flash Builder for PHP.
    My questions:
    Can Flash Builder 4.5 for PHP be installed in the same location without deleting Flash Builder 4.5? If so, please define "location."
    Is there a workaround for installing both flavors of Flash Builder 4.5 and avoiding the deletion issue described above?
    Can a single do-it-all version of Flash Builder 4.5 be installed that combines the SDKs and features of both flavors of the Flash Builder 4.5 product?

    Hi Mike,
    Could you please send the following log files so we identify the exact problem and hopefully help you quickly:
    Windows:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under C:\Program Files\Common Files\Adobe\Installer\
    Max OSX:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under /Library/Logs/Adobe/Installers/
    Thanks for sharing this,
    Roy

  • I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro

    Hi,  My name is David and I followed a course creating my own website from Lynda.com by Paul Trani. After that I created my first own webste. After I finished it, everything was working well in flash and firefox. I have only one problem and question concerning the feed back form for sending info from my website to my emailaddres. I created my website “LisbonDreamWalking”in Flash CS5 pro. I herein have a contact page, where people can send an email for a walk in Lisbon, date,the number of people etc. Now I want through my ISP / host funpic.org, that the input, info text fields to be sended to my emailaddress [email protected]. My mail URL adress  iss: http://lisbondreamwalk.li.funpic.org  This is a free host, so they don't work with forms like in the course, and I need some additional info for the php. Here is my HTML (Flash actionscript 3.0) for the sending I only have the red text to fill in (php), I was told by the adobe course.I really hope someone can help me?! Thanks in advance!
    Instructions: 1. Add your custom code on a new line after the line that says "// Start your custom code" below. The code will execute when the symbol instance is clicked. */  send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_13);  function fl_MouseClickHandler_13(event:MouseEvent):void {          if (thename.text == "" || theemail.text == "" || thetime.text == "" || thepersons.text == "" || themessage.text == "")      {           thankyou.text = "please fill out all fields";      }      else      {           // create a variable container           var allVars : URLVariables = new URLVariables();           allVars.name = thename.text;           allVars.email = theemail.text;           allVars.time = thetime.text;           allVars.persons = thepersons.text;           allVars.message = themessage.text;           //Send info to a URL           var mailAddress:URLRequest = new URLRequest("http.www.namewebsite.com/gdform.php");           mailAddress.data = allVars;           mailAddress.method = URLRequestMethod.POST;           sendToURL(mailAddress);            thankyou.text = "Thank YOU!";           thename.text = "";           theemail.text = "";           thetime.text = "";           thepersons.text = "";           themessage.text = "";      } }
    H

    Thank you Kglad, I am going to see if I can make it work. I will let you know!
    Date: Thu, 13 Oct 2011 08:55:05 -0600
    From: [email protected]
    To: [email protected]
    Subject: I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro
        Re: I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro
        created by kglad in Action Script 3 - View the full discussion
    you missed part of the tutorial (or the tutorial is incomplete):  send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_13); function fl_MouseClickHandler_13(event:MouseEvent):void{     if (thename.text == "" || theemail.text == "" || thetime.text == "" || thepersons.text == "" || themessage.text == "") { thankyou.text = "please fill out all fields"; } else { // create a variable container var allVars : URLVariables = new URLVariables(); allVars.name = thename.text; allVars.email = theemail.text; allVars.time = thetime.text; allVars.persons = thepersons.text; allVars.message = themessage.text; //Send info to a URLvar mailAddress:URLRequest = new URLRequest("http.www.namewebsite.com/gdform.php"); mailAddress.data = allVars; mailAddress.method = URLRequestMethod.POST; sendToURL(mailAddress);
    }}  var urlLoader:URLLoader=new URLLoader(); function sendToURL(mailAddress):void{urlLoader.addEventListener(Event.COMPLETE,completeF);urlLoade r.load(mailAddress);} function completeF(e:Event):void{ thankyou.text = "Thank YOU!"; thename.text = ""; theemail.text = ""; thetime.text = ""; thepersons.text = ""; themessage.text = "";}
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3969414#3969414
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3969414#3969414. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Action Script 3 by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • Using multiple ipods on the same computer

    I have three ipods in the family. Is it possible to have three different libraries that can sync when each different ipod is connected? At the moment. my libray syncs with al three.

  • Problem in creating a generic datasource with infoset

    Dear Expert,   I have to create a generic datasource with infoset. I linked the infoset with a test program below. In the program, I have one selection option, which is s_order. After creating an infoset and a datasource, this selection option 'SELEC

  • File conflict, libgl-dr: /usr/lib/libGL.so.1

    I am trying to upgrade xorg but whenever I pacman -S xorg, I get the following error error: the following file conflicts were found: libgl-dri: /usr/lib/libGL.so.1: exists in filesystem I was wondering if anyone new how to fix this problem. Thanks

  • Database corrupt + ipod refuses to update

    windows said the ipod database was corrupt, and when i tried to add new songs, it didn't work. to try to solve this problem, i have downloaded a new ipod updater. ipod updater doesn't finish. after 30 minuts, it still says it needs to stay connected

  • Deactivate serial number of PSE 10

    How to deactivate my serial number for PSE 10 on a previous computer? I looked on internet and saw that you can do that with Creative Cloud (CC). But to join CC you have to subscribeand do monthly payment and I don't want that. Is that the only possi