When i copy and paste my private URL to the browser , it is not
working. Below one is the code. What can be wrong.
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow
title="{ResumeBuilderModelLocator.getString
( 'profile.general.urlexplanationwindow.title' )}"
layout="vertical"
horizontalAlign="center"
showCloseButton="true"
close="close ();"
xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
import
com.zolio.control.profile.general.UrlExplanationWindowEvent;
import com.zolio.model.ResumeBuilderModelLocator;
private function close () : void
{
new UrlExplanationWindowEvent (
UrlExplanationWindowEvent.CLOSE,
this ).dispatch ();
}
]]>
</mx:Script>
<mx:Label
styleName="title"
text="{ResumeBuilderModelLocator.getString
( 'profile.general.urlexplanationwindow.public.title' )}" />
<mx:Text
width="100%"
selectable="false"
htmlText="{ResumeBuilderModelLocator.getString
( 'profile.general.urlexplanationwindow.public.description.html' )}" /
>
<mx:Image
source="{ResumeBuilderModelLocator.getClass
( 'profile.general.urlexplanationwindow.public.image' )}" />
<mx:Label
styleName="title"
text="{ResumeBuilderModelLocator.getString
( 'profile.general.urlexplanationwindow.private.title' )}" />
<mx:Text
width="100%"
selectable="false"
htmlText="{ResumeBuilderModelLocator.getString
( 'profile.general.urlexplanationwindow.private.description.html' )}" /
>
<mx:Image
source="{ResumeBuilderModelLocator.getClass
( 'profile.general.urlexplanationwindow.private.image' )}" />
</mx:TitleWindow>
Thanks,
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---