1: <!--View-->
2: <mx:HDividedBox width="100%" height="100%">
3: <mx:Accordion width="225" height="100%">
4: <mx:VBox label="User Infomation" width="100%" height="100%">
5:
6: <!--Wordpress Username-->
7: <mx:Label
8: text="Username:"
9: fontWeight="bold"/>
10: <mx:TextInput id="txt_username"
11: text="admin"/>
12: <!--Wordpress Password-->
13: <mx:Label
14: text="Password:"
15: fontWeight="bold"/>
16: <mx:TextInput id="txt_password"
17: displayAsPassword="true"
18: text="fred"/>
19: <!--Wordpress Website-->
20: <mx:Label
21: text="Your Website:"
22: fontWeight="bold"/>
23: <mx:TextInput id="txt_website"
24: text="{ wordpressEndpoint }"/>
25:
26: </mx:VBox>
27: <mx:VBox label="Methods without Parameters" width="100%" height="100%">
28:
29: <!--GetUsersBlogs-->
30: <mx:Button
31: click="getUsersBlogs()"
32: label="Get Users Blogs"
33: width="100%"/>
34:
35: <!--GetUserInfo-->
36: <mx:Button
37: click="getUserInfo()"
38: label="Get User Info"
39: width="100%"/>
40:
41: </mx:VBox>