Flash Builder Code Signing

Hi.
I have question about Code Singing Certificate for Adobe Air.
I renew Code Signing Certificate to Adobe Air program in 'Flash Builder'.
But, In program install, popup error and not installed.
The error message is 'The application cannot be installed due to a certificate problem.
The certificate does not match the installed application certificate, does not support application upgrades, or is invalid.  Please contact the application author.'
Why popup this error?
If I want fix this error, what should I do?

I should explain a little further to clarify.  If you have released an app to say, Google Play, but want to run an update to that app, then you'll have to use the exact Signing Certificate that you used to first compile the app.  Sometimes, developers forget the password that they used for the certificate, and think they can just issue another certificate under the same file name.  Unfortunately, it's not that easy.
Now with that being said, you can still add another certificate to your app, and recompile it as normal....and everything will be fine again.  You just won't be able to upload that app to Google Play and "Update" the other app.  Make sense?

Similar Messages

  • Enhanced Flash Builder Code Generation Functionality

    For voting in JIRA:
    https://bugs.adobe.com/jira/browse/FB-27169
    The code generation feature FB 4 currently has is only really useful for quick throwaway prototyping or very simple forms. The generation should allow you to configure formatting via default templates, AND optionally utilize a dialog box (similar to that used in refactoring but with a few extras) so that you can configure the contents of each generated function and provide appropriate function names according to coding best practices. For example:
    -User initiates event handler generation
    (Optional, if Codegen dialog is enabled)
    -User is prompted with a dialog that allows them to customize the generated function name, and possibly specify whether they need an Event parameter passed to the function. (Default to NO event parameter, but this could be a pre-configured user option.)
    -FB utilizes the customized code generation format (customizable by the developer) to generate the new function
    If you need a "submitForm()" function and you want both a TextInput's enter action and a button's click action to call it, currently you're better off typing it all yourself, because auto-generation is going to put this long-named function that assumes you need 'event' passed to it. An event:MouseEvent parameter just gets in the way when you also want a TextInput's enter event to call that function, for example. Or perhaps we want to provide a more descriptive name to each handler (via dialog) without assigning IDs to each and every component: "datagrid1_changeHandler" or "button1_changeHandler" doesn't tell us what the function actually does. It's a basic coding best practice to name functions or methods after the actions they actually perform, and in a large application with complex forms auto-generated generic sounding function names are essentially useless from a maintainability standpoint.

    For anyone interested, I figured it out:
    to generate a CFC, you have to right-click a table in the RDS Dataview, then you can generate a CFC. You cannot generate a CFC from an AS class as described in the CF Builder help within Flash Builder.
    Adobe: it would be nice if this got fixed – and if someone there replied to posts like this. You do  know all this, don‘t you?

  • Help with my Flash Builder code.

    Hello,
    I am getting two errors, well four but three are the same. 1083 && 1084.
    here is my code, can someone look over it and tell me what I am doing wrong. I am fairley new to Flash Builder so please no harassement.
    //Check The Login
                    var userName: String= "requestofone";
                    var passWord: String= "robots96";
                        if (userName == "requestofone" && passWord == "robots96"){
                        trace("Welcome requestofone")
                        }else{ (userName != "requestofone")
                        trace("User not found. Try again.")
                        }else if{ (passWord != "robots96")
                        trace("Password does not match our records.");
                        //Tire Pressure
                        var frontTires:Array = ['43', '43'];
                        var rearTires:Array = ['45', '45'];
                        if (frontTires:Array != uint: 43 && rearTires:Array != uint: 45){
                            trace("Get Your Tires Checked Out")
                        }else{ (frontTires:Array == uint: 43) && (rearTires:Array == uint:45)
                            trace("Tires pass the spec")}
    Description
    Location
    1083: Syntax error: else is unexpected.
    line 48
    1084: Syntax error: expecting rightparen before colon.
    line 56
    1084: Syntax error: expecting rightparen before colon.
    line 58
    1084: Syntax error: expecting rightparen before colon.
    line 58
    I have been trying to figure this out for a while now. Please help.

    Not to be nasty or "harass", but you need to go back and learn the syntax.  Each line of code should end with a semicolon, and I'm also not sure what you are trying to accomplish with your "else{(userName != "requestofone")".  Are you trying to do a conditional test?  If so you need to use an "else if".  That said, the "else if" you do use is incorrect.  The parens should come out side the curly braces like you did for the initial "if" condition, and the "else if" needs to come before your final "else" since that is where the flow will go when no previous condition is met.
    Example:
    if (a == b){
    trace("do something");
    else if (b == c){
    trace("do something different");
    else{
    trace("do some default thing");
    I hope this helps.

  • Flash Builder code color appearances issue (!!)

    Okay, so I just spent about 15 - 20 minutes reformatting the color appearances of my code display (it really helps when programming at least 8 - 10 hours a day with large code files). Everything was about fine after making a bunch of adjustments (got the background dark blue, general code light blue, comments green, traces orange etc), and then all of a sudden these customizations are gone, and all my code is monotone color (everything light blue on dark blue).  The preferences still show the changes I made tho!  I've switched to an alternate work space, and the unique color appearences there have persisted.  I've also restarted FlashBuilder, and that had no resolved.
    Grrrrrrrr!!!
    Anyone know what's up with this?
    [ PS -  I won't rant on about how unusable it is to have various elements of this process buried and scattered across at least 3 different parts of the IDE preferences, but hint: Adobe, If you want to demonstrate to your developers how to create usable RIAs, be sure the IDEs are highly usable. ]

    Mark - so you see click in the drop down and you select it so that your code now says:
    <s:Button click="" />
    and the code lookup now shows "Generate Click Handler" between the click double quotes?
    What happens if you place your cursor between the double quotes in the click event and type ctrl+spacebar?
    Can you share a screenshot of what's happening?

  • No option in project info window for code signing Provising profile.

    Dear Developer forum,
    I have one issue wth my application regarding provisional Profile.
    I have installed Distribution certificate.After that I have entered all information regarding distribution provisional profile in program portal
    I have got provisional certificate from portal.I have installed it
    And I have also seen its entry in home/library/mobiledevices/.
    But Now problem is arising at place when I am opening my project or target info window on that time in BUild->code signing option, I have only code signing endity but no code signing provisioning profile.
    where I can give my distribution provising profile name
    So anybody tell me howz it come????
    Thanks

    Looking at this page:
    http://developer.apple.com/iphone/manage/distribution/index.action
    Make sure that you've done all the steps... "Generating a Certificate Signing Request", "Submitting a Certificate Signing Request for Approval", "Downloading and Installing iPhone Distribution Certificates", "Create and download your iphone distribution provisioning profile"...
    When I went through this process, I think I forgot to do the step "Downloading and Installing iPhone Distribution Certificates"... (skipping straight to "create and download your iphone disbritution profile") as a result the provisioning profile name wasn't appearing for me to select... When I completed that step, then the provisioning profile name appeared...
    Message was edited by: iphonemediaman

  • Problem signing application to BlackBerry from Flash builder 4.6 premium

    Hi,
    I would like generate "BlackBerry" version of my application with Flash Builder, for this i'm using this guide.
    http://docs.blackberry.com/en/developers/deliverables/37176/BlackBerry_Tablet_OS_SDK_for_A dobe_AIR-Getting_Started_Guide_for_Windows_Developers--1943146-1206065540-001-2.0_Beta-US. pdf
    First, i have uninstalled older flash builder versions, and i have installed Flash builder 4.6 premium.
    After, I have installed the BlackBerry Tablet OS SDK for Adobe AIR.
    Next, I have updated the BlackBerry Tablet OS SDK plug-in.
    But, my problem is using the deployment setup wizard.
    I tried with the BlackBerry Tablet Simulator started, but when I click "Run the BlackBerry Tablet OS Deployment Setup Wizard" to configure your development environment, the wizard is not showing.
    I would like generate my application, ".bar" file, signed with the reals certificates of BlackBerry. But i don´t know what is the problem.
    Somebody have tested if this wizard is working to Flash builder 4.6.
    Furthermore, i have tried to setting the reals certificates of BlackBerry, with the preferences window:
    Flash Builder > Preferences > Flash Builder > Target Platforms > BlackBerry Tablet OS > Signing.
    Such as at this url:
    http://www.adobe.com/devnet/air/articles/packaging-air-apps-blackberry.html
    But when i click Register button, the dialog is not showing.
    Any idea is wellcome.
    Thanks

    Hi all,
    I have found the problem
    BlackBerry Tablet OS search a path that don´t exist in my spanish Windows X.
    As my system is at spanish, BlackBerry Tablet OS installer create this path:
    %HOMEPATH%\Configuraci¾n local\Datos de programa\Research In Motion
    To resolve the problem, you must to create the path in english and copy the content of spanish path:
    %HOMEPATH%\Local Settings\Application Data\Research In Motion
    By default, code signing keys are stored in a central location in your profile directory and used by all BlackBerry Tablet OS development tools. The default locations of these files vary based on operating system and  are outlined in the following table.  
    Note: In a Windows XP environment, the default  %HOMEPATH% is C:\Documents and Settings\<username>.  In a Windows Vista and Windows 7 environment, the default %HOMEPATH% is  C:\Users\<username>.
    Windows XP
    %HOMEPATH%\Local Settings\Application Data\Research In Motion
    Windows Vista  and  Windows 7
    %HOMEPATH%\AppData\Local\Research In Motion
    Mac OS
    ~/Library/Research In Motion
    UNIX and Linux
    ~/.rim

  • (.asc) Code Hinting in Flash Professional CS5.5 || Flash Builder 4.5

    Problem:  I would like to enable code hinting and highlighting in either Flash Professional or Flash Builder when developing an Actionscript Communications File (.asc).
    Steps Taken:
    Searched Google with limited success, most signs all pointed to FMSGuru.com where one may obtain an Eclipse Plugin, but:
    It was created in 2007 (likely out dated)
    It has known bugs that haven't been addressed
    Searched this forum / adobe's web site to find a solution, to no avail.
    Posted this, now, in an attempt to put this to rest
    Request:  If anyone knows how I can enable FP or FB to give code hints / syntax highlighting, I would really apprecaite some direction.  If not, I appreciate the fact you even read this.
    Have a good one. Happy Coding.

    To note, Dreamweaver has the ability to provide code hinting if I remember correctly but I'm perpetually disappointed in the FMS team for not providing even ONE item that helps in the development of server side coding for FMS. They have never provided anything and it's been up to the good will of developers for the platform to put together tools. As it is now, you'll probably never see anything better as most people (that I know of) have moved away from FMS, partially for this reason despite multiple requests that Adobe do something. Not to insult the FMS team, as they do what they have to do to pull in the paycheck, and the bean counters provide that and seem to be making most of the decisions.
    ok. rant all done now

  • How to connect my app interface with the code in flash builder?

    I'm a beginner and learning my way around actionscript,mxml and flash builder.So this may seem foolish but please bear with me,I'm creating a very simple ios app using flash builder,I have created a simple app interface (A background and a custom navigation bar)using photoshop for my app,now the question is how do i import it into flash builder so that i can connect it with the code i have written? or is there another simpler way to create a app interface using other products like fireworks or catalyst?
    In short, I want to know how is an app interface created(wt software) and how is it connected with its code using flash builder.Any help would be greatly appreciated, and tutorials would be swell
    Thanks!

    Can you use stage.width or stage.stageWidth?

  • Slow Code Editing in Flash Builder 4.7

    For some reason my Code Editor works painfully slow. I see that other folks have experienced this issue. I don't want to switch to another IDE. I have already increased the values of Xms and XMX (Xms1024m -Xmx2048m) and also created a new workspace but it did not make a difference. Other appliations work fine. I am using a i7 laptop with 16GB of RAM.
    FB was working fine and then all of a sudden started to slow down. I believe that it happened after I  installed Apached Flex SDK but I am not positive. I have other IDEs that I use for testing things so that might be a problem as well. I would like some help to fix the slow code editing because it is making it difficult to use FB and I don't want to change.
    I have Creative Cloud account.
    The size of the project is 19mb.

    Hi Blake,
    In another page (http://forums.adobe.com/thread/1056583), Adobe states that it will be possible to download 4.6 in alternative to 4.7, to still have the Design View. However, I have not seen such possibility yet.
    I will not say that "real programmers don't use design mode". They do, if it works fine.
    However, the Design View was not very useful for mobile projects, if you wanted to create an interface which, at run time, adapts to different screen estates.
    It was very good to draw an initial mock-up, but only the simulator (and the device) can say how the app really looks like (if you want to know more, please have a look here: http://aliencoding.com/2013/02/22/adobe-flash-builder-4-7-has-no-design-view-is-it-blasphe my-no-but-the-software-contains-some-other-blasphemous-aspects/).
    If you develop for desktop, then I agree the Design View lack is a real drag. I think Adobe should at least lower the price of the program, now that it's been scaled down for (I think) copyright issues (the Design mode relies on Flash professional components that was not donated to Apache).
    I love this platform because it really saved my butt in cases of real fast devployment, BUT NOW it lacks support for Windows 8 that PhoneGap has...
    Can we say... it is a legacy framework by now? 

  • Flash Builder 4 fails to compile Beta 2 code

    I just recently upgraded to FB 4 from Flash Builder 4 Beta 2. All my code worked in the Beta version, but stopped working in the released version.
    I was told to change my namespace declarations to mx from halo. I did this but problems remain.
    Now I'm being told that "The style 'background-color' is only supported by type 'mx.controls.List' with the theme(s) 'halo'.
    Also, despite changing the namespace declaration in the css file, I am still getting errors complaining that namespace qualified type.
    There must be an answer to these problems. Can anyone help please?

    OK, so I forgot to mention that at the beginning of this fiasco, I
    had an error that said: unable to open c:...blah blah/TLFText.css
    So I found the file in my Beta 2 install dir and copied it to the new 4.0 folder.
    I suspect that this is where all the css warnings were coming from.
    So, I deleted the file and no more warnings. But also, I got the original errors again.
    Why is it looking for this file? Why doesn't it use the correct file?
    Is there any way I can go back to Beta 2? This would solve my problems.

  • Using code templates in Flash Builder

    Hi, all;
    I know how to change most of the templates so that they go from the default "uncuddled" brackets to "cuddled"
    i.e.
    public function notCuddled():void
         //TODO
    vs.
    public function cuddled():void {
         //yay! no wasted space
    However, I have not found the template used for the constructor for a generated Class, so I get:
    package my.package {
         public class MyLovelyCuddledClass {
              public function MyLovelyCuddledClass()
              {//wasted line that I have to manually fix
    I love the new productivity enhamcements in FB 4.5, and they are so great that little nitpicks like this stand out.  Can anyone tell me where I can find the template that is used for this, so I can code to the fullest potential of the tool?
    TIA;
    Amy

    Hi Amy,
    You can customize 'New class' generation under Preferences->Editors->Flash
    Builder->FileTemplates->Action Script->New ActionScript class.
    Currently there are no template variables available constructors. But you
    can customize it as following,
    $
    ${import_declaration}
    $ {
      public function ${class_name}() {

  • Flash Builder flash pro project doesnt show code hintings for library assets exported for AS ?

    Flash Builder flash pro project doesnt show code hintings for library classes exported for AS ? So is there any way I can fix this ? Only way I could think of is export a swc from the fla... is there a more convenient way to do this ?

    anyone ?

  • Flash Builder 4.5 - Flex (source code automatically changed after existing project import)

    Hi all!
    Til yesterday, i was using FB v4.0 and it was perfectly working.
    But now I'm under 4.5 and i have problem when importing my existing projects.
    Now let me introduce the matter:
    The entire project solution is located on my Desktop.
    So, to import this, i go in FB in File>Import Project
    Then i select "Project Repository" option and "Browse" button, then select the project on Desktop...
    So.... import complete and SEEM TO BE successful
    Unfortunately, from the IDE, when i double click on each source files, the code inside is not the expected one.
    In fact, it looks as an older version of my code.
    Then, i exit totally FB4.5...
    ... and open my source files with a simple text editor, i can see that the original code (before import) has been changed by FB4.5...
    So, why???
    for example, this original code:
    * This is a generated class and is not intended for modification.  To customize behavior
    * of this service wrapper you may modify the generated sub-class of this class - WS_rq_login.as.
    package services.ws_rq_login
    import com.adobe.fiber.core.model_internal;
    import com.adobe.fiber.services.wrapper.WebServiceWrapper;
    import com.adobe.serializers.utility.TypeUtility;
    import mx.rpc.AbstractOperation;
    import mx.rpc.AsyncToken;
    import mx.rpc.soap.mxml.Operation;
    import mx.rpc.soap.mxml.WebService;
    [ExcludeClass]
    internal class _Super_WS_rq_login extends com.adobe.fiber.services.wrapper.WebServiceWrapper
        // Constructor
        public function _Super_WS_rq_login()
            // initialize service control
            _serviceControl = new mx.rpc.soap.mxml.WebService();
            var operations:Object = new Object();
            var operation:mx.rpc.soap.mxml.Operation;
            operation = new mx.rpc.soap.mxml.Operation(null, "WS_rq_login");
             operation.resultType = Object;
            operations["WS_rq_login"] = operation;
            _serviceControl.operations = operations;
            try
                _serviceControl.convertResultHandler = com.adobe.serializers.utility.TypeUtility.convertResultHandler;
            catch (e: Error)
            { /* Flex 3.4 and earlier does not support the convertResultHandler functionality. */ }
            preInitializeService();
            model_internal::initialize();
        //init initialization routine here, child class to override
        protected function preInitializeService():void
            _serviceControl.service = "A_WebService";
            _serviceControl.port = "A_WebServicePort";
            wsdl = Config.LIEN_WS_RQ_LOGIN+"/4dwsdl";
            model_internal::loadWSDLIfNecessary();
          * This method is a generated wrapper used to call the 'WS_rq_login' operation. It returns an mx.rpc.AsyncToken whose
          * result property will be populated with the result of the operation when the server response is received.
          * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
          * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
          * @see mx.rpc.AsyncToken
          * @see mx.rpc.CallResponder
          * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
        public function WS_rq_login(e_login:String, e_password:String, e_keyCode:String, e_forceRegenKey:Boolean) : mx.rpc.AsyncToken
            model_internal::loadWSDLIfNecessary();
            var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("WS_rq_login");
              var _internal_token:mx.rpc.AsyncToken = _internal_operation.send(e_login,e_password,e_keyCode,e_forceRegenKey) ;
            return _internal_token;
    becomes this:
    * This is a generated class and is not intended for modification.  To customize behavior
    * of this service wrapper you may modify the generated sub-class of this class - WS_rq_login.as.
    package services.ws_rq_login
    import com.adobe.fiber.core.model_internal;
    import com.adobe.fiber.services.wrapper.WebServiceWrapper;
    import com.adobe.serializers.utility.TypeUtility;
    import mx.rpc.AbstractOperation;
    import mx.rpc.AsyncToken;
    import mx.rpc.soap.mxml.Operation;
    import mx.rpc.soap.mxml.WebService;
    [ExcludeClass]
    internal class _Super_WS_rq_login extends com.adobe.fiber.services.wrapper.WebServiceWrapper
        // Constructor
        public function _Super_WS_rq_login()
            // initialize service control
            _serviceControl = new mx.rpc.soap.mxml.WebService();
            var operations:Object = new Object();
            var operation:mx.rpc.soap.mxml.Operation;
            operation = new mx.rpc.soap.mxml.Operation(null, "WS_rq_login");
             operation.resultType = Object;
            operations["WS_rq_login"] = operation;
            _serviceControl.operations = operations;
            try
                _serviceControl.convertResultHandler = com.adobe.serializers.utility.TypeUtility.convertResultHandler;
            catch (e: Error)
            { /* Flex 3.4 and earlier does not support the convertResultHandler functionality. */ }
            preInitializeService();
            model_internal::initialize();
        //init initialization routine here, child class to override
        protected function preInitializeService():void
            _serviceControl.service = "A_WebService";
            _serviceControl.port = "A_WebServicePort";
              wsdl = "http://ids.ice/4dwsdl";
            model_internal::loadWSDLIfNecessary();
          * This method is a generated wrapper used to call the 'WS_rq_login' operation. It returns an mx.rpc.AsyncToken whose
          * result property will be populated with the result of the operation when the server response is received.
          * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
          * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
          * @see mx.rpc.AsyncToken
          * @see mx.rpc.CallResponder
          * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
        public function WS_rq_login(e_login:String, e_password:String, e_keyCode:String, e_forceRegenKey:Boolean) : mx.rpc.AsyncToken
            model_internal::loadWSDLIfNecessary();
            var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("WS_rq_login");
              var _internal_token:mx.rpc.AsyncToken = _internal_operation.send(e_login,e_password,e_keyCode,e_forceRegenKey) ;
            return _internal_token;
    Thanks for your help
    Jonathan

    Well well,
    I got some news about this problem....
    Look like Flash Builder uses a ".FML" file to reference URL of all WebServices used in the project.
    When replacements occurs, the updated values seem coming from this.

  • Flex iPad Application : Run code before application enters background  Application Type: Flex Mobile Application Target Platform: iPad AIR Version: 4.0 Development Environment: Flash builder 4.6  I want to run some code just before iphone application goes

    Application Type: Flex Mobile Application
    Target Platform: iPad
    AIR Version: 4.0
    Development Environment: Flash builder 4.6
    I want to run some code just before iphone application goes into background. I need function similar to didEnterBackground
    of native xcode app
    (https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplicationDelegat e_Protocol/Reference/Reference.h
    tml#//apple_ref/occ/intfm/UIApplicationDelegate/applicationDidEnterBackground:)
    I tried using devactivated function of flash.display.STAGE.
    I used following addEventListener:
    STAGE = this.parent.stage;
    STAGE.addEventListener(Event.DEACTIVATE, onAppDeactivated);
    It worked for me but only when device is connected to development environment in debug mode. When I create my release build
    it is not working.
    So how can I make sure that my code runs before application goes into background.

    Even I am facing almost same issue
    Problem installing Adhoc version to iPhone and iPad - Development Environment Is - Adobe Flash CS6

  • Flash Builder - No Code Hinting For New Flash Professional Project??

    I had been using flash builder as an as3 editor and compiling from flash builder. The Flash Professional Project in Flash Builder seems perfect. It will give me the flexibility to compile from Flash Professional, or compile from the flex sdk, use breakpoints, have all my files nicely in the package explorer.
    However, it has been a terrible terrible experience. For some reason code hinting is completely turned off on all levels in Flash Professional Projects. I have been looking in every preference panel trying to figure out why this is happening. If it is actually the case that you get no code hinting whatsoever then they really should not have even bothered adding this into Flash Builder because coding in this fashion is a joke.
    However, I am still optimistic about it. Can someone help me turn on code hinting?

    Ok. Solved it. The issue was that we were using linked source code and library swcs that were all located under the same directory. When you pull up the project's properties and go to "Flex Build Path" under the "Source Path" tab you can add that directory without a problem. However, under the "Library Path" instead of just adding the directory, I added each swc individually and that solved my problem. Now all the code hinting is working perfectly.

Maybe you are looking for

  • Mapping routine in ABAP OO

    Hi, I created a transformation in BI and need to fill one field with a value read from a master data table. In the version 3.X this could be done with following ABAP routine: tables: /BI0/PGL_ACCOUNT. data: wa type /BI0/PGL_ACCOUNT.      select singl

  • 2 question about GPU and Lens correction ,cs5

    Hi i have 2 questions about Gpu and lens correction in Cs5 1)Filter->lens correction->search online i get often and almost every connection time out at the first click on search online , at the second click i get no online profile is it normal? 2) qu

  • Why can't I use a PIN for encryption?

    I had to do a factory restore in order to accept the 4.4.4 update. Since then, I have tried to encrypt my device. Previously, my device was encrypted with a PIN instead of a password. The instructions clearly state you can use a PIN or a password, bu

  • Sample delivered simple cobol test program error

    Hi, I am receiving the below error, When I try to run the delivered cobol program on my new production linux server. (The same program executed successfully in my Dev and test servers.) Compiled and linked the cobol program successfully. Any help on

  • [Solved] Flash+Firefox regularly freeze the system

    I'm not quite sure which forum to post this in, but this seems right. With reasonable regularity, my whole system freezes, almost to a complete halt. The freeze itself seems to take 5-10 seconds, during which time I can switch between windows, intera