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
Post a Comment