Load .docx in Flex

i would like to load .docx in flex?
Do anyone know how to do it?
thank

really no body know?

Similar Messages

  • Can web service schema loading again by flex once it is failed ?

    Hello,
    I used cairngorm architecture and in that i used webservice.
    I show that service controller / flex load wsdl schema first in webservice object.
    Once loading is finished flex can use this schema to call the webservice function.
    I have one question is it . If some how during wsdl schema loading any error is occured then can flex loading again this schema ?
    Thanksl
    Mohit

    Hue sud.. Thanks for your answer.
    In fact I did saw this tutorial and I decided to make it work today. Which in fact I did, but got in trouble with a bunch of libraries. Now I do have my java classes in the database with their java sources. The tutorial also says to create a procedure since its static the way to call the class. The procedure creates sucessfully. But now I got the problem when I try to execute my procedure I get this error:
    04:11:45 p.m. ORA-29532: Java call terminated by uncaught Java exception: java.lang.IncompatibleClassChangeError
    04:11:45 p.m. ORA-06512: at "AMES_JAVA.MAIN", line 1
    04:11:45 p.m. ORA-06512: at line 5
    Do you know how to execute the procedure from the database once is up? I also tried creating a function but got the same result

  • How to load html in flex compiler 3.5 or more

    I want to load some html page see this in Flex 3.5 or more I followed this tutorial but somehow i think it only works in Flex 2, I even tried by unchecking Generate HTML wrapper file but no luck. Can somebody help me? Thanks

    I used this Guide to make it work.
    Download the `flexiframe` from this location
    Use `xmlns:flexiframe="http://code.google.com/p/flex-iframe/"` in your component
    and `<flexiframe:IFrame id="iFrame"  label="Google"  source="http://www.google.com" width="100%" height="100%"  />`
    That's it.. this worked for me

  • How to load pdf in flex application for android os

    I loaded pdf in stagewebview which works good in IOS but not in android.
    The pdf file is loaded from the application storage directory.
    Please help me in resolving the problem. Thank you in advance.

    I think that my problem was i couldnt see pdf in my app running in ipad simulator of FlashBuilder in a flex mobile project in my laptop. what i read said that StageWebView create an instance of default browser in your machine. So that if we cant see pdf in ipad simulator is because also you cant see it in the default browser.
    Apart of this, i run this example in other machine, and i could see it, so its not problem of your code, but from your browser probably doesnt have pdf plugin installed. Correct me if i´m wrong.
    Cheers!

  • Load webpage in Flex extension for InDesign

    Hi All,
    I am implementing an extension for InDesign CS6 and CC using Flash Builder 4.6, Ext Builder 2.1.
    The panel reads a text file which contains the url of a webpage and renders it in an HTML control.. It is working with most urls..
    But sometimes it stops loading the page midway. I get the urls from my client.
    Here is the code I am using,
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
      layout="absolute"
      creationComplete="livepreview_creationCompleteHandler(event)">
    <mx:Script>
    protected function livepreview_creationCompleteHandler(event:FlexEvent):void
      var livePreviewFile:File = File.desktopDirectory.resolvePath("LivePreviewUrl.txt");
      if(livePreviewFile.exists)
           var fileStream:FileStream = new FileStream();
           fileStream.open(livePreviewFile, FileMode.READ);
           var livePreviewUrl:String = fileStream.readUTFBytes(fileStream.bytesAvailable);
           if(livePreviewUrl != "")
                livepreview.location = livePreviewUrl;
      else
      //TODO
      //Get some error error html url from server and use its value for location
      //livepreview.location = some error/hard coded url from server.;
    </mx:Script>
    <mx:VBox height="100%" width="100%" verticalAlign="middle" horizontalAlign="center">
      <mx:HTML id="livepreview" x="0" y="0" width="100%" height="100%"/>
    </mx:VBox>
    Is it possibe that background scripts executing in the webpage might be getting blocked by Flex causing the improper load?
    Any way to overcome this?

    If some property isn't available in Extension Builder environment, I think there is less that we can do. Perhaps there is any other control that might help me achieve what I want.
    Any ideas?

  • Problem in loading swf within Flex 1.5

    Hi all,
    I'm working with a flex project.The logo of that project is a
    spinning wheel created with flash tweens. I ve loaded that swf file
    into Flex using a Loader component. But despite of whatever
    framerate i ve specified, the wheel spins in a constant speed,
    which is a little bit slower than the expected speed of the wheel.
    Is there any option in flex to increase the framerate, or is there
    any other way to do this. Pls.help.

    And this for 1.5:
    "In Flex or Flash, a loaded SWF takes on the FrameRate of the
    parent SWF. In flex you can set the framerate value for the main
    application with "framerate" attribute in the
    <mx:Application> tag."
    Tracy

  • Problem loading modules in flex 4.5

    Hi,
    I'm new to flex 4.5 and working with Parsley 2.4 and SDK 4.5.
    I'm getting the following error when loading a module:
    VerifyError: Error #1053: Illegal override of ParsleyFlexModuleFactory in com.adobe.cairngorm.module.ParsleyFlexModuleFactory.
    at com.adobe.cairngorm.module::ParsleyModuleInfoProxy/get factory()
    at com.adobe.cairngorm.module::ModuleViewLoader/addLoadedModuleToStage()
    at Function/http://adobe.com/AS3/2006/builtin::apply()
    at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\hero_private\frameworks\projects\frame work\src\mx\core\UIComponent.as:12208]
    at mx.core::UIComponent/callLaterDispatcher()[E:\dev\hero_private\frameworks\projects\framew ork\src\mx\core\UIComponent.as:12146]
    Does anybody knows what is the problem?
    Thanks!
    Assaf

    Hello Nico,
    The problem just happened to me this morning, in order to fix it, it is enought to patch the Cairngorm Module Library in order to implement some methods witch extends IFlexModuleFactory, this new interface is done in order to check if an RSL is already loaded before loading, so modules and sub-applications will not load RSLs that are already loaded.
    You can patch it like that, in a project where you use the Cairngorm Module Library:
    1- Create the package "com.adobe.cairngorm.module" at the root source of the project.
    2- Download and paste in it the http://opensource.adobe.com/svn/opensource/cairngorm3/tags/cairngorm3-3.0.9/libraries/Modu le/src/com/adobe/cairngorm/module/ParsleyFlexModuleFactory.as
    3- In ParsleyFlexModuleFactory.as, remove the CONFIG::Flex4 tags (they're used for the conditional compilation but we don't need them because we'll indeed compile it for flex 4.5+ and not everybody uses a conditional compilation configuration).
    4- add this code :
                        public function get allowDomainsInNewRSLs():Boolean
                                  return factory.allowDomainsInNewRSLs;
                        public function set allowDomainsInNewRSLs(value:Boolean):void
                                  factory.allowDomainsInNewRSLs = value;
                        public function get allowInsecureDomainsInNewRSLs():Boolean
                                  return factory.allowInsecureDomainsInNewRSLs;
                        public function set allowInsecureDomainsInNewRSLs(value:Boolean):void
                                  factory.allowInsecureDomainsInNewRSLs = value;
                        public function addPreloadedRSL(loaderInfo:LoaderInfo, rsl:Vector.<RSLData>):void
                                  factory.addPreloadedRSL(loaderInfo, rsl);
    5- Add the spicelib-flex-2.4+.swc and the parsley-flex4-2.4+.swc (or the Parsley counterpart libraries) as support for the patched ParsleyFlexModuleFactory.
    6- Compile it with the SDK 4.5+ and that's done, it works now with the SDK 4+.
    (If you've got more projects where you use the Cairngorm Module Library, just copy and paste the new patched package and add thespicelib-flex-2.4+ and the parsley-flex4-2.4+.swc (or the Parsley counterpart libraries)
    That will only allows the library to be fully compatible with the SDK 4.5+
    (maybe it's good to keep Alex Uhlmann in touch with it allowing him to implement a conditional compilation or another version of the artifact the time it migrates completely its library in 4.5).
    (For the those who have a lot of Maven projects, it's preferable to re-compile the original Cairngorm Module Library with the code above in order to have the patched artifact in your maven repository, indeed, you won't have to remove the CONFIG::Flex4 tags or to add the spicelib, parsley libraries, the patched module is self-suffisent and a simple "mvn clean install" does the job)
    Note: Anyway, now, with Parsley 2.4, the flex module integration is FULLY tranparent and the need of this library is less important.
    Frédéric THOMAS

  • Load URL inside Flex 2

    How do you load a URL inside a targeted area (a container for
    example) of a Flex 2 application? Basically the same way you would
    load a URL into a frame in an HTML page. I see that there is a
    <mx:HTML> tag in Flex 3 but I believe that tag doesn't exist
    in Flex 2.

    Flex has a limited support of HTML as it does not have a
    built in browser functionality. If you would like to load an actual
    URL you can use an IFRAME loaded on top of your Flex application.
    If you search the web you can find a few examples of this. If you
    need real HTML rendering, Apollo is your only real solution at this
    time.
    Al

  • Open PS (CS-CS4) and load image from flex/air application?

    Hello,
    (Not sure wether to post this in the AIR forum or the FLEX forum?)
    I am at a loss on how to get my simple application to work. I have a small desktop air application that simply opens Photoshop and runs an action. I used switchboard and the application ran great on PC and MAC. However it only worked for CS3, and CS4 not CS or CS2?. Plus the size of switchboard was a bit large for my small app. I am willing to live with that though . I am using Air with Flex and wanted to know if perhaps there is a beter approach? All the application does is open photoshop, loads an image, and runs an action. Can I do this for all versions of Photoshop using switchboard? Can I do this without switchboard and just use javascript. The big issue is the Air app needs to open Photoshop, and most of the examples have me open PS first and then execute a script located in the PS directory. This needs to work outside of the PS directory. Any examples are appreciated.
    I have looked at the following:
    - SwitchBoard : only works for CS3-CS4 (on my tests)
    - PatchPanel: same issue, plus seperate SDKs
    - ExtendScript: requires script to be run from PS not Air

    Of course you may have some unstated reason for doing this in Air, but if not...
    Google photoshop droplet....
    Bob

  • Load time issues FLEX swf vs. FLASH swf

    Hello,
    We are building FLex and Flash apps running on Flash 10.1.  In our situation, the load time for a 1080x768 swf is slower when building in Flex than in flash.  We have tried useing the preinitialize event to set at least a loading message, but the delay happens before the preinitialize event.  It seems to take 1-2 seconds to load the FLex API perhaps?  The only visula we can see is the background color of the stage.  Even with a simple nearly empty main canvas, the load is slow enough to be noticable.  More importanly it is faster when using a FLASH swf ( or pure AS3), so it must be related to the FLex aspect.  Is there anyway to cache the common classes or maybe exclude some that are not used?
    Thanks,
    Jeff Schuenke

    The main point of RSLs is to gamble on improving download time of the SWF at
    networks speeds.  The gamble is that someone has already loaded the RSL so
    it gets picked up off the browser cache at hard-drive speeds.  If it isn't
    true, you pay a higher penalty because you are loading an RSL that has code
    in it you aren't using.  That's why the total payload is more.  For the
    record, only the SWF or the SWZ gets loaded, not both.  But even then the
    total payload would be more.
    At home, my DSL/WIFI network gets me about 70KB/sec, so saving 300K would be
    a noticable savings.  If you are loading off a hard disk, 300K probably
    won't be felt.
    The startup sequence of a SWF over a network (http or https):
    -start streaming in SWF bytes
    -when the first frame is downloaded (generally about 80-100K) see how many
    bytes are left to download and if there is a lot, show a progress bar
    -load any RSLs and wait for their download and initialization
    -update the progress bar until the rest of the SWF downloads
    -after the SWF downloads:
        -initialize styles
        -initialize resources
        -prepare embedded fonts
        -setup managers for popups, tooltips, dragging if needed
        -instantiate Application
            -verify and initialize all classes needed by Application
            -dispatch Application preinitialize
            -instantiate the initial set of children for the Application
            -dispatch Application initialize
        -update progress bar to show "initializing"
        -start validation of Application and its children
        -continue to do so until all children are measured and layed out
        -dispatch Application creationComplete
        -add Application to stage (actually systemManager)
        -dispatch Application applicationComplete
    The startup sequence of a SWF on a hard drive is different.  The entire SWF
    must be sucked into memory, unzipped (SWFs are zipped by default) and only
    then do we get to the steps where we show a progress bar, check for RSLs,
    etc.
    At 3MB, there might be a noticeable hit.  You can find a big image file and
    zip it to see if it comes out to about 3MB.  Then use the file system to
    copy it and see how long that takes and then unzip it and see how long that
    takes.
    Another place that causes delay is in the validation of children.  If the
    children's size are not stable right away (because data is coming in that
    affects their size) then several validation passes might be taking place.
    A common error is to create every child in the app, even ones that aren't
    seen or needed right away.  That adds work at validation time and delays the
    startup process.
    I would recommend that you use the performance profiler in Flex Builder to
    see where all the time is being spent.
    However, 3MB is a big SWF. Use of modules to chop off stuff not needed until
    "later" is recommended and will probably be the answer.

  • Poor performance when dragging item within a list loaded with images - Flex 4

    Hi,
    I have a custom built List component that is using a TileLayout. I am using a custom itemRenderer to load images into this list from our server (in this test, 44 images rae loaded). I have enabled dragEnabled and dragMove so that I can move items around within the list. The problem comes when I start dragging an item. The dragging operation is very slow and clunky.
    When I move the mouse to drag the item, the dropIndicator does not get refreshed for a few seconds and the movement feels like my PC is lagging pretty badly. I've also noticed that during this time my CPU usage is spiking up to around 25-40%. The funny part is I can scroll the list just fine without any lag at all, but the minute I drag the application starts to lag really bad. I do have some custom dragOver code that I used to override the dragOverHandler of the list control, but the problem persists even if I take that code out. I've tried with useVirtualLayout set to both true and false and neither setting made a difference. 
    Any ideas as to what could be causing the poor performance and/or how I can go abouts fixing it?
    Thanks a lot in advance!

    Ahh, good call about the Performance profiler. I'm pretty new to the profiling thing with Flex (haven't used Builder Pro before
    the Flex 4 beta) so please forgive me
    I found some interesting things running the performance profiler but I'm not sure I understand what to make of it all. I cleared the Performance Profile data when right before I loaded the images into the list. I then moved some images around and then captured the Profiling Data (If I understand Adobe correctly, this is the correct way to capture performance information for a set of actions).
    What I found is there is a [mouseEvent] item that took 3101ms with 1 "Calls" (!!!!). When I drill down into that item to see the Method Statistics, I actually see three different Callees and no callers. The sum of the time it took the Callees to execute does not even come close to adding up to the 3101 ms (about 40ms). I'm not sure what I can make of those numbers, or if they are even meaningful. Any insight into these?
    The only other items that stand out to me are [pre-render] which has 863ms (Cumulative Time) / 639ms (Self Time), [enterFrameEvent] which has 746ms / 6ms (?!), and [tincan] (what the heck is tincan?) which has times of 521ms for both Cumulative and Self.
    Can anyone offer some insight into these numbers and maybe make some more suggestions for me? I apologize for my ignorance on these numbers - as I said, I'm new to the whole Flex profiling thing.
    Many thanks in advance!
    Edit: I just did another check, this time profiling only from the start of my drag to the end of my drop, and I still see [mouseEvent] taking almost 1000ms of Cumulative Time. However, when I double click that item to see the Method Statistics, no Callers or Callees are listed. What's causing this [mouseEvent] and how come it's taking so long?

  • Loading time problems (flex 4.1)

    Hi.
    When I use the Flex SDK 4.1 the loading time of my application is about 30 seconds. When I let the compiler works with the SDK 4.0 the loading time is reduced to about 2 seconds.
    Is it normal?
    How do I speed up the loading process of the application???

    Run the profiler to see what is taking all that time.

  • PDF Not loading anymore on Flex Air Application

    Hi,
    Ever since I updated my Adobe Readed to Version 11, I can't view any PDF on my Flex Air Application anymore. Is there anything i need to do?
    AIR version: 3.6
    OS: Mac OS X
    Flex Builder: 4.6
    Adobe Reader: 11.0.02
    Flex components used: mx:HTML
    Please help.
    Thanks!

    Yes.  This is a well known bug in Air/Google Maps.  A lot of folks reported it on the Google Maps forums and here.  It was reported over a year ago with no action yet.  Major show stopper.
    For this main reason, I switched to the http://developer.mapquest.com AS3 API.  Plus they also recently released a Mobile Flash API that works great.
    I suggest you check it out because I don't anticipate any action on this issue on either side any time soon.
    Good luck!
    Don

  • How to load images in FLEX datagrid using Actionscript

    Hello friends,
    I need a small help from you. i am working in flex and in flash builder 4. Now my requirement was, i want to display images inside datagrid. I found a solution in mxml when searching in net. But i need a solution in actionscript. Can anyone help me out. I am new to flex environment.
    i am attaching the mxml code along with this.
    your help will be appreciated.
    Rajesh
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    Derrick Grigg
    [email protected]
    http://www.dgrigg.com
    created on Nov 3, 2006
    A sample of how to extend and use a data grid to allow custom drag images instead
    of the default 'row' based image.
    -->
    <mx:Application
        xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="absolute">
        <mx:ArrayCollection id="dataSource">
            <mx:Object image="assets/ibmlogo.jpg" name="Spy Camera" description="James Bond spy camera"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/cantena.jpg" name="Antena" description="Can shaped antena"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/globe.jpg" name="Floating globe" description="Gravity defying floating globe"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/orb.jpg" name="Orb" description="Blue glowing orb"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/putty.jpg" name="Putty" description="Reshapable putty"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/radiowatch.jpg" name="Radio Watch" description="Dick Tracy style radio watch"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/rover.jpg" name="RC Rovers" description="Battle RC Rovers"/>
            <mx:Object image="http://www.dgrigg.com/samples/flex/datagriddragproxy/images/products/ufo.jpg" name="Flying UFO" description="RC UFO for indoor-outdoor"/>
        </mx:ArrayCollection>
        <mx:VBox>
            <mx:DataGrid dataProvider="{dataSource}">
                <mx:columns>
                    <mx:DataGridColumn headerText="Product" dataField="name"/>
                    <mx:DataGridColumn headerText="Description" dataField="description"/>
                    <mx:DataGridColumn headerText="Image" dataField="image">
                        <mx:itemRenderer>
                            <mx:Component>
                                <mx:Image source="{data.image}"/>
                            </mx:Component>
                        </mx:itemRenderer>
                    </mx:DataGridColumn>
                </mx:columns>
            </mx:DataGrid>
        </mx:VBox>
    </mx:Application>

    Hi Rajesh,
    The link worked for me ...May be that sight might have been blocked due to firewall in your ComputerSettings or so.
    May be you can try copy and paste the link in the browser instead of directly clicking the link.
    Make sure when you copy your link is not break I mean you shouldn't have any spaces in between url.
    Thanks,
    Bhasker

  • Load Consunit via Flex Upload

    Dear All,
    I am trying to load consunit masterdata using a flexupload with the following setting.
    Use Row Type Indicators = True
    Flag Predecessor/Successor in Hierarchy = True
    I however get a short dump for row type indicator 5(Hierarchy Attributes) & 6 (hierarchy Relations).
    I am not sure if the way I am creating the file is correct ?
    Can someone help with a sample file or advise if they use this feature.
    I am keen to load the hierarchy information user successor/predecessor relation rather than the level.
    Best Wishes.
    Pralay

    Hi,
    Given below is a section of my file.
    *5;Predessor Fieldname;Consolidation group;Company;Period of First Consolidation;Period of Divestiture Acctg;Year of First Consolidation;Year of Divestiture Accounting;Divested at Beg. of Period;First Cons at End of Period
    5;/1FB/YAMCGCO;R9686C;009686;001;012;2007;9999;;
    5;/1FB/YAMCGCO;R9686C;009688;001;012;2007;9999;;
    5;/1FB/YAMCGCO;R9686C;009848;001;012;2000;9999;;
    5;/1FB/YAMCGCO;R9686C;009849;003;012;2007;9999;;
    5;/1FB/YAMCGCO;R9686C;009851;001;012;2000;9999;;
    Forf precessor fieldname , I have used the dummy avaialble in the catalog.
    Best Wishes.
    Pralay

Maybe you are looking for

  • Need help in processing an excel into SAP

    Hi All.. Im uploading an excel file from presentation server to SAP... Now the problem is hw to know how many records are there in the excel file.. Have coded like below... w_max = '65536'.   w_counter_lo = '2'.    "Start on row 1 because of header r

  • HTTP Error 403 - Forbidden

    Hello We're getting this error message randomly when surfing the Internet. We have websense running on our network to perform web content filtering and are using the ASA for the http/https redirects. We've contacted websense and they said this error

  • Color bug in Safari 7.1?

    Hello everybody, I've just downloaded new Safari 7.1 a few days ago and I discovered that the hsl colors programmed in a website CSS are wrong. Not the same with Firefox, Chrome, Opera (I didn't try IE). You can see what I say by having a look at the

  • "AD Organization Lookup Recon" Error

    Using the Active Directory Connector 9.1.1 Running "AD Organization Lookup Recon" I am getting this error, Exception in thread "QuartzWorkerThread-0" java.lang.NoClassDefFoundError: com/sun/jndi/ldap/ctl/PagedResultsControl at com.thortech.xl.integra

  • Flash Forms Stopped Working In ColdFusion 9

    We moved our websites, many of which use Flash Forms, from a server running ColdFusion 7 to a server running ColdFusion 9. At first all the Flash Forms in the various websites worked fine. However, on the same day all the Flash Forms stopped working