Flex 1.5 and geographical data

Is it possible to show geographical data (ESRI Arcviw) in an
Flex 1.5 environment?
I want to implement Arcview geo maps in SAP NetWeaver Visual
Composer model and the Visual Composer deploys with Flash (Flex
1.5).

hey flex 2 beta is come out.. people dont work much with flex
1.2 or flex 3,,, cause there is much difference in coding and
syntax. so i recommend u start using the new version,,flex 2 beta 3
, cause later it might cause problem..

Similar Messages

  • Flex Builder 3 Beta 2 Expires early when using Flex 2 key, and new SDK

    I was told to use my Flex 2 key to extend the Beta period for
    Flex Builder 3, this worked, today it said I have 99 days left.
    but When I installed the latest SDK and restarted Flex
    Builder 3 Beta 2, it says it expires in 15 days.
    If I put the original SDK back and restart it goes back to 99
    days, so If I switch the SDKs while Eclipse is already loaded it
    seems to stay at 99 days, so now before I start Eclipse I have to
    move the orig SDK back, start Eclipse, then switch SDKs.
    This does not make much sense to me, why does the SDK affect
    the Builder Beta Period at all? is there a fix for this, I have a
    project due but 31st, and I would be screwed if it dies before
    then, I already have flex 2 but I cannot roll back as this project
    relies on Flex Builder 3 Functionality.

    I the probelm we are stating is that we DID enter our flex 2
    key and it DID initially set the expire date out, but I needed to
    use a later SDK and thats when the problem occured. without the
    latest the ImageSnapshot.captureImage does not work at all for me,
    so must use a later SDK. However this morning my Eclipse started
    stating 96 days remaining and I am still using the latest SDK, so
    no idea why it works sometimes and not others.

  • Flex 3.6 bitmap losing data

    I am losing the bitmapdata inside of the bitmaps image1 and image2 in the code below, its happening after the first round of ticks,
    so the first tick it loads image1 fine, second tick loads image 2 fine, after that the bitmaps have no data in them.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="1000" minHeight="1000" creationComplete="create()">
              <mx:Script>
                        <![CDATA[
                                  var imagexml:XMLList;
                                  private var tempTimer:Timer = new Timer(2000,0);
                                  private var url1:Loader = new Loader();
                                  private var url2:Loader = new Loader();
                                  private var image1:Bitmap;
                                  private var image2:Bitmap;
                                  private function create():void{
                                            url1.load(new URLRequest("com/imaging/assets/image1.jpg"));
                                            url1.contentLoaderInfo.addEventListener(Event.COMPLETE,image1load);
                                            url2.load(new URLRequest("com/imaging/assets/image2.jpg"));
                                            url2.contentLoaderInfo.addEventListener(Event.COMPLETE,image2load);
                                            tempTimer.addEventListener(TimerEvent.TIMER,tick);
                                            tempTimer.start();
                                  private function image1load(event:Event):void{
                                            var _image1:Bitmap = url1.content as Bitmap;
                                            image1 = new Bitmap(_image1.bitmapData);
                                  private function image2load(event:Event):void{
                                            var _image2:Bitmap = url2.content as Bitmap;
                                            image2 = new Bitmap(_image2.bitmapData);
                                  private var i:int=0;
                                  private function tick(event:TimerEvent):void{
                                            if(i==1){
                                                      i = 0;
                                                      imagePlace.load(image1);
                                            }else{
                                                      i = 1;
                                                      imagePlace.load(image2);
                                  protected function left(event:MouseEvent):void
                                            imagePlace.load("com/imaging/assets/image3.jpg");
                        ]]>
              </mx:Script>
              <mx:Image id="imagePlace" height="1000" width="1000"  />
              <mx:HBox>
                        <mx:Button label="Left" click="left(event)"  />
                        <mx:Button label="Right" />
              </mx:HBox>
    </mx:Application>

    Yes I was able to do this as well by creating a new image. Is there no flag/method for prevening flex from releasing that data?
    What I am most concerned about is that flex is releasing the bitmap data on a bitmap that while it is  used as the source for an image it is still its own object and entity. It seems sort of arbitrary to in this one case say, oh I am goign to release the objects you are hodling in memory because it is no longer being used in this image (even though the bitmap could be tied up doing other things).

  • Schedule type LineChart with clients and unavailable start and end dates

    I have been working on trying to get something in flex which will display a list of clients and their unavailability start and end dates.   I have attempted the line chart and the HLOC chart but have not seen success.  I do have the H or V grids working fine.  But getting the data to display in a line graph based upon start date and end date has been my challenge.  any suggestions
    Current Code:
        <s:Label x="0" y="5" text="Min Date" height="24" fontFamily="Times New Roman" verticalAlign="middle"/>
        <mx:DateField id="minDateField"
                      x="50" y="5"
                      formatString="MM-DD-YYYY"
                      selectedDate="{minDate}"
                      change="minDatefield_changeHandler(event)"/>
        <s:Label x="150"  y="5" text="Max Date" height="24" fontFamily="Times New Roman" verticalAlign="middle"/>
        <mx:DateField id="maxDateField"
                      x="200" y="5"
                      formatString="MM-DD-YYYY"
                      selectedDate="{maxDate}"
                      change="maxDatefield_changeHandler(event)"/>
        <mx:LineChart id="nonAvailsLC" x="0" y="40"
                      showDataTips="true"
                      dataProvider="{getNonAvailsResult.lastResult}"
                      creationComplete="nonAvailsLC_creationCompleteHandler(event)"
                      width="890" height="550">
            <mx:backgroundElements>
                <mx:GridLines gridDirection="both"/>
            </mx:backgroundElements>
            <mx:horizontalAxis>
                <mx:DateTimeAxis dataUnits="days" minimum="{minDate}" maximum="{maxDate}"
                                 labelUnits="days"/>
            </mx:horizontalAxis>       
            <mx:verticalAxis>
                <mx:CategoryAxis categoryField="user" labelFunction="getName"/>
            </mx:verticalAxis>       
            <mx:series>
                <mx:LineSeries xField="startDate" yField="user"
                               form="horizontal"/>
            </mx:series>
        </mx:LineChart>

    I guess I still have lots to learn about Flex and Renderers. I downloaded a Gantt chart with Code and they used the AdvancedDataGrid with renderers and such.  I modified the code to work for me. but if I had to create it myself right now, I would be in trouble.  Lots more to learn.

  • How can i improve speed of my application and reduce data transfer time ?

    Hello,
    My web application is adobe flex application which is build in flash builder 4.0 and use flex 4.0 SDK.
    I am using asp.net web service and cairngorm architecture in my project.
    Front : asp.net c# web project
    Middle : asp.net c# web service
    back : MS Sql server 2005
    When i run my applicaiton then i show that data transfer time between USA server to Indian client is so huge.
    Please suggest me all solutions approach so i am increase the speed of my application and reduce data transfer time.
    And please let me know how all approaches is reduce my data transfer speed.
    Thanks,
    Mohit.

    Hello,
    Thank you for your response,
    If i am using remote object insted of web services, can this will increase my application speed i
    It is big change so please give me guidance.
    My application have different type of request, some are very small request and transfer little amout of data from server to client, some request are send very huge amount of data from server to client .
    I am using JSON from data transfer in my current web service.
    Please provide some guidance on this.
    Thanks,
    Mohit

  • Tabs and ADG data

    I have 3 tabs each tab has a ADG, when a tab is pressed I load the data from a RO. When my app starts I load the first tab with data, works great. when I press on the next tab the ADG shows but does not show the data, if I tab away then back on the data loads. I know the data loads the first time it just does not show.
    I even tried to refresh in the tabChange event. but no go
    Any Thoughts?
    George

    Arg, I have been at this for days (as usual) I have tried all kinds of things. There are so many bugs in the flex components its crazy. I just want to tab to another part of my app and the data to display. Pressing a tab and seeing nothing is no good. And telling someone "oh yeah just press the previous tab and then press the tab you want again to show the data", not acceptable. Has anyone else delt with this? I have tried mesisng with the:
    creationPolicy, refresh(), validateNow(), callLater() nothing works. I know the data is there because I diplay the record length below the ADG on each tab and it shows the proper count. This is what gets called when a tab is pressed:
    private function onTabChanged(event:IndexChangedEvent):void
    switch(event.newIndex)
    case 0:
    myStates = "YY";
    brandfilter.includeInLayout = true;
    brandfilter.visible = true;
    brandfilter2.includeInLayout = false;
    brandfilter2.visible = false;
    brandfilter3.includeInLayout = false;
    brandfilter3.visible = false;
    rc.includeInLayout = true;
    rc.visible = true;
    rc2.includeInLayout = false;
    rc2.visible = false;
    rc3.includeInLayout = false;
    rc3.visible = false;
    NS.includeInLayout = true;
    NS.visible = true;
    NS2.includeInLayout = false;
    NS2.visible = false;
    NS3.includeInLayout = false;
    NS3.visible = false;
    myArea = NS.selectedItem.data;
    qDep.Dep(SupplierID, BrandID);
    Brands.Brands.send();
    gc.refresh();
    break;
    case 1:
    myStates = "BL";
    brandfilter.includeInLayout = false;
    brandfilter.visible = false;
    brandfilter2.includeInLayout = true;
    brandfilter2.visible = true;
    brandfilter3.includeInLayout = false;
    brandfilter3.visible = false;
    rc.includeInLayout = false;
    rc.visible = false;
    rc2.includeInLayout = true;
    rc2.visible = true;
    rc3.includeInLayout = false;
    rc3.visible = false;
    NS.includeInLayout = false;
    NS.visible = false;
    NS2.includeInLayout = true;
    NS2.visible = true;
    NS3.includeInLayout = false;
    NS3.visible = false;
    myArea = NS2.selectedItem.data;
    qDep2.Dep2(SupplierID, BrandID);
    Brands2.Brands2.send();
    gc2.refresh();
    break;
    case 2:
    myStates = "YA";
    brandfilter.includeInLayout = false;
    brandfilter.visible = false;
    brandfilter2.includeInLayout = false;
    brandfilter2.visible = false;
    brandfilter3.includeInLayout = true;
    brandfilter3.visible = true;
    rc.includeInLayout = false;
    rc.visible = false;
    rc2.includeInLayout = false;
    rc2.visible = false;
    rc3.includeInLayout = true;
    rc3.visible = true;
    NS.includeInLayout = false;
    NS.visible = false;
    NS2.includeInLayout = false;
    NS2.visible = false;
    NS3.includeInLayout = true;
    NS3.visible = true;
    myArea = NS3.selectedItem.data;
    qDep3.Dep3(SupplierID, BrandID);
    Brands3.Brands3.send();
    gc3.refresh();
    break;

  • Flex or Flash and SAP integration

    Hello All,
         I am in a requirement in which i need to connect to SAP server and fetch data from it and display back in Flex builder. I am a bit familiar with Flash Island intro but not much. So my question is what are the possible way we can fetch data from SAP and display the same in Flex builder like generally we fetch data in XML format and display the same. i know a bit about iframe but have zero knowledge bout how to use.
       So do you know if there is a better format of data we can fetch data and display the same in flex builder or flash island.
       What are the possible format we can fetch data from SAP and process data in flex builder.
    Cheers
    Mani

    1. Flex can read only XML.
    Do you mean we need to fetch data from SAP in XML format and we are ready to go with Flex builder or Flash Island. does it mean there is no any other format in which we can fetch data from SAP and process same in Flex builder.
    3. Create Web service of the same ejb and deploy the same on WEB Application Server.
    I dont know how to proceed with this way do you mean to write some code in EJV to fetch data from SAP using BAPIs or RFC and where to save data.
    it will be very helpfull if you can provide some practical example.
    thanks a lot
    Mani

  • Need help getting multiple user accounts access an app and its data

    Hello All,
    We recently got a new iMAC. We set up 3 user accounts in it. Two are admin accounts (one for me and one for my husband). The third is a user account with parental controls turned on (for our kid). Here is the basic setup:
    1. Accnt1 - admin
    2. Accnt2 - admin
    3. Accnt3 - user
    Now, I installed the complete national geographic application on the iMAC along with all the data. This is a 6 CD set that took several hours to install. I installed it logged in with Accnt1 (please see above). This installed all the data (150 years worth of data) onto the Documents folder for Accnt1.
    The installation was successful and when I launch the application, I can view all the data from Accnt1.
    So what is the problem? I tried logging in from Accnt2 and Accnt3. While the applciation is visible and will launch from both those user profiles, no data gets displayed. My guess is that this is because the data from the 6 CD's got installed onto the Documents folder for Accnt1 which is not viewable/accessible from Accnt2 and Accnt3. Therefore, nothing gets displayed.
    How do I fix this issue without reinstalling the software so that ALL 3 user accounts on my iMac can access the application AND its data?
    My guess is that I will have to provide user permissions/access to the Documents folder for Accnt1 such that both Accnt2 and Accnt3 are read/write. I tried to do that via the Finder and 'More info' operation wherein I click on the tiny lock icon at the bottom of the screen and add Accnt2 and Accnt3 as read/write. But this does not fix the problem for ALL folders further down and I dont want to fix each and every folder.
    Is there a quick way to resolve this problem? Can I fix this issue via a terminal window with a command?
    Please do help me out.
    Thanks in advance
    Anonymous76

    Move the data folder out of A's documents folder and into /Users/Shared. Then, control-option-command-drag the data folder from its new location back to its original location in A's documents folder. This makes an alias. Log in to the other user accounts and repeat the process for making aliases, to each user's Documents folder.
    You might also contact the developer and politely suggest that they learn how to write programs properly for Mac OS X.

  • Loading & converting geographical data to/in hana

    Current situation:
    source system: MS SQL Server 2008 containing spatial data
    SAP DS is our core loading technique
    SAP HANA our target.
    In HANA there is the column type ST_GEOMETRY or ST_POINT that can hold the geographical specific data. There are also functions how to use them (ST_Distance for example)...... but the main question is: how can i load this kind of data to HANA?
    Within SAP DS there is no special column type like ST_GEOMETRY:
    When trying to use blob (binary like spatial data) the DS failes. So my main question is, how can i correctly load geographical data from a non SAP system?

    Hi Henk,
    Officially only loading spatial data from HANA and Oracle is certified with Data Services 4.2.  When loading from Oracle, Data Services is generating a Sql statement that contains a function to convert the Oracle spatial field to WKT. See http://en.wikipedia.org/wiki/Well-known_text
    You could try to build a view in Sql Server that does the same. The geometry field in HANA is recognized by Data Services as a long (Hana sps7) or blob (Hana sps8), so you need a query statement that converts the output of your spatial field from the view into the appropriate data type in Hana. I'm not sure if its correctly loaded into Hana, but its the best you can do with the latest Data Services version.
    Another option would be to load Esri shape files into Hana, but thats a manual operation.
    Best regards,
    Stefan Koster

  • What is master data and transactional data?

    Hi abapers,
    I want to know the difference between master and transactional data?. What is the significane of both master and transactional data. At what situation master data is used, and at what situation transactional is used?. Please give me example of tables using them.

    Master Data:
    Master data is data that remains unchanged over a period of time. It contains information that is always needed in the same way. For example, all personal attributes can be stored in various SAP standard infotypes as records with specific validity which are called Master data.
    Master data are the critical nouns of a business and fall generally into four groupings: people, things, places, and concepts. Further categorizations within those groupings are called subject areas, domain areas, or entity types. For example, within people, there are customer, employee, and salesperson. Within things, there are product, part, store, and asset. Within concepts, there are things like contract, warrantee, and licenses. Finally, within places, there are office locations and geographic divisions. Some of these domain areas may be further divided. Customer may be further segmented, based on incentives and history. A company may have normal customers, as well as premiere and executive customers. Product may be further segmented by sector and industry.
    Transaction data:
    Data relating to the day-to-day transactions.
    Reward if helpful.
    Thanks.

  • Whats a good way switch between a real and mock data service?

    I have a new Flex application...and am contemplating the use of the Mate mock remote object capability.
    However, I'd like the application to be able to switch back and forth between a real and mock data service without recompilation.  And without loading the mock service objects unless they are needed.
    Whats a good way to handle this switching without recompiling the application?

    The only way I can think of not having ANY mock services in the production code is to take them out manually.  Your program for mocking purposes is going to have to be able to know where these services/object are and how to contact them.  I'm sure if it had to be done , you could use some mass of modules and event maps.
    Sincerely ,
      Ubu

  • Null and no data in field value

    I transferring sql from MS Access to Oracle 9i.
    In Access I have this
    select * from tableOne where firstname <> ''
    and firstname & '' = ''The firstname field can be edited where it could have data and the data could be deleted so I am trying to select records where firstname is not null and it has no data in it.

    I transferring sql from MS Access to Oracle 9i.
    In Access I have this
    select * from tableOne where firstname <> ''
    and firstname & '' = ''
    select * from tableOne where firstname IS NULL;
    - or -
    select * from tableOne where firstname IS NOT NULL;
    as appropriate.
    In Oracle there is no difference betwen being NULL and having data of length '0'

  • Problem with item and/or data during page-processing-PS/SQL

    Greetings!
    On my page I have a custom report (from 2 tables) and a small form-field, that adds and edits data in the report. After generating the form with the wizard I added an extra item, to store the id from one of the tables from the report data.
    Now, on submit a calculation should take place, that updates data according user input with a procedure in Page-Prosseses:
    declare a number;
    begin
    case :PLATZ
    when 1 then a:=100;
    when 2 then a:= 50;
    else a:=25;
    end case;
    update TBL_MITGLIEDER set TURNIERPUNKTE = TURNIERPUNKTE + a
    where ID_MITGL = :P14_ID_MITGL;
    end;
    :PLATZ is user selected (1,2,3), :P14_ID_MITGL stores the reference to TBL_MITGLIEDER (and shows the change, when I select another record)
    As I understand, that process should also run, when I submit a chance, but nothing happens then.
    But when I try to save a new record (which worked without any problems before adding that process), I get this error message:
    ORA-06550: line 1, column 64: PL/SQL: ORA-00957: duplicate column name ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
         Error      Unable to process row of table TBL_TURNIERSIEGER.
    Then, when I go back into the app-builder and try to run the page again, I get this message:
    ORA-01403: no data found
         Error      Unable to fetch row.
    I am not sure, if you guys have all the information you need, to know whats going on. Maybe this has to do with session-id and the whay, items are updated. I hope you can help me.
    Thanks, best regards,
    tobi

    First can you please post all log file errors
    >> I can't really give you a solution or specific recommendation since I did not saw this error yet myself, but on your own risk you can try:
    1. You may try to just register 'dts.dll' using regsvr32.exe, but this error may indicate a bigger problem with setup.
    If you are running SQL Server 64bit then try running this at the command prompt: %windir%\syswow64\regsvr32 "%ProgramFiles(x86)%\Microsoft SQL Server\90\dts\binn\dts.dll"
    2. You can try reinstall from start (In this case you have to make sure that you un-install all)
    [Personal Site] [Blog] [Facebook]

  • Sum of LineCount Including Groups and Detail Data On Each Page Used To Generate New Page If TotalPageLineCount 28

    Post Author: tadj188#
    CA Forum: Formula
    Needed: Sum of LineCount Including Groups and Detail Data On Each Page Used To Generate New Page If TotalPageLineCount > 28
    Background:
    1) Report SQL is created with unions to have detail lines continue on a page, until it reaches page footer or report footer, rather than using  subreports.    A subreport report is now essentially a group1a, group1b, etc. (containing column headers and other data within the the report    with their respective detail lines).  I had multiple subreports and each subreport became one union.
    Created and tested, already:
    1) I have calculated @TotalLineForEachOfTheSameGroup, now I need to sum of the individual same group totals to get the total line count on a page.
    Issue:
    1) I need this to create break on a certain line before, it dribbles in to a pre-printed area.
    Other Ideas Appreciated:
    1) Groups/detail lines break inconveniently(dribble) into the pre-printed area, looking for alternatives for above situation.
    Thank you.
    Tadj

    export all image of each page try like this
    var myDoc = app.activeDocument;
    var myFolder = myDoc.filePath;
    var myImage = myDoc.allGraphics;
    for (var i=0; myImage.length>i; i++){
        app.select(myImage[i]);
        var MyImageNmae  = myImage[i].itemLink.name;
        app.jpegExportPreferences.jpegQuality = JPEGOptionsQuality.high;
        app.jpegExportPreferences.exportResolution = 300;
           app.selection[0].exportFile(ExportFormat.JPG, File(myFolder+"/"+MyImageNmae+".JPEG"), false);
        alert(myImage[i].itemLink.name)

  • How to update link and import data of relocated incx file into inca file?

    Subject : <br />how to update link and import data of relocated incx file into inca file.?<br />The incx file was originally part of the inca file and it has been relocated.<br />-------------------<br /><br />Hello All,<br /><br />I am working on InDesignCS2 and InCopyCS2.<br />From indesign I am creating an assignment file as well as incopy files.(.inca and .incx file created through exporing).<br />Now indesign hardcodes the path of the incx files in inca file.So if I put the incx files in different folder then after opening the inca file in InCopy , I am getting the alert stating that " The document doesn't consists of any incopy story" and all the linked story will flag a red question mark icon.<br />So I tried to recreate and update the links.<br />Below is my code for that<br /><br />//code start*****************************<br />//creating kDataLinkHelperBoss<br />InterfacePtr<IDataLinkHelper> dataLinkHelper(static_cast<IDataLinkHelper*><br />(CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)));<br /><br />/**<br />The newFileToBeLinkedPath is the path of the incx file which is relocated.<br />And it was previously part of the inca file.<br />eg. earlier it was c:\\test.incx now it is d:\\test.incx<br />*/<br />IDFile newIDFileToBeLinked(newFileToBeLinkedPath);<br /><br />//create the datelink<br />IDataLink * dlk = dataLinkHelper->CreateDataLink(newIDFileToBeLinked);<br /><br />NameInfo name;<br />PMString type;<br />uint32 fileType;<br /><br />dlk->GetNameInfo(&name,&type,&fileType);<br /><br />//relink the story     <br />InterfacePtr<ICommand> relinkCmd(CmdUtils::CreateCommand(kRestoreLinkCmdBoss)); <br /><br />InterfacePtr<IRestoreLinkCmdData> relinkCmdData(relinkCmd, IID_IRESTORELINKCMDDATA);<br /><br />relinkCmdData->Set(database, dataLinkUID, &name, &type, fileType, IDataLink::kLinkNormal); <br /><br />ErrorCode err = CmdUtils::ProcessCommand(relinkCmd); <br /><br />//Update the link now                         <br />InterfacePtr<IUpdateLink> updateLink(dataLinkHelper, UseDefaultIID()); <br />UID newLinkUID; <br />err = updateLink->DoUpdateLink(dl, &newLinkUID, kFullUI); <br />//code end*********************<br /><br />I am able to create the proper link.But the data which is there in the incx file is not getting imported in the linked story.But if I modify the newlinked story from the inca file,the incx file will be getting update.(all its previous content will be deleted.)<br />I tried using <br />Utils<IInCopyWorkflow>()->ImportStory()<br /> ,But its import the incx file in xml format.<br /><br />What is the solution of this then?<br />Kindly help me as I am terribly stuck since last few days.<br /><br />Thanks and Regards,<br />Yopangjo

    >
    I can say that anybody with
    no experience could easily do an export/import in
    MSSQLServer 2000.
    Anybody with no experience should not mess up my Oracle Databases !

Maybe you are looking for

  • ITouch does not appear in iTunes - file processes missing

    I recently updated to 9.2 about three weeks ago. When I plug in my iTouch, it is recognized by Windows and charges; however, it never appears in iTunes. I have a classic iPod. iTunes will recognize it and sync it. When I looked into the file processe

  • I am finding flash pictures on my 4s are washed out. What am I doing wrong?

    Why can't I take flash photos without finding washed out?

  • Quirky Magic Mouse Behavior

    I'm having trouble with quirky behavior of a Magic Mouse that's being used with an Intel iMac. In the Mouse panel of System Preferences I have the "Two Finders" option of "Left/Right to Navigate" set on. When in a Finder window set to "list" view I f

  • Audio file import questions

    1.) What audio bit rate is considered good enough for a project in Premiere that might be played on the web or DVD? I'm guessing 128k is too low? 2.) Does it cause any problems to work with different audio files in a sequence that have different bitr

  • WiFi connections

    Hello, I have the unlimited calls to France subscription. I have a few questions: 1. When I purchased the subscription, it said that I had free wifi use as well when there are hotspots. Does that mean I have free wifi and data or just wifi access? If