Flex or Flash ? Flex saves time , Flash saves money !

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default Flex or Flash ? Flex saves time , Flash saves money !

    Pleas i need help with Flex and cold fusion ! I don?t get it how Flex can
    trigger CF Component ? I know how create component but i tried and i couldn?t
    get data from CF Component.. is there any article or website where explains for
    beginners with flex ? I have few web sites but still they explain to
    developers at advanced level , can some one explain by details ? i know i
    demand to much but I don?t know if i should start learn flex , because it's
    kind strange , most developers when the see new product they ask first
    question how this application works with Data Source (Query, access etc...) and
    i , as developer asked myself same question about flex and i see it's kind
    complicate , so i was wondering maybe i wrong ? And still it's strange how
    they can call Flex as a server when you need to send/get data through 'middle
    stage' ??.. I prefer to stay with Flash and not spend money for a new software
    ,but still I want to know how can I get data from CF component , maybe I will
    change my mined ?

    eddymilner Guest

  2. Similar Questions and Discussions

    1. How flex saves changes to database
      I'm new to flex and wondering what's the best way to save changes made on the client side into database.? With flash mx, we can use dataset to...
    2. Periodically saves as a .pdf file
      I create numerous Illustrator files daily. A few months ago, Illustrator sporadically began saving the files as .pdf, making me go back in and "save...
    3. Illustrator CS and Network Equals no Saves
      Has anyone else experienced this problem: An Illustrator 10 file exists on a network server. When opened, CS asks you if you want to update it, and...
    4. Ssssllllooowwww Saves w/CS
      I used to think 10 was slow! All the files I work on were created with 10. After opening them in CS and saving them in the current format, any change...
    5. Publisher 97 saves jpegs as gifs
      Hi I've just helped someone set up a website using publisher 97 (no recommended) see http://www.greeneggs.net.au/index.html For some reason when I...
  3. #2

    Default Re: Flex or Flash ? Flex saves time , Flash saves money!

    Go to the livedocs for flex ([url]http://livedocs.macromedia.com/[/url]) and search on 'coldfusion' or 'Using HTTP to connect to server-side scripts' or 'Working with External Data'

    fluffysocks Guest

  4. #3

    Default Re: Flex or Flash ? Flex saves time , Flash saves money!

    Patrick Gale hello ! Well im did but stil to complicate for me , i kind dont
    get it , i am good aonly in Cold Fusion , i did before alot ActionScripts but
    long time ago and i dont remeber it , bu in live DOC they explain to averge
    devloper level , i am not even biginner ........... it's just getting to hard
    the way they explain it ! I look for somthing to bigners , whatever thay dont
    provide , i probobly have to buy books !

    eddymilner Guest

  5. #4

    Default Re: Flex or Flash ? Flex saves time , Flash saves money!

    Yeah the livedocs and working with the Flex samples should help you but what your are asking for does require a bit of knowledge about Flex.
    fluffysocks Guest

  6. #5

    Default Re: Flex or Flash ? Flex saves time , Flash saves money!

    heres a quick example

    <mx:Script>
    <![CDATA[
    public function onLoginSubmitted(){
    wsService.login(username.text,password.text);
    }

    public function onLoginResult(){
    // Do what you need to
    }
    ]]>
    </mx:Script>


    <mx:WebService id="wsService"
    wsdl="http://www.xxxxxx.com/flexsys/authentication.cfc?wsdl"
    showBusyCursor="true">
    <mx:operation name="login" result="onLoginResult(event.result)"/>
    <mx:operation name="logout" result="onLogoutResult(event.result)"/>
    </mx:WebService>

    <mx:Button label="Login" click="onLoginSubmitted();" />

    mburns5150 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139