Performance building Tile Flex 3 and List Flex 4

Hi,
I'm writing aplication in FlashBuilder, I see that building Tile with repeaters(Flex 3) is 3-4 time faster that FB
and I don't know what I do wrong,
it is My Code in Flex 3
<mx:Tile>
                <mx:Repeater id="dayRepeater" dataProvider="{ arr }" >
                    <mx:Canvas width="78" height="38" horizontalScrollPolicy="off" verticalScrollPolicy="off" >
                          <calendar:CalRenderer dataProvider = "{ dayRepeater.currentItem as DataVO }"/>
                    </mx:Canvas>
                </mx:Repeater>
            </mx:Tile>
and inside repeater is following code
<mx:Canvas>
        <mx:Image x="0" y="0" width="78" height="38" source="{ dataProvider.renBackUrl}" scaleContent="true" maintainAspectRatio="false" verticalAlign="middle" horizontalAlign="center"/>
    </mx:Canvas>
    <mx:Canvas x="{dataProvider.imgIcoX}" y="{dataProvider.imgIcoY}" width="24" height="26">
        <mx:Image width="20" height="20" source="{ dataProvider.holyico}" horizontalCenter="0" verticalCenter="0" verticalAlign="middle" horizontalAlign="center"/>
    </mx:Canvas>
    <mx:Text id="renTxt" styleName="{dataProvider.txtIdFont}" x="{dataProvider.txtIdX}" y="{dataProvider.txtIdY}" text="{dataProvider.id}" width="51.5" height="34.149994" fontSize="22"  textAlign="right"  fontWeight="normal" color="{dataProvider.renMainTxtColor}" selectable="false"/>
    <mx:Text styleName="{dataProvider.txtNameFont}" x="{dataProvider.txtNameX}" y="{dataProvider.txtNameY}" text="{dataProvider.names}" width="100%" height="10.799999" fontSize="6" textAlign="right" color="{dataProvider.renMainTxtColor}" selectable="false"/>
    <mx:TextArea styleName="{dataProvider.txtHolyFont}" x="{dataProvider.txtHolyX}" y="{dataProvider.txtHolyY}" width="80" height="13.099998" text="{dataProvider.holy}" fontSize="7"  borderStyle="none" backgroundAlpha="0.0" editable="false" cornerRadius="0" color="{dataProvider.renMainTxtColor}" textAlign="right" selectable="false"/>
In the FB4 the code looks like this
<s:List id="myList" height="100%" width="100%" x="17" y="30"
               dataProvider="{arr}"
            itemRenderer="gui.views.ProjectView.CalItemRenderer" >
        <s:layout>
            <s:TileLayout/>
        </s:layout>
    </s:List>
and renderer look.
    <mx:Canvas>
        <mx:Image x="0" y="0" width="78" height="38" source="{ dataProvider.renBackUrl}" scaleContent="true" maintainAspectRatio="false" verticalAlign="middle" horizontalAlign="center"/>
    </mx:Canvas>
    <mx:Canvas x="{data.imgIcoX}" y="{data.imgIcoY}" width="24" height="26">
        <mx:Image width="20" height="20" source="{ data.holyico}" horizontalCenter="0" verticalCenter="0" verticalAlign="middle" horizontalAlign="center"/>
    </mx:Canvas>
    <!--<s:Rect width="50" height="50" fill.normal="{fill}" fill.hovered="{overfill}" fill.selected="{fill}" bottomLeftRadiusX="5" topRightRadiusX="5" stroke="{borderStroke}"/>-->
    <!--<s:Label text="{data.maskPrvUrl}" color.hovered="0x1313cd" color.selected="0x000000" verticalAlign="bottom"/>-->
    <s:TextArea styleName="{data.txtIdFont}"   x="{data.txtIdX}"   y="{data.txtIdY}"   text="{data.id}"    width="51.5" height="34.149994" fontSize="22" borderVisible="false" borderAlpha="0.0" textAlign="right" color="{data.renMainTxtColor}" fontWeight="normal"  editable="false" selectable="false" contentBackgroundAlpha="0"/>
    <s:TextArea styleName="{data.txtNameFont}" x="{data.txtNameX}" y="{data.txtNameY}" text="{data.names}" width="100%" height="10.799999" fontSize="6"  borderVisible="false" borderAlpha="0.0" textAlign="right" color="{data.renMainTxtColor}" editable="false" selectable="false" contentBackgroundAlpha="0"/>
    <s:TextArea styleName="{data.txtHolyFont}" x="{data.txtHolyX}" y="{data.txtHolyY}" text="{data.holy}"  width="80"   height="13.099998" fontSize="7"  borderVisible="false" borderAlpha="0.0" textAlign="right" color="{data.renMainTxtColor}"  editable="false" selectable="false" contentBackgroundAlpha="0"/>
arr is ArrayCollection;
Generaly when I run aplication made witth Flex 3 - Tile is completed after  2-3 sec. In FB4 with SDK10485 - after 6-7 sec.!!!
Do you have any idea?
Thx
Chris

for info my ArrayCollectio has about 30 indexes
I found solution.
I made some test with different text Components (Fx 3 & 4)
My conclusion is.
<s:TextArea - create longer that  <mx:TextArea, <s:Label
I change <s:TextArea to <mx:TextArea  in the ItemRenderer. - now is OK.
Chris

Similar Messages

  • Adobe Flex and ActiveX

    Can Flex interact with an ActiveX control? If I have an
    ActiveX control
    which provides information from the register of the local
    computer through
    IE, can Flex communicate with the ActiveX control? I
    understand that Flex
    can communicate with external javascript but have not read
    anything on
    ActiveX.
    Any help or advice would be greatly appreciated.
    -StinkyDuck

    I have an old sample in which calls were being exchanged
    between a Flex app and a ActiveX C++ DLL. You can find the source
    code here
    http://sreenivas.ramaswamy.googlepages.com/CallingCDLL.zip
    The sample has two portions a flex app called CalledApp and a
    C++ DLL called CallingDLL. Load the CalledApp project in
    FlexBuilder and CallingDLL project is Visual Studio 2003 or later.
    Build the DLL and the Flex app. Run the Flex app and click on
    the button. When flex app calls the DLL function the DLL calls back
    the flex app.

  • Build and test Flex 4 in Hudson?

    Hi
    May I know how to build and test Flex 4 web application in the continuous integration server like Hudson?
    I think tutorials have been describing of how to develop Flex 4 application using Flash Builder. Is it possible to build Flex application from command line (so that it can also be called from Hudson)?

    I was able to convert a VI that contains a call to a library function (in this case, a DLL) into a DLL.  I have isolated my problem to passing a hardware handle through multiple layers of library calls...  My handle is a U32 that I am passing as a value at each layer. 
    I talk to my hardware via a DLL provided by my third party vendor.  I have some LV code and a call library function in a subVI.  When I convert my subVI to a DLL, my hardware does not respond as it should -- it behaves as if I have not opened a session with it even when I have already opened a session.
    I remember reading somewhere that handles had to be initiated from the same process...  does anyone know the details of how this works?
    Regards,
    mlloyd

  • How to Build and Deploy Flex application in EP6

    Hi All,
    Can anyone tell how to build and deploy Flex application in EP6.
    I want to build a normal application in flex and present it through iviews. How do I configure my Iiview to have flex component running in Portal Environment.
    Thanks
    Deepak

    A good book to start with is Enterprise JavaBeans by Monson-Haefel (O'Reilly press). It covers deployment of EJBs on J2EE servers. Also check out sites specific to your server, sometimes they have specific requirements (like Weblogic).

  • [svn:fx-trunk] 5811: Adding a Flex Builder Flash-Integration and Utilities project to make these files easier for people to work on .

    Revision: 5811
    Author: [email protected]
    Date: 2009-03-31 11:20:19 -0700 (Tue, 31 Mar 2009)
    Log Message:
    Adding a Flex Builder Flash-Integration and Utilities project to make these files easier for people to work on. Flash-Integration is really an intermediate swc that Utilities uses. I've also modified the existing Flex Builder project for flex4tests to build against this new utilities project directly.
    Also change the way FlashIntegration is built--we no longer have a manifest file and just include-classes FlashIntegrationClasses.as.
    QE Notes: -
    Doc Notes: -
    Bugs: -
    Reviewer: Evtim
    tests: -
    Modified Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4test/.actionScriptProperties
    flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
    Added Paths:
    flex/sdk/trunk/development/eclipse/flex/flash-integration/
    flex/sdk/trunk/development/eclipse/flex/flash-integration/.actionScriptProperties
    flex/sdk/trunk/development/eclipse/flex/flash-integration/.flexLibProperties
    flex/sdk/trunk/development/eclipse/flex/flash-integration/.project
    flex/sdk/trunk/development/eclipse/flex/utilities/
    flex/sdk/trunk/development/eclipse/flex/utilities/.actionScriptProperties
    flex/sdk/trunk/development/eclipse/flex/utilities/.flexLibProperties
    flex/sdk/trunk/development/eclipse/flex/utilities/.project
    flex/sdk/trunk/frameworks/projects/flash-integration/src/FlashIntegrationClasses.as
    Removed Paths:
    flex/sdk/trunk/frameworks/projects/flash-integration/manifest.xml

    Thats good news.

  • Flex/Flash Builder 4.6 and SWFKit 3.5 compatible?

    I've been using SWFKit 3.5 for the past few years with Flash Professional.  I have had no problems using a Flash Professional generated SWF and creating an executable and installer with SWFKIt.
    However, I am now currently using Flash Builder 4.6 and have created an Adobe AIR based desktop application project.  I'd like to take the SWF that is generated from that project and build an .exe and installer in SWFKit, but that does not seem to be working as easily.  When I test my application in SWFKit, the stage is blank.  To rule out any potential actionscript conflicts, I even tried by using a SWF that was nothing but a line of text on the stage, and even that did not work.  The only part of my SWF that gets translated properly in SWFKit is the background color of my application.
    Are there any known compatibility issues with SWFKit 3.5 and SWF files generated from Flash Builder 4.6?  Any idea what I could be missing?  Is there a difference in a SWF that is outputted form Flash Builder vs. Professional?
    Any insight would be appreciated.  Thanks.

    An AIR app is not just a SWF, but also its –app.xml file and then is usually packaged into a .AIR file.  Just launching the SWF won’t work as it usually launches FlashPlayer which does not have AIR APIs.

  • How do I save a file to a server using flex and coldfusion?

    How do I save a file to a server using flex and coldfusion?
    On the CF side I might need to use this:
    <cffile action="UPLOAD" filefield="Filedata"
    destination="#expandpath('..\somepath)#"
    nameconflict="overwrite">
    And on the flex side I might need to use something like this:
    var sendVars:URLVariables = new URLVariables();
    sendVars.action = "upload";
    var request:URLRequest = new URLRequest();
    request.data = sendVars;
    request.url = _strUploadScript;
    request.method = URLRequestMethod.POST;
    _refUploadFile = new FileReference();
    _refUploadFile = _arrUploadFiles[_numCurrentUpload].data;
    _refUploadFile.addEventListener(ProgressEvent.PROGRESS,
    onUploadProgress);
    _refUploadFile.addEventListener(Event.COMPLETE,
    onUploadComplete);
    _refUploadFile.addEventListener(IOErrorEvent.IO_ERROR,
    onUploadIoError);
    _refUploadFile.addEventListener(SecurityErrorEvent.SECURITY_ERROR,
    onUploadSecurityError);
    _refUploadFile.upload(request, "file", false);
    I just don't know how to put it all together in Coldfusion.

    try this...
    http://cf-creations.co.uk/blog/index.cfm/2008/9/20/Flex--File-Upload-Form--Part-One--Build ing-The-Initial-Form

  • Sharing code between Flex and AIR versions using library project

    Hello everyone,
    I'm developing an application that has both Flex and AIR versions. In order to share code between these apps, I created a library project and added all my code there. Now I've set the library project as a dependency for both Flex and AIR projects. Since there are some components that use the DataService object, I've added fds.swc and fds_rb.swc and fiber_rb.swc modules to the libs directory of the library project. No compile errors. Now, if I try to run my Flex application, I'm getting this error:
    Variable mx.data::LocalStoreFactory is not defined.
    I know that this error comes up when playerfds.swc is not present in the path. But that is not the case here. I have added playerfds.swc, fds.swc and related lib files to the build path.
    If I go back and add the playerfds.swc file to the original library project, the error no longer appears. This is not a proper solution for me, since I need to share this project with AIR version also, and I cannot have both playerfds.swc and airfds.swc in the same project.. Has anyone faced an issue like this before?? What am I doing wrong??

    Hello everyone,
    I'm developing an application that has both Flex and AIR versions. In order to share code between these apps, I created a library project and added all my code there. Now I've set the library project as a dependency for both Flex and AIR projects. Since there are some components that use the DataService object, I've added fds.swc and fds_rb.swc and fiber_rb.swc modules to the libs directory of the library project. No compile errors. Now, if I try to run my Flex application, I'm getting this error:
    Variable mx.data::LocalStoreFactory is not defined.
    I know that this error comes up when playerfds.swc is not present in the path. But that is not the case here. I have added playerfds.swc, fds.swc and related lib files to the build path.
    If I go back and add the playerfds.swc file to the original library project, the error no longer appears. This is not a proper solution for me, since I need to share this project with AIR version also, and I cannot have both playerfds.swc and airfds.swc in the same project.. Has anyone faced an issue like this before?? What am I doing wrong??

  • I have built a android application using adobe flex, and i have exported it with native air. The application is working fine on samsung phones whereas it is getting crashed on Moto Phones, which runs on android kitkat, is there any compatibility issue ?,

    I have built a android application using adobe flex, and i have exported it with native air. The application is working fine on samsung phones whereas it is getting crashed on Moto Phones, which runs on android kitkat, is there any compatibility issue ?, I have built a android application using adobe flex, and i have exported it with native air. The application is working fine on samsung phones whereas it is getting crashed on Moto Phones, which runs on android kitkat, is there any compatibility issue ?, I have built a android application using adobe flex, and i have exported it with native air. The application is working fine on samsung phones whereas it is getting crashed on Moto Phones, which runs on android kitkat, is there any compatibility issue ?

    Thanks, Flex harUI, for the direction in regards to isolating build changes. That aside (still working on it), can you offer any direction in regards to my original question on SDK and AIR compatibility? I'm specifically looking for a version compatibility mapping or anything that definitively states, "Flex SDK x.y.z works with the following versions of AIR". This information is crucial for us in order to more specifically plan our own roadmap built upon these two frameworks as we consider both existing installations of our software and future distributions.

  • [svn:osmf:] 13494: Update build script to work with Flex 4 SDK.

    Revision: 13494
    Revision: 13494
    Author:   [email protected]
    Date:     2010-01-13 20:30:13 -0800 (Wed, 13 Jan 2010)
    Log Message:
    Update build script to work with Flex 4 SDK.
    Modified Paths:
        osmf/branches/flex4/build/build.xml

    No, you don't need Flash Builder to use the Flex SDK. If you download the SDK and unzip it, you'll find a 'bin' directory that has the mxmlc compiler in it. You can compile Actionscript or MXML files using that.
    ./mxmlc MyFlexApp.mxml
    If you are building an AIR application, you will use amxmlc
    ./amxmlc MyAIRFlexApp.mxml
    Then, launch your AIR application using adl
    ./adl.exe MyAIRFlexApp-app.xml
    Hope this helps,
    Joan

  • Flex Dashboard and Using Flex in a Portal Environment

    Hello
    I am looking to develop Flex dashboard and use Flex in a Portal environment.
    If you any thoughts or information, kindly let me know or some insight.
    Thanks and regards

    fac586 wrote:
    #WORKSPACE_IMAGES# isn't substituted in CSS files stored in the repository. See this [previous discussion|http://forums.oracle.com/forums/thread.jspa?forumID=137&threadID=221653] (and others if you search for them).
    Thanks for the link, I did search a little while before making the original post. I guess I wasn't searching for the right thing though.
    The method I found listed in here seems to work in IE but not Firefox. It could just be a caching issue though I'm not real familiar with firefox and don't really know how to get it to forget that it's been to a page already.
    I also updated the link listed above to ask about any changes in the last upgrade related to this.
    This was related to caching in firefox and it worked fine after I logged out of my apex.oracle.com account and cleared the personal cache in firefox and then started over.
    Edited by: PktAces on Sep 9, 2008 3:06 PM

  • Flex Mobile List Item Renderer problems

    i have flex mobile list created with item renderer,i remove individual item in flex mobile list,it is worked very well,but some times i double click action or another scroll event using in list, last item doesn't delete in flex mobile list.it is repeated again and again.so anyone this problem faced,give me a solution.
    i expect your feedback.Thanking You

    Hi Alex,
    I've searched a lot for that post (on this forum and on google). Not sure if this is the post you were talking about: http://tech.groups.yahoo.com/group/flexcoders/message/161146
    I have fixed the setter of the data not to also manage the state (I figured it was inappropriate there)... overrode the getCurrentRendererState, I'm managing the state staight from the data. When I run the following... All sold items show as sold... and normal states show as normal. When I try to hover over the normal state, it dosen't play the hovered state, and when I click to the selected state. These built in states don't work.
    override public function set data(value:Object):void {
         super.data = value;
         ticketNumber_ti.text = value.slots_id;
    override protected function getCurrentRendererState():String {
         var state:String;
         if (data.date_purchased != null) {
              state = 'sold';
              mouseChildren = false;
              mouseEnabled = false;
         }  else {
              state = 'normal';
              mouseChildren = true;
              mouseEnabled = true;
         return state;
    On another note, the states only update, once I start scrolling, everything updates... I tried to validateDisplayList() to the List after setting the dataProvider with no luck.
    Once I find a solution I will certainly add it to my Blog as I have not found a lot of solutions for this problem.
    Any help is grteatly appreciated.

  • Flex Resources list

    Flex sites/blogs:
    http://www.macromedia.com/software/flex/productinfo/faq/
    http://www.cflex.net/
    http://www.flexauthority.com/
    http://weblogs.macromedia.com/mxna/
    http://www.flexdaddy.info/
    http://www.clinttredway.com/blog/
    http://www.richinternet.de/blog/
    http://www.everythingflex.com
    http://labs.adobe.com/ (2.0 Beta
    specific)
    Flex style Explorer:
    http://www.markme.com/mc/archives/FlexStyleExplorer.html
    Documentation:
    http://livedocs.macromedia.com/flex/15/asdocs_en/index.html
    http://www.macromedia.com/go/flex15_java_livedocs
    http://www.macromedia.com/cfusion/knowledgebase/index.cfm
    Lists:
    http://www.macromedia.com/cfusion/webforums/forum/categories.cfm?catid=346
    http://groups.yahoo.com/group/flexcoders/
    Bugs/enhancement requests:
    http://www.macromedia.com/support/email/wishform/

    "Create a Login System with Flex and PHP"
    http://www.vipercreations.com/tutorials/Adobe%20Flex/tutorials/Adobe%20Flex/28.html
    "Flex MP3 Player"
    http://www.vipercreations.com/tutorials/Adobe%20Flex/tutorials/Adobe%20Flex/29.html

  • Flash, Flex, and the iPad

    While there is no shortage of iPad/Flash discussions on the Adobe and Apple forums, after searching for a couple hours now I have been unable to find the answers to my specific question.  So please forgive me if I missed it somewhere.
    As I understand it, Apple does not support Flash for the mobile and iPad devices.  This is reiterated in a number of Apple forum postings that I just read, as well as Steve Jobs' rant here:
    http://www.apple.com/hotnews/thoughts-on-flash/
    However, I came across this Adobe press release from less than a year ago:
    http://blogs.adobe.com/ukchannelnews/2011/06/20/announcement-mobile-applications-for-andro id-blackberry-iphone-and-ipad/
    Apparently this Flex thing allows me to develop cross-platform mobile applications.  So I do some research on Flex, trying to figure out the difference between Flex and Flash.  I come across Adobe's FAQ here:
    http://www.adobe.com/products/flex/faq.html#flex-flash
    It's not real clear to me, but it sounds like what they are saying is that Flex is simply a programmatic framework around which I can build Flash applications, especially helpful for those more familiar with traditional programming.  If this is the case, based on Adobe's press release above, it sounds like I should be able to use Flash on the iPad via Flex?  What am I missing?  Is there other differences between Flex and Flash?  Or perhaps is it the difference between an application and browser support (like Apple's Safari)?
    Thanks in advance for your patience, and your help.
    3P

    It's easy Pea...
    Flash is a plugin. It runs from withing the browser IE, Firefox, Safari, Opera, etc... It also can be run standalone, via special exe program on Windows platform.
    Although this is less common. Here are all the Flash versions: http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html
    AIR is a cross platform runtime, kind of like Java (build once run everywhere). But with AIR it's a bit more tricky. You have to compile your program to each target platform (Desktop, Andriod, BlackBerry, iOS) separately. It's not like with Java where you can indeed run your jar file on lot of platforms. AIR is essentially Flash "on steroids" as it mostly has the same API as Flash and builds on top of it. But AIR not in the pluging form, i.e. you don't need a web browser to run it from.
    Here are the latest AIR runtime: http://get.adobe.com/air/
    and SDK: http://www.adobe.com/devnet/air/air-sdk-download.html
    You will need AIR SDK to build AIR applications and it has to be overlayed on top of Flex SDK which you can find here:
    Flex SDK: http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.6
    Now Flex SDK is essentially a component framework. You will need a button in your application, or a Video component, right? So that is what Flex provides for you free of charge.
    Obviously this sound simple but Flex is much more then that and here is your
    Flex documentation: http://www.adobe.com/devnet/flex/documentation.html
    So, Flex is a component framework which lets you build applications which target either Flash or AIR as executable runtime. For Flash it is called Web application and it runs from withing browser or standalone Flash player. For AIR it is called Desktop or Mobile project and it runs from withing AIR runtime which has to be installed on your device or bundled with your application.
    Now, speaking of Steve rants, yes, they wanted to kill Flash on their platform, there was even a guy there who was responsible for that result (I forgot his name but you can google), although Adobe never admited that and played it nice with Apple. Why they wanted to kill most expressive and complete vector and video engine on the web (Flash)? It's simple! This is beacase they wanted to play on their nice and cozy iOS/iPad/iPod playground alone! Because they want to control the delivery of the content from publisher to consumer. they want to stick their proprietory products and specifications in between and skim the money! That is why they don't need Flash in the browser. Flash allows people to publish and consume an impressive content without charging a dime! That includes H264 video among other things. And that is what Apple doesn't want to see.
    Good luck with Flex and everything else,
    SdS

  • Is Adobe FLash builder 4.7 compatible with flex sdk 3.5?

    Is Adobe FLash builder 4.7 compatible with flex sdk 3.5?

    Kind of.  I never actually solved the bug, but I did make it past the install. 
      Upon running Adobe Flash Builder 4.7 Plug-in Installer it appeared to crash and only load a blank screen with a single unclickable button.  It wasn't actually "hanging", and would react when I clicked on the program menu and moused over "Services".  This would allow my clicks and keystrokes to register with the program, but only after I mouse over the "Services" menu item.  For example, you need to click "okay", then mouse over "Services".  When you want to enter text you need to click in the text box, and mouse over "Services".  Then you need to type the text you want, and mouse over "Services" to see the text appear.  It's a PITA, but you can get through the install by doing this. 
      After installing the FB plug-in starting eclipse with editors open appeared to cause errors.  If this happens, this is because it seems that FB attempts to load when eclipse starts up.  Close all editors and restart eclipse.  The Welcome page for FB may pop open up.  At the bottom there is a check box that will keep that form loading - check it.  If the page does not open when eclipse starts, then open up an MXML file.  The Welcome page should load, and you can check the box. 
    I hope this helps you move forward.  Also, if you find an actual solution please let me know.

Maybe you are looking for

  • Change column header text dynamically

    Hi, I have requirement to change the column header text dynamically in sap gui programming. but couldn't see straight forward way to achieve this. i tried following link but no success: [Re: Dynamic header text in table control - Dialog programming;

  • Any difference between Toslink & just a basic minijack to RCA splitter?

    If you plug an (Apple style) TOSLINK optical cable into an AirPort Express getting music from your iTunes library on an iMac and run that cable to an MCM 24Bit/96K D/A Toslink/Coax Digital Input to Line Level Output Converter) then the analog cable t

  • If LTE is backwards compatible with GSM, why don't they say the phones are global?

    When is Verizon going to come up with a 4g LTE CDMA GSM phone, just to leave no needs unfilled?  Seems like an obvious gap, except that searching these boards and elsewhere seems to lead to the paradox of yes backwards compatible, but not actually gl

  • Login dialog box pops up

    I am currently using weblogic serve 5.1 sp9 and have a web app that specifies a login page, and an error page if you make a mistake. The problem I am having is that if you make an error logging in a popup login dialog box appears, and you must click

  • Where can I download a iOS 4.2.1 supporting Furby app?

    Is there somewhere I can download an older version of the Furby app trhat works on 4.2.1?  I am not going to buy a new IPTouch just to get this **** app and Itunes should provide every version of an app that is released.