Flex Air application: open window on right bottom corner -


i developing flex air application , want open in right bottom corner notification..how do this.

thanks atul yadav

go project directory in flex builder. lets app name test

go test->src there should find test-app.xml

in find data regarding width, height, x , y coordinates of window opened.

change following lines there:

<!-- whether user can resize window. optional. default true. --> <resizable>false</resizable>  <!-- window's initial width in pixels. optional. --> <width>200</width>  <!-- window's initial height in pixels. optional. --> <height>300</height>  <!-- window's initial x position. optional. --> <x>800</x>  <!-- window's initial y position. optional. --> <y>600</y> 

you might have change x,y values according screen.

if want popup, should take @ popupmanager class adobe air.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -