Flash Builder mobile - complex XML reading

Hello Developers,
Please help me! I'm trying to develop a mobile app, that displays a complex xml file (i'm not a developer, so please be patient... ). Here's the xml file, then I write what I'd like to do:
<?xml version="1.0"?>
<server_status>
<hosts>
   <host>
      <host_name>server1</host_name>
      <modified_attributes>0</modified_attributes>
      <check_command>check-host-alive</check_command>
      <check_period>24x7</check_period>
      <notification_period>24x7</notification_period>
   </host>
      <host>
      <host_name>server2</host_name>
      <modified_attributes>0</modified_attributes>
      <check_command>check-host-alive</check_command>
      <check_period>24x7</check_period>
      <notification_period>24x7</notification_period>
   </host>
</hosts>
<services>
   <service>
      <host_name>server1</host_name>
      <service_description>C:\ Drive Space - Exchange Edge 1</service_description>
      <modified_attributes>0</modified_attributes>
      <check_command>check_nt!USEDDISKSPACE!-l c -w 80 -c 90</check_command>
          </service>
          <service>
      <host_name>server1</host_name>
      <service_description>CPU Load - Exchange Edge 1</service_description>
      <modified_attributes>0</modified_attributes>
      <check_command>check_nt!CPULOAD!-l 5,80,90</check_command>
          </service>
   <service>
      <host_name>server2</host_name>
      <service_description>C:\ Drive Space - Exchange Edge 2</service_description>
      <modified_attributes>0</modified_attributes>
      <check_command>check_nt!USEDDISKSPACE!-l c -w 80 -c 90</check_command>
          </service>
   <service>
      <host_name>server2</host_name>
      <service_description>CPU Load - Exchange Edge 2</service_description>
      <modified_attributes>0</modified_attributes>
      <check_command>check_nt!CPULOAD!-l 5,80,90</check_command>
          </service>
</services>
</server_status>
As you can see, there's 2 main nodes: hosts & services. On the opening screen of the app I can list the hosts displaying in a list the host nodes with host_name. That's fine. I select one of them and on the new view I show the selected host attributes like <modified_attributes>, <check_period>, etc. What I want is to display on this screen the selected host's services. Under the <services> node there are 4 <service> child node: 2 services for host1 and 2 services for host2. I only want to list those services that are belong to the host I selected on the main view.
Please write me the source code of the solution either here or in email ([email protected])
Thanks for your help!

Really thanks for your reply, but I don't really know, where and how to put in the code. Here's the mxml:
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    xmlns:szolgaltatas="services.szolgaltatas.*"
                    title="DetailsView"
                    viewActivate="getDetails()"
                    >
          <fx:Script>
                    <![CDATA[
                              import mx.events.FlexEvent;
                              [Bindable] private var ha:String;
                              [Bindable] private var hb:String;
                              [Bindable] private var hc:String;
                              [Bindable] private var hd:String;
                              import valueObjects.Host;
                              import valueObjects.Service;
                              private function getDetails():void
                                        var thisItem:Host = data as Host;
                                        ha = thisItem.last_time_up;
                                        hb = thisItem.last_check;
                                        hc = thisItem.plugin_output;
                                        hd = thisItem.host_name;
                              protected function textArea_creationCompleteHandler(event:FlexEvent):void
                                        getDataResult.token = szolgaltatas.getData();
                    ]]>
          </fx:Script>
          <fx:Declarations>
                    <s:CallResponder id="getDataResult"/>
                    <szolgaltatas:Szolgaltatas id="szolgaltatas"/> <!-- Szolgaltatas service -> getData(): Service[] -->
          </fx:Declarations>
          <s:Label top="10" left="10" right="10" text="Time Up: {ha}"/>
          <s:Label top="30" left="10" right="10" text="Last Check: {hb}"/>
          <s:Label top="50" left="10" right="10" text="Check Result: {hc}"/>
          <s:Label top="90" left="10" right="10" text="Hostname: {hd}"/>
          <s:TextArea id="textArea" left="10" right="10" bottom="10" height="50%"
                                        creationComplete="textArea_creationCompleteHandler(event)"
          />
</s:View>
Thank you Jakub!

Similar Messages

  • Flash Builder Mobile Target Updates Coming?

    Any word on the update for flash builder that will give the mobile options for Blackberry OS and iOS as target platforms in addition to the Google Android?

    Great. I appreciate the info. I had just been looking under Flex Mobile. Although, under ActionScript Mobile AIR I only see Apple iOS and Google Android as options. Is there an extension or something else to gain access for the playbook?

  • Flash Builder Mobile PHP Publishing

    I have zend server community edition running on my Mac. I have created a Flex Mobile and PHP Project using localhost as the Root URL and htdocs as the Web Root. After that, I have connected to a couple of php dataservices to my SQL database in Zend and added my components to view and change the data.
    When I test the app locally, everything runs perfectly, which is awesome. However, the time has come to publish to my mobile phone and I would like to connect the app to a mirrored database on my web server so that I may use it online rather than local and this is where I cannot get it to work. I assume I would have to change the php database connection properties, but no luck.
    Does anyone know what settings/code I must adjust in order to get my app to talk to my sql database hosted online?

    Hello Skant,
    I did get Flash Builder working using a remote database, but used a HTTPService request instead on cofiguring Zend. It looked like this:
    <s:HTTPService id="saveHole1Score" url="http://yourdomain.com/your.php" useProxy="false" method="POST">
                                  <s:request xmlns="">
                      <scorecard_id>{scorecard_id.text}</scorecard_id>
                      <hole1post>{hole1post.text}</hole1post>
                 </s:request>
    </s:HTTPService>
    However, I eventually gave up on Flash Builder as a method to build my mobile app because the published version for iOS of my app was 29MB, which is too large to download over the cellular network. This was problematice for the type of app I was creating. Plus with the announcement of the lack of ongoing support for Flash Builder was the cherry on top. I have since switched to HTML5 and Phonegap to publish my apps. So far it has made a better product and significantly lighter.
    Good Luck with your app.

  • Flash builder mobile app hangs on Realease Build after air 3.1 (3.2 - 3.8) for IOS devices

    The app stoped working after air 3.1 on IOS devices...Its is a Flex/actionscript mobile project...as of May 1st apple forced us to use newer sdk so i updated to air 3.8 and have tried every version since 3.1...the app only works perfectly in release build from air 3.1...on air 3.8 debug on device works perfectly non-debug run on device crashes with sigbus or sig 11 ...Ive used xcode console and device logs and they have not been helpful...since they reference post compiled native code which i dont have acces to i have tried every fix on the web. Ive been trying to figure this out for days..Does anyone have any insight on this issue.
    Curently Using:
    Flash Builder 4.7
    air 3.8 beta
    Compiler options:
    -locale en_US
    -swf-version=21
    -omit-trace-statements=false
    -keep-as3-metadata+=Inject

    The app stoped working after air 3.1 on IOS devices...Its is a Flex/actionscript mobile project...as of May 1st apple forced us to use newer sdk so i updated to air 3.8 and have tried every version since 3.1...the app only works perfectly in release build from air 3.1...on air 3.8 debug on device works perfectly non-debug run on device crashes with sigbus or sig 11 ...Ive used xcode console and device logs and they have not been helpful...since they reference post compiled native code which i dont have acces to i have tried every fix on the web. Ive been trying to figure this out for days..Does anyone have any insight on this issue.
    Curently Using:
    Flash Builder 4.7
    air 3.8 beta
    Compiler options:
    -locale en_US
    -swf-version=21
    -omit-trace-statements=false
    -keep-as3-metadata+=Inject

  • Accessibility with flash builder and a screen reader

                   hi. a blind website student, using the Jaws for Windows screen reader from htttp://www.freedomscientific.com. was trying to build a basic flash builder flex project, and using jaws 13.0.718, on a toshiba laptop with windows 7 professional 32 bit. now using the adobe cs 5.5 student web premium. i then pressed alt  f, then new, then arrow right to flex project. then put in my name of the project, clicked to browse the folder, then there was a next and finish button, well clicked the finish button. the code windows comes up, press control  !~ which took me to  design view. now my troubles start. have to use the mouse cursur for jaws, which is the jaws cursur. and now, was able to left click using the caps key, which is the insert key, and then able to use the f 8 key for left click mouse simulation. but then came to a tree view, pressed t, until i heard text area, then tabbed around. no add button. so how do i add a component using the keyboard. or do i need to enable accessibility. and also tried to get to the properties of the control. managed to do that some how, but could not find the id property. so if any one can help me, new to flash builder and flex. Marvin, From Devonport, tasmania, australia. if any one can help please e-mail me via [email protected]         

    No I used relative path - the path is  images/image name
    example images/cRight.png
    tried downloading Extension Builder 2.1 and compiling on Mac but still have same results - images show up fine in design window , but not when running panel in Photoshop
    Created a new project: testImage
    added an image component to form
    answered yes to add asset to project
    ran project
    image did not show up in Photoshop
    went back to project
    checked item Embed under Common image properties
    ran project and image shows up
    Looks like it works if I add @Embed("assets/image name") on Mac to display images
    tried in my real project:
    Looks like it works if I add @Embed("images/image name") on Mac to display images
    When I change this on PC to @Embed("images/image name") images do not show Up
    Don't know if I need to create two versions one for Mac one for PC
    Don't know how this would affect product on Adobe Exchange

  • How to display local HTML5 web page in flash builder mobile application?

    We have one single html5 web page that includes script tag to include a set of resources(java script).
    Currently we have tried using web view, htmlloader and IFrame, but none of the approaches worked as the page is included in the assets folder itself of the application, and we need to run it on the mobile device(not the browser).

    If all you are doing is loading an HTML5 web page I would look at using PhoneGap instead:
    http://phonegap.com/
    PhoneGap was bought by Adobe.

  • Flash Builder 4.5 SOAP call for images using Base64 Encoding

    I am trying to load some image meta data in a flash builder mobile application by making a SOAP call to .Net service. I am able to test the web service successfully using a .Net console application. However when I make the call from flash builder mobile client I get a null result. What am I doing wrong? I am using SOAP 1.1 ByteArray didn't work for Flash builder. So converted the ByteArray to Base64 format and tried to obtain result that way. Both ways worked from a .Net Client but not working from Flash mobile.
    Here is the code
    <fx:Script>
            <![CDATA[          
                import mx.graphics.ImageSnapshot;
                import mx.graphics.codec.JPEGEncoder;
                import mx.graphics.codec.PNGEncoder;
                import mx.rpc.AsyncToken;
                import mx.utils.Base64Encoder;         
                import services.exifimagemetadata1.ExifImageMetaData1;         
                import spark.components.Image;     
                public var metaData:ExifImageMetaData1 = new ExifImageMetaData1();         
                public var imageBytes:ByteArray = new ByteArray();
                public var gpsData:String;
        private function getBase64EncodedImage():String
                    var myEncoder:Base64Encoder = new Base64Encoder();
                    myEncoder.encodeBytes(getImageBytes());            
                    var image64BitText:String = myEncoder.toString();                          
                    return image64BitText;
        public function GetMetaDataFromExif():void{
                    var imageToken:AsyncToken = metaData.GetExifBase64Data(getBase64EncodedImage());               
                    gpsData = imageToken.result.toString();
                    metaResult.text = gpsData;
        protected function GetImageMetaDataFromExif(event:MouseEvent):void
                    GetMetaDataFromExif();         
            ]]>
        </fx:Script>
    <s:layout>
            <s:VerticalLayout>         
            </s:VerticalLayout>
        </s:layout>
        <s:HGroup>
            <s:Image id="test" width="130" height="140" source="@Embed(source='assets/p1000106.jpg')"/>
        </s:HGroup>
        <s:HGroup>
        <s:Label width="100" height="140" backgroundColor="Blue" click="GetImageMetaDataFromExif(event)">
            <s:text/>
        </s:Label>
        </s:HGroup>
        <s:HGroup>
            <s:Label id="metaResult" width="200" height="140" backgroundColor="yellow"/>           
        </s:HGroup>

    Hello everyone -
    Since I last posted an interesting update happened. I tested my  Flex application again, it is calling a Jetty Server that returns a JSON object, in different BROWSERS.  I disabled HTTPS for now, and the crossdomain.xml policy file is wide open for testing (ie. allowing every request to return data). So the app accessing the data using HTTP only. Browsers  -  IE, Opera, Firefox and Chrome. Each browser contained the SAME application, revision of the Flash Player (10.3.183.10 debugger for firefox, chrome, opera, safari PC; 11.0.1.129 consumer version in IE9,) take a look at the screen shot (safari not shown although the result was the same as IE and chrome)
    Note that Opera and Firefox returned successful values (i.e. successful JSON objects) using the same code generated from the Data Services Wizard. Chrome, IE and, Safari failed with an Internal error. So I am left wondering - WHY? Is it something with the Flash Player? the Browsers?  the Flex SDK? Any thoughts are appreciated. Again, the code is found in the original thread above.

  • Flash Builder 4.7 won't debug air app on Android devices  anymore

    Hi there,
    A strange thing happened today to my Flash Builer 4.7 installation on OS 10.8.5 : it suddenly refused installing and debugging AIR apps.
    At -the famous- 57% of compilation completion I can see the "installing app on device" message, but nothing happens then, and the one minute connection to app timeout is finally triggered.
    I had a look at other threads dealing with this problem here http://forums.adobe.com/thread/1154269 and here http://www.androidpolice.com/2013/02/12/new-android-4-2-2-feature-usb-debug-whitelist-prev ents-adb-savvy-thieves-from-stealing-your-data-in-some-situations/ and I downloaded the latets Android SDK and replaced a bunch of files into the /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/android/bin folder but nothing worked.
    The fun side of the issue is that yesterday it worked, and this morning it did not worked anymore, but I swear I did not ugraded Android on my phone nor I upgraded AIR SDK in FLash Builder or OS X. The Android phone is the same as usual, a Nexus 4 with Android 4.3, that I upgraded 1 month ago.
    I can't debug my Android app anymore, this drives me crazy, and I spent the day trying to find a solution.
    Do you guys had a similar problem ?

    My mistake...
    There was a typo into the XML application descriptor, that prevented the app to install properly on the device.
    Precisely, it wasn't a typo but raher a malformed <intent-filter> node. I launched adb tool from the console with adb install MyApp.apk command, and I saw this : Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED] in the terminal. From here it was easy to find the culprit.
    What would be cool is to have this feature inside the Flash Builder's Console panel.

  • Are Flash Professional Buttons broken in Flash Builder 4.7/AIR 3.4?

    Moved my ActionScript Mobile Project game from Flash Builder 4.6 / AIR 3.2 yesterday to the new release of 4.7 / AIR 3.4. I immediately ran into a problem with Flash Professional Button's working incorrectly. The buttons have linkages in a SWC exported from Flash Professional CS6, which the project has linked. The content of the buttons doesn't seem to matter. It seems to break in different ways visually depending on it's composition (sometimes it loads unreleated bitmap data or displays with a strange transformation). Has anyone else seen this behaviour so far?

    I don't have the time to create a unique project for adobe bug database. So many are having the same issue, I'm shocked that Adobe doesn't know about this already. This discussion that I'm writing in right now was started in december, almost 7 months ago.
    Joseph Labrecque says in his blog that adobe does know of this issue and is working on it, he said that 6 months ago. Is he incorrect?
    Joseph LabrecqueJanuary 4, 2013 at 6:21 pmGood news that Adobe is actively working on a fix for this issue.
    http://inflagrantedelicto.memoryspiral.com/2012/12/flash-builder-4-7-useflashsdk/

  • Flash builder 4.7 as plugin won't display asdoc

    Hi,
    on windows 7 x64, I just installed Flash Builder 4.7 x64 on my existing eclipse 4.2 x64 (using "the Adobe Flash Builder 4.7 Plug-in Utility") and the asdoc popup won't display anything but the current element. If I start the standalone Flash Builder, using the same workspace and same project, it works fine. Do I need to configure something else so it works as a plugin?

    My mistake...
    There was a typo into the XML application descriptor, that prevented the app to install properly on the device.
    Precisely, it wasn't a typo but raher a malformed <intent-filter> node. I launched adb tool from the console with adb install MyApp.apk command, and I saw this : Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED] in the terminal. From here it was easy to find the culprit.
    What would be cool is to have this feature inside the Flash Builder's Console panel.

  • Show Notifications in Air - Flash Builder 4.6

    Hi, I'm new into Flash Builder mobile apps development.
    I just downloaded the latest release of Flash Builder, the 4.6.
    I read in this Adobe's article, that with this version I can add "Notifications" to my apps.
    I tried to, but all my experiments failed.
    Here's a quick personal video illustrating all my steps, and coding errors, please, whatch it:
    (It's very, very short, just the time to write some lines of code)
    I think my error is simple to solve... but I'm a NewBie and I don't know very much this programming IDE.
    Thanks everybody for any help.
    Have a nice day
    Brandon
    WOW!
    I'm seeing now that my video's quality is very low... here's the code I wrote:
    // Here I want to declare my personal Notification Variable, as said in Adobe's Tutorial
    private var myNotification:NotificationManager;
      // I saw that NOTIFICATION MANGER does not exist in my code library... but I tried pasting Adobe's one...
      // as you can see from this video... the compiler gives me coding error..
      // CONCLUSION... WHAT CAN I DO ???
      // THANKS TO ALL !!!
      // Bye  :-)
    protected function button1_clickHandler(event:MouseEvent):void
    // Here I'll paste Adobe's code to create a new Notification for my first Flash Builder Mobile App...
    // CODE...
    Thanks again

    Here's Adobe's article I missed to link:
    http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/notification.html
    And the video I made:
    http://www.youtube.com/watch?v=v0S26Qle-tc&feature=channel_video_title
    PS = WHATCH MY VIDEO IN FULL HD - 1080p, or YOU'LL NEVER READ THE CODE

  • How to retain zoom position of an image using Adobe Flash Builder?

    Hi,
      I have created an Adobe Flash Builder Mobile App. I placed an image in the Homeview. I allow the user to zoom out or zoom in the image using GestureZoom.
    The problem is each time the user zooms, it does not retain the previous position.
    For ex., If I have a map image, I zoom the Bangalore area. After the zoom, I don't see the Bangalore area in the visible portion of the device screen.
    Can anyone help me in this? I feel this is a very basic requirement of zoom but I am missing something really.
    I have seen few samples of this requirement in Adobe Flash which does not work for mobile apps.

    I don't understand what you mean, but to give you a sample file so you can see what I am talking about:
    link to fla file: http://dl.dropbox.com/u/48932382/Untitled-1.fla
    link to swf file: http://dl.dropbox.com/u/48932382/Untitled-1.swf
    As you can see in this file, I am turning the green page, but when you should be seeing behind the page, it's actually transparent and you end up seeing the page underneath it.
    Here is a picture of it: (if your wondering, the pages have the same text, it's just the color of the pages are different)

  • Adobe AIR 2 Beta with Flash Builder 4 Beta 2

    I'm trying to figure out how to use AIR 2 with Flash Builder 4.  I was initially under the impression that FB4 has AIR2... but the when I create a File object and try to call the function openWithDefaultApplication().  An error occurs saying the function doesn't exist.  This is the AIR application I created in FB4.  Am I doing something wrong or do I need to install AIR 2 somehow -- and if so, how do I do so?
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark"
                                xmlns:mx="library://ns.adobe.com/flex/halo">
         <fx:Script>
              <![CDATA[
                   private function launch():void{
                        var myfile = new File("C:\Windows\notepad.exe");
                        myfile.openWithDefaultApplication();
              ]]>
         </fx:Script>
         <s:Button x="439" y="155" label="Button" mouseDown="launch()"/>
    </s:WindowedApplication>
    Thanks in advance.

    Download the AIR 2 SDK, make a new copy of the Flex4 SDK (or whichever Flex SDK you want to use) and copy the AIR SDK over it. (If you are on the Mac, you have to be careful that the directories themselves aren't overwritten -- just the files inside them.) You then add the combined SDK to the list in the Flash Builder project properties dialogs.

  • Error install trial version of Flash Builder 4 in WIN runs on VMWare

    After the installation, I go the errors... please help! Thanks.
    In the Setup dialog, I chose c:\Program Files\Adobe as the install location.
    Why did it try to access vmware-host\Shared Folders?
    ERROR: 14921 Unable to create directory "\\vmware-host\Shared Folders\Documents\..\Adobe Flash Builder 4
    ERROR: 14921 Command ARKCreateDirectoryCommand failed.
    ERROR: 14921 Unable to delete directory "\\vmware-host\Shared Folders\Documents\..\Adobe Flash Builder 4". Error 2 The system cannot find the file specified.
    ERROR: 14921 Error rolling back command ARKCreateDirectoryCommand
    ERROR: 14919 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\configuration\config.ini" Error 3 The system cannot find the path specified.
    ERROR: 14919 Error rolling back command ARKMoveFileCommand
    ERROR: 14918 Unable to delete directory "C:\Program Files\Adobe\Adobe Flash Builder 4\configuration". Error 2 The system cannot find the file specified.
    ERROR: 14918 Error rolling back command ARKCreateDirectoryCommand
    ERROR: 14856 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\AMT\application.xml" Error 3 The system cannot find the path specified.
    ERROR: 14856 Error rolling back command ARKMoveFileCommand
    ERROR: 14855 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\AMT\application.sif" Error 3 The system cannot find the path specified.
    ERROR: 14855 Error rolling back command ARKMoveFileCommand
    ERROR: 14854 Unable to delete directory "C:\Program Files\Adobe\Adobe Flash Builder 4\AMT". Error 2 The system cannot find the file specified.
    ERROR: 14854 Error rolling back command ARKCreateDirectoryCommand
    ERROR: 23 Deleting Registry Key - failure. Error 5
    ERROR: 4 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\FlashBuilder.exe" Error 3 The system cannot find the path specified.
    ERROR: 4 Error rolling back command ARKMoveFileCommand
    ERROR: 3 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\artifacts.xml" Error 3 The system cannot find the path specified.
    ERROR: 3 Error rolling back command ARKMoveFileCommand
    ERROR: 2 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\.eclipseproduct" Error 3 The system cannot find the path specified.
    ERROR: 2 Error rolling back command ARKMoveFileCommand
    ERROR: 1 Unable to delete directory "C:\Program Files\Adobe\Adobe Flash Builder 4". Error 2 The system cannot find the file specified.
    ERROR: 1 Error rolling back command ARKCreateDirectoryCommand
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe Flash Builder: Install failed

    Hi,
    Looks as if you have your home folder on VMWare mapped back to the host OS drive, and that's triggering the initial failure in the log you posted. There's a faulty assumption in our installer's home folder logic that you've encountered, where it thinks your home folder is one level above your Documents folder, though we know that's not always true.
    Here's a workaround you could try:
    - Back up your Documents folder for safe keeping (\\vmware-host\Shared Folders\Documents)
    - create a new folder tree named \\vmware-host\Shared Folders\home\Documents. The folder in the middle doesn't need to be named "home", you can call it anything you want, but there needs to be a new folder in the middle. Make sure you have write access to that home folder, as well as to its Documents subfolder.
    - in VMWare Windows, reconfigure your User settings, moving your "My Documents" location down to the one created below \home\.
    That last step varies a little, depending on which version of Windows you're running. On Win7 you can do it this way:
    - in your user home folder (\Users\yourUserName) locate the My Documents icon, and right-click it
    - choose Properties
    - in the "Location" tab, click Move, and then choose the \\vmware-host\Shared Folders\home\Documents fodler you created earlier on your VMWare host
    On Vista, you can right-click the Documents icon in your Start Menu, choose Properties, and from there on it's about the same as on Win7.
    On WinXP it looks slightly different:
    - right-click your My Documents icon (often on the desktop for convenience), and select Properties
    - the tab you want is named "Target" on WinXP, and then you can click Move to relocate it to the same location described earlier.
    After moving your Documents location this way, I would reboot first, and then make sure any old copies of FB4 are completely removed before re-installing. I just tested this out on my own VMWare machine (Vista), and it worked here, so with any luck it will work there too.
    Let me know how it goes,
    -Chris
    P.S. We'll be fixing this problem in the next release, but can only offer this workaround for now. Thanks for bearing with us.

  • Cannot install Flash Builder on a network home drive

    When trying to install in our corporate environment we have network home drives and the Flash Builder installer for some reason tries to create a directory here:
    \\escfil02\homedir\deancj\..\Adobe Flash Builder 4
    We noone here has permission to create a directory outside our home directory since it is using the .. directory.  Perhaps that works fine when your home directory is local on your C: drive but it doesn't work here and I cannot really change my %HOMESHARE% environment variable (or can I?)  Then I get 25 other errors but they may all be related to this first one I don't know.  They are all ERROR 15078 errors
    How can I get past this?
    Here is the full list of errors:
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 25 error(s), 0 warning(s)
    ERROR: 15080 Unable to create directory "\\escfil02\homedir\deancj\..\Adobe Flash Builder 4
    ERROR: 15080 Command ARKCreateDirectoryCommand failed.
    ERROR: 15080 Unable to delete directory "\\escfil02\homedir\deancj\..\Adobe Flash Builder 4". Error 2 The system cannot find the file specified.
    ERROR: 15080 Error rolling back command ARKCreateDirectoryCommand
    ERROR: 15078 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\configuration\config.ini" Error 3 The system cannot find the path specified.
    ERROR: 15078 Error rolling back command ARKMoveFileCommand
    ERROR: 15077 Unable to delete directory "C:\Program Files\Adobe\Adobe Flash Builder 4\configuration". Error 2 The system cannot find the file specified.
    ERROR: 15077 Error rolling back command ARKCreateDirectoryCommand
    ERROR: 15015 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\AMT\application.xml" Error 3 The system cannot find the path specified.
    ERROR: 15015 Error rolling back command ARKMoveFileCommand
    ERROR: 15014 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\AMT\application.sif" Error 3 The system cannot find the path specified.
    ERROR: 15014 Error rolling back command ARKMoveFileCommand
    ERROR: 15013 Unable to delete directory "C:\Program Files\Adobe\Adobe Flash Builder 4\AMT". Error 2 The system cannot find the file specified.
    ERROR: 15013 Error rolling back command ARKCreateDirectoryCommand
    ERROR: 23 Deleting Registry Key - failure. Error 5
    ERROR: 4 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\FlashBuilder.exe" Error 3 The system cannot find the path specified.
    ERROR: 4 Error rolling back command ARKMoveFileCommand
    ERROR: 3 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\artifacts.xml" Error 3 The system cannot find the path specified.
    ERROR: 3 Error rolling back command ARKMoveFileCommand
    ERROR: 2 Unable to delete file copy at "C:\Program Files\Adobe\Adobe Flash Builder 4\.eclipseproduct" Error 3 The system cannot find the path specified.
    ERROR: 2 Error rolling back command ARKMoveFileCommand
    ERROR: 1 Unable to delete directory "C:\Program Files\Adobe\Adobe Flash Builder 4". Error 2 The system cannot find the file specified.
    ERROR: 1 Error rolling back command ARKCreateDirectoryCommand
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe Flash Builder: Install failed

    Hi,
    You're right that we're trying to create your default workspace in the folder one level up from your roaming documents folder, and that's what's causing the conflict between our installer and your roaming profile.
    This is on our radar to fix for the next release, but here's a workaround you could try in the meantime. From what we've seen with roaming network profiles, our installers will have trouble mainly if your roaming documents folder has been flattened (redirected) to the root of your profile tree. If you can have your network profile reconfigured with the more conventional home folder at the top level, and the documents folder underneath it, then the relative path will be able to resolve correctly in your network tree.
    There's more info here, about how to configure your roaming profile on the server to follow the conventional tree structure:
    http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx
    Depending on who administers your network profiles, you might need someone in IT/IS to help with this.
    -Chris

Maybe you are looking for

  • How to remove SANE from the list of scanners that are shared in Preferences

    So I installed SANE for an old scanner, which is now replaced by a new Canon that is supported by native OSX and canon drivers. I therefore uninstalled SANE, the prefpane and all occurrences in the /Library and so on, however it is still being listed

  • Zen Vision M 30Gb Install Probl

    So I just got my Zen Vision M 30Gb today and I plugged it into my computer. It started charging and then my computer finally recognized it and tried to do the normal driver install, but for some reason it doesn't seem to have completely installed the

  • Very slow loop execution

    Hello, This subset of my program is running extremely slow. There is a fair bit of computation involved with medium size data sets (1000 rows and 1500 columns) but this should not be the issue I think... I am running a regression algorithm and I am c

  • Why do I have to enter the master password almost 20-times (no exagerration) when I open Thunderbird?

    I use a master password for Thunderbird. I also use Lightning. In the past, I would need to enter the master password twice (once for Thunderbird, once for Lightning). Within the last couple of months, I am now prompted to enter the password nearly 2

  • My pinned tabs are not saved. Changed the settings still does not work?

    This changed before upgrading to the new version of FRFX. I cannot save my pinned tabs, nor does Firefox open to the last tabs open. Tried to change Settings...still does not work. I have a new iMac 3.4, i7, 16g for video editing. Its running LION 10