Changing skin
Posted: Wed Oct 15, 2008 4:53 am
Hi,
I'm using flex builder 3.
1. I need to customize top bar and scrolls. Is that possible?
2. Is it possible to hide top bar or change logo?
3. I need to use it at standalone application. I will use MDM Zinc. Will I have some problems with loading content? As fare as I see, it laodsd it passing localconnection parameters. Should I care? I can't start application now without web-server support now, but my application is standalone.
4. I have some error messages with your sdk samples. They according to label
undefined
at mx.controls::Label/commitProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\controls\Label.as:1245]
at mx.core::UIComponent/validateProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:5670]
at mx.managers::LayoutManager/validateProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:519]
at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:669]
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:8460]
at mx.core::UIComponent/callLaterDispatcher()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:8403]
I solved that by
public function SetPageNo(page:Number):void {
if( !isNaN(totalPages) ){
PageNo.text = page+" of "+totalPages;
}
}
Thanks
Ruslan
I'm using flex builder 3.
1. I need to customize top bar and scrolls. Is that possible?
2. Is it possible to hide top bar or change logo?
3. I need to use it at standalone application. I will use MDM Zinc. Will I have some problems with loading content? As fare as I see, it laodsd it passing localconnection parameters. Should I care? I can't start application now without web-server support now, but my application is standalone.
4. I have some error messages with your sdk samples. They according to label
undefined
at mx.controls::Label/commitProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\controls\Label.as:1245]
at mx.core::UIComponent/validateProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:5670]
at mx.managers::LayoutManager/validateProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:519]
at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:669]
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:8460]
at mx.core::UIComponent/callLaterDispatcher()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:8403]
I solved that by
public function SetPageNo(page:Number):void {
if( !isNaN(totalPages) ){
PageNo.text = page+" of "+totalPages;
}
}
Thanks
Ruslan