Results 1 to 10 of 10
  1. #1

    Default Flex application suggestions


    Mga bro, naa ra miy 1 month to cough up a Flex project. Unsa inyong suggestions?

    NOTE:
    > Nagsugod pa mi ug kat-on aning Flex. So far, so promising!
    > Ganahan unta mi nga Mobile application among himuon. (Preferably game apps or other useful apps)
    > Degree of difficulty (to code): Moderate

  2. #2

    Default Re: Flex application suggestions

    himu sa og simple project (kanang pwede na i-pass) before mo mo-adto sa Game or Apps. You only have one month anyways og dili ra kana inyu subject.. suggestion lang..

  3. #3

    Default Re: Flex application suggestions

    Quote Originally Posted by marcdaven View Post
    Mga bro, naa ra miy 1 month to cough up a Flex project. Unsa inyong suggestions?

    NOTE:
    > Nagsugod pa mi ug kat-on aning Flex. So far, so promising!
    > Ganahan unta mi nga Mobile application among himuon. (Preferably game apps or other useful apps)
    > Degree of difficulty (to code): Moderate
    How about online shops? Kaya ra kaau na sa flex, and it is not that difficult to make (considering the 1 month span of time). You have the option to go mobile as well. Or you can support both mobile and not mobile

  4. #4

    Default Re: Flex application suggestions

    Quote Originally Posted by Maikeru View Post
    How about online shops? Kaya ra kaau na sa flex, and it is not that difficult to make (considering the 1 month span of time). You have the option to go mobile as well. Or you can support both mobile and not mobile
    Mobile unta akong ganahan bro. An application that is at the useful or fun to have.

    However, I may need some help with my Flash Builder code
    > Whenever I try to run this code:

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
    			   xmlns:s="library://ns.adobe.com/flex/spark" 
    			   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" layout="horizontal">
    	<fx:Script>
    		<![CDATA[
    			import mx.controls.Alert;
    			
    			private function onClick():void{
    				Alert.show("Hello "+userName.text);				
    			}
    		]]>
    	</fx:Script>
    	<fx:Declarations>
    		<mx:Label text="Your Name: " />
    		<s:TextInput id="userName" />
    		<s:Button label="Press Me!" click="onClick()" />
    	</fx:Declarations>
    </mx:Application>
    (Nagsunod rako ani sa usa ka tutorial sa youtube.)

    Walay output mugawas sa akong browser. I've been searching for answers sa internet about blank outputs but to no avail, wala koy nakit-an.
    Is there something wrong sa akong code? How will fix a blank output page?

    (PS: I also tried having just to have a simple code of showing "Hello World" in an Adobe Air application pero the same gihapon ang result - BLANK Output window)

  5. #5

    Default Re: Flex application suggestions

    Quote Originally Posted by marcdaven View Post
    Mobile unta akong ganahan bro. An application that is at the useful or fun to have.

    However, I may need some help with my Flash Builder code
    > Whenever I try to run this code:

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
    			   xmlns:s="library://ns.adobe.com/flex/spark" 
    			   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" layout="horizontal">
    	<fx:Script>
    		<=!=[=C=D=A=T=A=[
    			import mx.controls.Alert;
    			
    			private function onClick():void{
    				Alert.show("Hello "+userName.text);				
    			}
    		]=]=>
    	</fx:Script>
    	<fx:Declarations>
    		<mx:Label text="Your Name: " />
    		<s:TextInput id="userName" />
    		<s:Button label="Press Me!" click="onClick()" />
    	</fx:Declarations>
    </mx:Application>
    (Nagsunod rako ani sa usa ka tutorial sa youtube.)

    Walay output mugawas sa akong browser. I've been searching for answers sa internet about blank outputs but to no avail, wala koy nakit-an.
    Is there something wrong sa akong code? How will fix a blank output page?

    (PS: I also tried having just to have a simple code of showing "Hello World" in an Adobe Air application pero the same gihapon ang result - BLANK Output window)
    I'm not that familiar with Flex programming. I haven't started studying it just yet. I installed FlashDevelop in my PC but haven't touched it since. Lol. I'm preoccupied lately with my current projects so didn't have much time to spend for it.

    Anyway, I tried your code, and yes there is no display. So I tried to experiment a bit.
    When I removed
    Code:
    <fx:Declarations></fx:Declarations>
    The code worked fine.
    I researched a bit about <fx: Declarations>. According to Adobe® Flex® 4 Language Reference, this is used to to declare non-default, non-visual properties of the current class.
    For more information see in here: Adobe®*Flex®*4*Language*Reference (Flex 4)

    So this is the current code that worked in my environment.
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
    			   xmlns:s="library://ns.adobe.com/flex/spark" 
    			   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" layout="horizontal">
    	<fx:Script>
    		<![CDATA[
    			import mx.controls.Alert;
    			
    			private function onClick():void{
    				Alert.show("Hello "+userName.text);				
    			}
    		]]>
    	</fx:Script>
    	
    		<mx:Label text="Your Name: " />
    		<s:TextInput id="userName" />
    		<s:Button label="Press Me!" click="onClick()" />
    	
    </mx:Application>
    I hope this helps.

  6. #6

    Default Re: Flex application suggestions

    Bro, salamat kaayo kay ning work na jud ang akong code when I used your code pud.

    Anyways, naa lang koy i-ask about ani:

    Quote Originally Posted by Maikeru View Post
    I researched a bit about <fx: Declarations>. According to Adobe® Flex® 4 Language Reference, this is used to to declare non-default, non-visual properties of the current class.
    For more information see in here: Adobe®*Flex®*4*Language*Reference (Flex 4)
    Based sa akong nakit-an nga video sa Youtube, iya man gisulod sa <fx: Declarations> tag ang mga elements niya. This is where I followed the code: Beginning Adobe Flex Tutorial: Your First Flex Program Part II

    Nagwonder lang ko ngano ning work sa iyaha pero sa ako kay wala? Anyways, if naay banggiitan nga programmer diha that knows Flex, please enlighten us.

    (OT: Pwede magpatudlo ko ninyo sa Flex? Hehe..)

  7. #7

    Default Re: Flex application suggestions

    Quote Originally Posted by marcdaven View Post
    Bro, salamat kaayo kay ning work na jud ang akong code when I used your code pud.

    Anyways, naa lang koy i-ask about ani:



    Based sa akong nakit-an nga video sa Youtube, iya man gisulod sa <fx: Declarations> tag ang mga elements niya. This is where I followed the code: Beginning Adobe Flex Tutorial: Your First Flex Program Part II

    Nagwonder lang ko ngano ning work sa iyaha pero sa ako kay wala? Anyways, if naay banggiitan nga programmer diha that knows Flex, please enlighten us.

    (OT: Pwede magpatudlo ko ninyo sa Flex? Hehe..)
    I watched the link you gave in your reply, in the video it seems the <fx: Declaration> was not used either.

  8. #8

    Default Re: Flex application suggestions

    master charles...heheheh...

  9. #9

    Default Re: Flex application suggestions

    Quote Originally Posted by Maikeru View Post


    I watched the link you gave in your reply, in the video it seems the <fx: Declaration> was not used either.
    Ah, wala lang cguro nako nabantayan ug maayo. Sorry kaayo sir! So far, nagfollow ko karon ug tutorial from Lynda on how to create mobile applications for Android OS. I hope makaya ra ni bro in one month.

    Quote Originally Posted by idolpunk View Post
    master charles...heheheh...
    OT: Master! IMBA PHP programmer! haha

  10. #10

    Default Re: Flex application suggestions

    Quote Originally Posted by marcdaven View Post
    Ah, wala lang cguro nako nabantayan ug maayo. Sorry kaayo sir! So far, nagfollow ko karon ug tutorial from Lynda on how to create mobile applications for Android OS. I hope makaya ra ni bro in one month.



    OT: Master! IMBA PHP programmer! haha
    lol, naa gud panahon nga ingAna, naa tay makaligtaan. Anyway, good luck with your studies Kaya ra jud na nimo

  11.    Advertisement

Similar Threads

 
  1. The Best Pulutan: What can you suggest?
    By jhnpl in forum Food & Dining
    Replies: 199
    Last Post: 11-10-2009, 07:54 PM
  2. Replies: 8
    Last Post: 02-05-2009, 02:13 PM
  3. Replies: 40
    Last Post: 11-02-2007, 08:39 PM
  4. SUGGESTIONS pls...
    By anniepetilla in forum Politics & Current Events
    Replies: 90
    Last Post: 05-03-2007, 11:03 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
about us
We are the first Cebu Online Media.

iSTORYA.NET is Cebu's Biggest, Southern Philippines' Most Active, and the Philippines' Strongest Online Community!
follow us
#top