Is it possible to change application state from a component?

I was wondering if it is possible to change application state from within a custom component and if so, what would the syntax be if I had an application named "zzz" and I wanted to change the app state from "state1" to "state2" from my component?
Thanks!

Hi,
you always have a static class Application.
Application.application will be the root component. After that you can change it state.
Application.application.currentState = "state2";
But it's not the best way to change states. It's better to dispatch events from components and change states in listeners.

Similar Messages

  • Changing container State from a component

    Hi, I try to change the state of an application from a button
    inside a mxml component. I found a way for this by handling click
    event inside the component and dispatch event to the container (see
    the code below). But my problem is that any click is dispatched ! I
    would like that only one button dispatch this event, or better :
    calling a container's function from the button inside my component
    ! Is this possible ?
    Thanks for your help
    Here is a part of the container code :
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="570" height="360" xmlns:local="*">
    <mx:Script>
    <![CDATA[
    import flash.events.Event;
    public function handleCloseEvent(eventObj:Event):void {
    currentState='carte';
    ]]>
    </mx:Script>
    <mx:states>
    <mx:State name="liste">
    <mx:AddChild position="lastChild">
    <local:liste_vin_region click="handleCloseEvent(event);"
    id="fenetre">
    </mx:AddChild>
    </mx:State>
    <mx:State name="carte"/>
    </mx:states>
    </mx:Canvas>
    And the component code :
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="514" height="300" xmlns:local="*">
    <mx:Metadata>
    [Event(name="click", type="flash.events.Event")]
    </mx:Metadata>
    <mx:Script>
    <![CDATA[
    import flash.events.Event;
    // Redispatch event.
    private function
    handleCloseEventInternally(eventObj:Event):void {
    dispatchEvent(eventObj);
    ]]>
    </mx:Script>
    <mx:states>
    <mx:State name="liste"/>
    </mx:states>
    <mx:TitleWindow layout="absolute" left="10" top="10"
    bottom="10" right="10" id="titlewindow1"/>
    <mx:Button y="14" label="X" right="19" width="29"
    click="handleCloseEventInternally(event);" id="button1"/>
    </mx:Canvas>

    Yes ! That's exactly what I need !
    I've tried to do : this._parent like in Flash, but no
    result...
    Thanks for your help, parentApplication is right for me
    !

  • 8.1, Change pageflow state from event listener

    Hi,
    I've implemented an event listener in a backing file (like in the custom event
    tutorial ).
    The backing file is assigned to a portlet.
    Is it possible to change the state of the portlets pageflow when an event is received?
    I want to reset the pageflow so that the 'begin' action is executed again.
    From the tutorial and sample portal I found out, that how to change the window
    mode or the visibility, but I can't find any methods for setting the current url/action.
    Another solution would be to setup a listenTo relationship and redirect the incoming
    actions to the 'begin' action. What I'm missing here is the possibility to trigger
    such an event from a page flow (which is possible when using custom events). Can
    this be done?
    Bye
    Achim

    try to go to Control Panel\All Control Panel Items\Administrative Tools
    Disable and set the trigger as never at task scheduler > time sync
    You can also try to clean boot
    http://support.microsoft.com/kb/929135/en-us

  • Toggle button to "Down" when changing application state?

    I am trying to make a button component modal so that when I click it, the application changes to a different state and the button stays in the button "down" state. Then if I click a different button, the application state changes again, the first button changes to the "up" state and the second button changes to the "down" state. Basically, I want radio button actions, but on a styled button.
    Is there a way to do this in Catalyst or do I have to handle this in the FB code?

    I had some difficulty getting Catalyst to allow me to set the states of toggle buttons added to my project. So, I decided to create my own custom toggle button to give me the ability to fully style it. Here's the process I followed:
    converted my styled "normal" buttons back to artwork
    Converted the artwork to a custom component
    Created states for custom component for Unselected, Selected, Over, etc.
    Associated the artwork from Illustrator to the appropriate states for the custom component
    set the custom component state (e.g., unselected, selected...) for the each of the appropriate application states
    set the component action to "transition to state" when the custom component is "clicked"
    Renamed the custom component in the library to "CustomToggleButton"
    Exported the CustomToggleButton library component and then imported it so it was reusable in my library

  • Is it possible to change the status from Bid Rejected to Bid submitted?

    Hi there.
    We are working in SRM 4.0.
    One user rejected a bid, but it was a mistake. Is it possible to change the status from Bid Rejected to Bid submitted?
    We would like to modify the status from Bid Rejected to Bid submitted or Awaiting Approval to Bid submitted in order to solve errors.
    Thanks and regards.
    Raúl Moncada.

    Hi ,
    Use Function Module : BBP_PD_BID_STATUS_CHANGE
    Supply Activity = 'QOSU' .
    Regards,
    Sachin S M

  • Is it possible to change the costing from moving average to standard??

    hey all,
    i wana know is it possible to change the costing from moving average to standard or vice-versa in the item master??
    cheers

    Hi Satish
    Please look at the documentation from SAP for using this function. I just looked on my drive and can't find the document I used to have for this.
    Just setting quantities to zero will not work as all open P/O, S/O, etc must also be closed before you can run the Inventory Valuation Method function. This is all detailed in the document.
    I have done this successfully before for a client with over 4000 items, so I have been through the process. Please let me know if you need assistance.
    Kind regards
    Peter Juby

  • Is it possible to change Application Module at runtime?

    Hi all!
    I'm trying to change Application Module for my page at runtime. I've used such code:
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        OAWebBeanContainer webBeanContainer = (OAWebBeanContainer) webBean;
        webBeanContainer.setApplicationModuleDefinitionName("mypackage.MyAM");       
        webBeanContainer.setApplicationModuleUsageName("MyAM");
      }but I see that Application Module haven't been changed.
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
       System.out.println(pageContext.getApplicationModule(webBean).getFullName());
       System.out.println(pageContext.getApplicationModule(webBean).getDefFullName());   Is it possible to change Application Module at runtime?
    How can I do it properly?
    Pavel

    The AppModule for a page is configured in an attribute of the root element of that page. Maybe that attribute is available at the OAWebBean parameter in processRequest.

  • How to access application state from stateless web service?

    I have a beginner J2EE question. After reading through J2EE tutorial, I still don't know how to create an application that would run on J2EE server, and which would have a web service interface to other world, and which would have several threads running, which would connect to other enterprise applications via TCP? Because if I understand it correctly, web service requires a stateless session bean, which means that it can't access any stateleful session bean (except always create one and remove it instantly). So there seems to be no way to store application state and have running threads.
    I'm asking this because .NET seems to have a very simple Application dictionary, which can save all application objects, including threads, and it is very easy to access this Application state from a stateless web service. Isn't there any similar functionality in J2EE? And if not, how it should be done in Java world then?
    I guess that the Connector architecture could be the solution, but it is not documented in the tutorial.

    There's nothing in the J2EE spec that says that you have to use Web Services. Web Services by definition are stateless.
    If your requirements are that you have to use a session bean along with a Web Service, then the architecture needs to be rethought, because it doesn't seem to me that Web Services are what you want.
    That said, you can use a hybrid. You can expose some of the functionality of your application as Web Services while the remaining is implemented in a classic J2EE type framework that is stateful.
    I would also think that you could store your application state via entity beans. You could save and load them when the web service is accessed. An entity bean doesn't require a database... just some form of persistence (could be an XML file for instance).
    You need to decide which components of J2EE make sense when and where.

  • How change application´s state from a component´s function

    Hi, I´m doing an Flex application,
    I have created a component "usersRegister", that have next
    function:
    private function comprobacionBBDD():void{
    if(numero>0){
    mensaje="Perfect.\n\n\n Wellcome.";
    HERE I WANT CHANGE THE STATE
    }else if(numero==-1){
    mensaje=mensaje+"error1";
    }else if(numero==-2){
    mensaje=mensaje+"Error2 \n\n";
    Alert.show(mensaje);
    The problem is that when in my application I instances the
    component, I would like to change my application´s state when
    the first "if" from the function is true.
    Can you help me??
    thanks in advance, and excuse my bad english.

    Really thanks. I have try it and works perfectly.

  • TM Schema - Is it possible to change IT2001/2 from a Rule?

    Hello gurus,
    here the TM scenario is:
    - CATS via ESS for Time Recording;
    - The employee enters the <b>actual</b> Clock-In / Clock-Out manually & releases;
    - The Manager approves and Time data arrives to HR (IT2001/2002).
    I am using a copy of the Schema TM04 and, after I rounded my TIP pairs, I would need to Update the IT2001/2002 with the new rounded times.
    Is it possible to write into the IT2001/2002?
    If not, do you have any ideas about how to have in IT2001/2002 the rounded values only?
    Every help would be very appreciated,
    Sofia

    Hi,
    you always have a static class Application.
    Application.application will be the root component. After that you can change it state.
    Application.application.currentState = "state2";
    But it's not the best way to change states. It's better to dispatch events from components and change states in listeners.

  • Is it possible to change supplementation language from German to English ?

    Hi,
    We installed Czech language in SAP ERP 2005 System. The language was classified with  German as supplementation language. The supplementation was successfully executed from SMLT transaction.
    We copied several clients. After time we recognized that  English would be better choice as supplementation language for our users. Is it possible to change it ?
              Thanks
                   Jiri

    Hi Jiri,
    Go to SMLT -> click on the information button beside the Language you need ro supplement (in this case Czech) and click on the change button, then just select english as supplement language and save.
    Regards
    Juan

  • Possible to change a 9900 from ENterprise to oem?

    Hello
    Is it possible to change a Bold 9900 with Enterprise Firmware to oem that i can connect to a Exchange Server?
    Or are there other ways to do it?
    Kind Regards

    You need a BlackBerry data plan (BIS) on your line. Once you do and the service books are pushed to the device, you will have the option to set up Internet email.
    If you are paying for BIS and don't have the option to set up Internet email, call your carrier customer support. Could be the carrier goofed on their side of the setup.
    - Ira

  • Possible to change the datasource from a business-view to a Sql Command ?

    Hello,
    When a business view contains a lot of elements it takes a while just to open the report.
    We'd like to keep the BV as the dictionnary, but,
    once the report design completed,
    we'd like to disconnect the business view and replace it by the Sql command which can be seen in the menu option 'show SQL query'.
    Is it possible via the RAS sdk ?
    Did somebody experience this ?
    How to proceed ?
    Thanks a lot
    Alain

    Hi Ted,
    I'm thinking opening a Case for this problem of opening reports based on a big BV.
    We can't really reduce the BV, since it is the dictionnary and we need the whole thing...
    I'm wondering why it is impossible to change the Datasource if the tables and fields underneath are identical.
    Is it impossible to change the fields' mapping ?
    The other solution, as you suggest, is to create a report from scratch, create a new Datasource with the Sql command format, and rebuild the report... I agree it looks like a big job...
    Do you know if it is possible to export the report in XML for instance, change the XML, and then re-import ?
    Thanks for your Help.
    Alain

  • Possible to change sidebar div from left to right?

    I'm just starting to design completely using CSS...very tough to change. I have a home page roughed out with a sidbar nav on the left BUT I'm thinking it may be a bit more mobile friendly if I move it to the right and allow the content to be all the way to the left. Here is my initial design: http://www.duenorthdesign.com/pcm
    Then I switched a float left for the sidebar to float right. Then deleted the large left margin of my content div so it went to the left. Here is what I have: http://www.duenorthdesign.com/pcm/index-rightnav.html
    From here, I just don't know what to do! I'm sure there are other things to change, but it's just not very obvious to me. Tables seemed so much more designer-friendly   Thanks in advance.

    The new HTML source code follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz' rel='stylesheet' type='text/css'/>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>PCM Credit Union, Green Bay, Wisconsin - People Caring More</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css"></style>
    <script type="text/javascript">
    function MM_showHideLayers() { //v9.0
      var i,p,v,obj,args=MM_showHideLayers.arguments;
      for (i=0; i<(args.length-2); i+=3)
      with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
        if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
        obj.visibility=v; }
    </script>
    <link href="css/duenorth.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="twoColFixLtHdr">
    <div id="memberList">
      <p><strong>Employee Groups that are <a href="#"><img src="images/x.png" alt="close" width="40" height="37" align="right" onclick="MM_showHideLayers('memberList','','hide')" /></a><br />
        eligible for PCMCU membership.</strong></p>
      <p>View <a href="membership.html">Membership page</a> for complete details.</p>
      <p>Paper Converting Machine Company<br />
        Ameriprise Financial <br />
        Apple Creek Inn<br />
        Bay Motel and Restaurant<br />
        Bayland Buildings, Inc.<br />
        Bayland Insurance <br />
        Brown County Graphics <br />
        CPR and Associates <br />
        Econo Care Cleaners<br />
        Foreman Heating <br />
        Green Bay Embossing<br />
        Green Bay Packaging Council (Local Unions 2-0597, 2-1096, 2-1319, 2-1321)<br />
        Heyrman Printing <br />
        Highview Custom Fabricating<br />
        Interstate Tire &amp; Auto<br />
        J-H Appraisal <br />
        L.A. Edlbeck Co. <br />
        MECA &amp; Technology Machine<br />
        MEG Tec Systems <br />
        Modern Plastics<br />
        Noeldner Enterprises<br />
        Northeast Insurance Center <br />
        Northern Engraving<br />
        PDQ Manufacturing<br />
        Quality Truck &amp; Equipment<br />
        Robinson Metal, Inc.<br />
        Rol-Tec, Inc.<br />
        S &amp; M Tool<br />
        SIA of Wisconsin, a subsidiary company of Bayland Insurance<br />
        SystemCare Inc.<br />
        Ultimate Cleaning<br />
        Valley Plating &amp; Fabricating</p>
    </div>
    <div id="container">
      <div id="header"><a href="javascript:;" onclick="MM_showHideLayers('memberList','','show')"><img src="images/h_header.png" alt="Welcome to PCM Credit Union" width="950" height="222" border="0" usemap="#member" /></a>
        <map name="member" id="member">
          <area shape="rect" coords="190,179,223,209" href="#" alt="memberlist" onclick="MM_showHideLayers('memberList','','show')" />
        </map>
        <!-- end #header -->
      </div>
      <div class="navtop" id="navmain">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a class="MenuBarItemSubmenu" href="#">membership</a>
            <ul>
              <li><a href="whoCanJoin.html">mission</a></li>
              <li><a href="whoCanJoin.html">who can join</a></li>
              <li><a href="location.html">location &amp; hours</a></li>
              <li><a href="fees.html">low fee schedule</a></li>
              <li><a href="disclosures.html">disclosures</a></li>
              <li><a href="contact.html">contact us</a></li>
              <li><a href="newsletters.html">newsletters</a></li>
              <li><a href="forms.html">apply online</a></li>
            </ul>
          </li>
          <li><a class="MenuBarItemSubmenu MenuBarItemSubmenu" href="#">deposits</a>
            <ul>
              <li><a href="rates.html">rates</a></li>
              <li><a href="savings.html">savings</a></li>
              <li><a href="checking.html">checking (share draft)</a></li>
              <li><a href="certificates.html">certificates</a></li>
              <li><a href="moneyMarket.html">money market</a></li>
              <li><a href="ira.html">IRA accounts</a></li>
              <li><a href="checkCard.html">check card</a></li>
              <li><a href="http://www.?????" target="_blank">check re-order</a></li>
              <li><a href="lifeSavings.html">life savings insurance</a></li>
              <li><a href="calculators.html">calculators</a></li>
            </ul>
          </li>
          <li><a class="MenuBarItemSubmenu" href="#">loans</a>
            <ul>
              <li><a href="rates.html">rates</a> </li>
              <li><a href="l_personal.html">personal loans</a></li>
              <li><a href="l_vehicle.html">vehicle loans</a></li>
              <li><a href="l_home.html">home loans</a></li>
              <li><a href="l_homeEquity.html">home equity loans</a></li>
              <li><a href="l_construction.html">construction loans</a></li>
              <li><a href="l_lot.html">lot loans</a></li>
              <li><a href="l_creditCard.html">Mastercard/Visa loans</a></li>
              <li><a href="l_student.html">student loans</a></li>
              <li><a href="calculators.html">calculators</a></li>
              <li><a href="loanProtection.html">loan protection coverage</a></li>
              <li><a href="forms.html">apply online</a></li>
            </ul>
          </li>
          <li><a class="MenuBarItemSubmenu MenuBarItemSubmenu" href="#">rates</a>
            <ul>
              <li><a href="rates_savings.html">savings</a></li>
              <li><a href="rates_certificates.html">certificates</a></li>
              <li><a href="rates_loans.html">loans</a></li>
              <li><a href="rates_mortgage.html">mortgages</a></li>
              <li><a href="calculators.html">calculators</a></li>
              <li><a href="forms.html">apply online</a></li>
            </ul>
          </li>
          <li><a class="MenuBarItemSubmenu MenuBarItemSubmenu" href="#">services</a>
            <ul>
              <li><a href="http://www.?????">Virtual Branch</a></li>
              <li><a href="tellerline.html">24-hour help line</a></li>
              <li><a href="wire.html">wire transfer</a></li>
              <li><a href="directDeposit.html">direct dep/payroll ded.</a></li>
              <li><a href="checkCard.html">check card/ATM card</a></li>
              <li><a href="safeDeposit.html">safe deposit box</a></li>
              <li><a href="travelersChecks.html">travelers checks</a></li>
              <li><a href="atm.html">no surcharge ATM list</a></li>
              <li><a href="stopPayment.html">stop payment</a></li>
              <li><a href="notary.html">free notary signature</a></li>
              <li><a href="discounts.html">other discounts</a></li>
            </ul>
          </li>
        </ul>
      </div>
      <div id="sidebar1"><img src="images/b_virtualbank.jpg" width="202" height="52" alt="virtual bank" /><img src="images/b_vb_login.png" alt="virtual bank" width="202" height="85" border="0" usemap="#Map" />
        <map name="Map" id="Map">
          <area shape="rect" coords="22,7,89,30" href="https://www.netit.financial-net.com/pcmcu/cgi-bin/ebs" target="_blank" alt="login" />
          <area shape="rect" coords="98,9,176,31" href="https://www.netit.financial-net.com/pcmcu/cgi-bin/ebs" target="_blank" alt="sign up" />
        </map>
        <div id="leftNavButtonTxt"> <a href="https://www.netit.financial-net.com/pcmcu/cgi-bin/ebs" target="_blank">eStatements</a><br />
          <a href="https://www.netit.financial-net.com/pcmcu/cgi-bin/ebs" target="_blank">eBillPay</a><br />
          <a href="https://www.netit.financial-net.com/pcmcu/cgi-bin/ebs" target="_blank">eChecks</a><br />
          <a href="gotomycard.html">GoToMyCard.com</a><br />
          <a href="applyonline.html">Applications</a><br />
          <a href="https://checkreorderexpress.com/prodreorder/reorder_form.cfm" target="_blank">Re-order Checks</a><br />
          <a href="newsletters.html">Newsletters</a></div>
        <img src="images/navleft_bottom.png" width="202" height="21" alt="-" /><span style="line-height: 18px; font-size: 12px; text-align: center; color: #4A5124;">608 Willard Drive<br />
        Green Bay, WI  54304<br />
        Phone (920) 499-2831<br />
        Toll Free (877) 373-4023<br />
        Fax (920) 499-7548</span>
        <!-- end #sidebar1 -->
      </div>
      <div id="mainContent">
        <div id="feature">
          <h1> <img src="images/bldg.jpg" width="331" height="131" alt="the new PCMCU" />Your New Credit Union is Now Open!</h1>
          <p>Come visit us and see what your new PCM Credit Union has to offer. From our Internet stations to our Training area - come see what we have built for you, our valued members! Take an online <a href="tour.html">tour</a>.</p>
        </div>
        <div id="feature2">
          <h2><span style="font-style: italic">Protect Yourself!</span> <br />
            Attend &quot;<span style="font-family: 'Arial Black', Gadget, sans-serif">Shred Fest</span>&quot; and Help Others too!</h2>
          <p>The A.R.M.S. (Automated Records Management Systems, Inc.) Mobile Shredder will be located in the front parking lot of PCMCU at 781 Willard Dr. Saturday, <span style="font-weight: bold">June 25th from 9am -12 noon</span>.</p>
          <p><img src="images/BBBSlogo_purple-2.gif" width="108" height="86" alt="big brothers big sisters" />Donations will be accepted on behalf of Big Brothers Big Sisters of Northeastern Wisconsin. Suggested donation is $5 per box.  Your giving spirit will help make a huge impact on the lives of our youth!  Attend Shred Fest, and protect yourself; while giving to others!</p>
          <h2>SAY YES to NO WORRIES Overdraft Protection Service</h2>
          <p><img src="images/logo_noworries.png" width="150" height="148" alt="overdraft protection" /><a href="noworries.html">Learn more</a> and complete the online <a href="forms.html">option form</a>, or <a href="mailto:[email protected]">email us</a> with your option!</p>
        </div>
        <div id="feature3">
          <h2><span style="font-family: 'Arial Black', Gadget, sans-serif">GET THE EDGE</span> … on Affordable Financing Only at PCMCU! </h2>
          <p style="text-align: center">Home Equity EDGE Loan <br />
            <span style="color: #B7BF90; font-size: 24px; font-family: 'Arial Black', Gadget, sans-serif; font-weight: bold;">5.99% apr</span>* <br />
            100% Max LTV</p>
          <p style="text-align: center">Home Equity EDGE Line of Credit<br />
            <span style="color: #B7BF90; font-size: 24px; font-family: 'Arial Black', Gadget, sans-serif; font-weight: bold;">5.99% apr</span><br />
            95% Max LTV</p>
          <p>There's also the <span style="font-weight: bold">EDGE Unsecured Home Improvement Loan at 6.99%</span>apr.**<br />
            That's right, <span style="font-weight: bold; font-style: italic;">No Collateral Needed</span> and you may borrow up to $7,500! <a href="mailto:[email protected]">Contact</a> a PCMCU Loan Officer for complete details.  Or <span style="font-weight: bold">call 920.499.2831</span> today!</p>
          <p><span class="disclaimer">*apr = annual percentage rate.  All rates are current as of 3/30/11, and are subject to change without notice.  100% maximum loan to value stated is available on the equity edge loan only.  Equity Edge line of credit is prime + 1% ; 95% maximum LTV, with 5.99% as minimum apr and 11% maximum apr.  Payment calculation is $11.10 per $1000 borrowed, up to $30,000, amortized 10 years.  **Home Improvement loan rate of 6.99%apr is available with no collateral.  Member may borrow up to $7,500; permitting there is proof it is for home improvements.  Maximum amortization 7 years.  All applications are subject to credit approval.  Equal Opportunity Housing.  Membership eligibility required.</span> </p>
        </div>
        <!-- to fix overflow -->
        <br style="clear:both" />
        <!-- end #mainContent -->
      </div>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
      <br class="clearfloat" />
      <div id="footer">
        <div id="LinksContainer">
          <div id="Box1"> <span style="font-size: 16px; font-weight: bold; color: rgba(204,51,0,1); font-family: 'Yanone Kaffeesatz', sans-serif;">emergency #s</span>
            <p>Lost Debit/Credit Card<br />
              <span style="font-weight: bold; font-size: 12px; color: rgba(204,51,0,1);">800.123.3345</span><br />
              24-Hour Help Line<br />
              <span style="font-weight: bold; font-size: 12px; color: rgba(204,51,0,1);">800.123.4567</span></p>
          </div>
          <!--end Box1 -->
          <div id="Box2"> <span style="font-size: 16px; font-weight: bold; font-family: 'Yanone Kaffeesatz', sans-serif;">education</span>
            <p><a href="http://www.moneymission.com" target="_blank">Money Mission</a><br />
              <a href="http://www.kirbykangaroo.com" target="_blank">Kids 12 &amp; Under</a><br />
              <a href="http://www.cusucceed.net" target="_blank">Teens Financial Network</a><br />
              Financial Fitness Program<br />
              FREE Financial Assessment</p>
          </div>
          <!--end Box2 -->
          <div id="Box3"> <span style="font-weight: bold; font-size: 16px; font-family: 'Yanone Kaffeesatz', sans-serif;">resources &amp; tools</span>
            <p>TurboTax Online<br />
              FreeTaxRefund.org<br />
              Identity Theft 911<br />
              Share Draft Reconcilliation Form<br />
              Calculators <br />
            </p>
          </div>
          <!--end Box3 -->
          <div id="Box4"><span style="font-weight: bold; font-size: 14px; font-family: 'Yanone Kaffeesatz', sans-serif;">PCMCU</span>
            <p>FOR SALE by PCMCU<br />
              Employment Opps.<br />
              Moving? Let us know.<br />
              Routing#: 123456789 </p>
          </div>
          <!--end Box4 -->
          <div id="Box5"><span style="font-weight: bold; font-size: 14px; font-family: 'Yanone Kaffeesatz', sans-serif;">PCMCU</span>
            <p>FOR SALE by PCMCU<br />
              Employment Opps.<br />
              Moving? Let us know.<br />
              Routing#: 123456789 </p>
          </div>
          <!--End Box5-->
          <!--clear floats with a <br> <p> or <hr>-->
          <hr class="clear" />
          <div id="TextNav"><a href="index.html">home</a> | <a href="https://www.netit.financial-net.com/pcmcu/cgi-bin/ebs" target="_blank">virtual branch</a> | <a href="membership.html">membership</a> | <a href="deposits.html">deposits</a> | <a href="rates.html">loans</a> | rates | services </div>
        </div>
        <!--end Container -->
        <img src="images/footer.jpg" width="950" height="111" alt="footer" />
        <!-- end #footer -->
      </div>
      <!-- end #container -->
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • Is it possible to change sender address from internal to external

    Hi
    I'm trying to find a way to send emails with exchange 2010 sp1 and change the from address
    for example i want to block send address [email protected] and send it as [email protected]
    Both email addresses existing as users (not alias)
    i want to assign the bb*@conto.com  email addresses to blackberries and droids
    Any ideas?
    Regards

    As a rule, you cant change the FROM: when sending from clients when using Exchange, except when using POP or IMAP, or two separate mail-enabled accounts that the user has SEND AS permissions for, or if you use 3rd party products such as ChooseFrom:
    http://www.ivasoft.biz/choosefrom2007.shtml
    If you want to do this from a mobile device, you will need to contact support for that device and ask them if that is possible in an Exchange environment.
    P.S. 2010 SP1 is no longer supported. 
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

Maybe you are looking for