RVL200 not unloading previous tunnels

I have been using an RVL200 with 1.1.12.1 firmware under Windows 2000 IE6 for several month now.
No problems...  I recently just crashed and now I can not get a tunnel to come up.  I can connect
just fine, but when I click to get the tunnel built, nothing is downloaded and I get a pop up error
indicating that the page is looking for a tunnel class (XTunnel1) which does not exist.  The error
is as follows:
     Line:     40
     Char:     1
     Error:     Object required: 'XTunnel1'
     Code:     0
     URL:     http://aa.bb.cc.dd/portal_install.htm
I believe that if I get rid of the remnants of old tunnels, that the new one will download.  I have gone
through the machine and deleted the appropriate files in WINDOWS\Downloaded Program Files,
drivers, xtunnel.*, ssldrv.*, MLWebCacheCleaner.*, etc.
How do I either FORCE a download or completely clean out previous tunnels?  There are artificats
in the registry for virtual passage, but I don't really want to go through snipping things.  Again,
this has all worked fine for MONTH's.  So I don't need to change any security settings in the
brower (although I did obviously double check this)

I came up with a workaround for the problem.  On a lark, I installed
Firefox and am using that.  It works fine, although I would hazard
that it might be using more memory than IE as it forks a
VirtualPassagExe excutable under a Java process that I don't recall
seeing before (not that I paid close attention to this)
I had hoped that getting the virtual tunnel to work once might somehow
clean out the 'gunk' (?) from the previous interruption of Internet
Explorer.
But only Firefox works now; I still can't get anywhere with IE.  Not
sure what this information means.  Windows 2000 is clearly not the
problem (particularly since it has worked for at least two years).
And I guess we can rule out IP stack and the 'Dial Up' connections.
Dunno where else to head to clean out the junk.  I have definately
removed all the files as per Cisco directions, but obviously there
must still be some sort of artifact some place.
"C:\WINNT\Downloaded Program Files" comes to mind, but this is kind of
a 'funny' directory.  If you connect to it with cmd.exe and do a dir,
you get a different listing than what the Windows Explorer shows you.
Perhaps it's gotten corrupted, somehow.
I guess if Firefox breaks that I could move on to Opera.  And then
Safari.  Just kidding...

Similar Messages

  • SWFElements & ImageElements not unloading on set element

    I originally was using a serial element to handle the loading and unloading however due to being unable to seek on a serial element with the current code release or latest from svn (http://forums.adobe.com/thread/552041?tstart=0) I opted to set MediaPlayer element directly for navigating. I now have another issue with the SWFElement or ImageElement not unloading.
    If I load VideoElements it seems to work fine however ImageElements and SWFElements stay on display and obscure video elements.
    According to the documentation it should remove the prior element when the new element is set.
    I even tried to unload them manually with:
                        if(view.mediaContainer.element != null && view.mediaContainer.element.container){
                            view.mediaContainer.element.container.removeMediaElement(view.mediaContainer.element);
    I am using the latest from svn because I am trying to get somthing together I can demo. ( I could not get release .8 to work as stated in my other post ). It is dificult to pitch OSMF when the workaround is almost as bad. I am still hopefull though. Any ideas on how to get navigation working in release .8 or svn trunk would be helpful.  Not sure if I should post another bug?
    Thank you
    Greg

    Hi Greg,
    I've logged a bug for the seeking issue in TemporalProxyElement - I'll keep you posted on it.
    I don't fully understand the unloading issue you mention. I tried setting a SerialElement on the media player with a SWF (wrapped inside a TemporalProxyElement) followed by a VideoElement, and the SWF got unloaded correctly. Do you encounter this problem when you call 'set media()' on MediaPlayer with the VideoElement? Could you post a smaller code sample that reproduces the unloading issue?
    One other thing you might try is to log the value of the 'canLoad' property before you set the new MediaElement. It is what determines whether the MediaPlayer will do a courtesy unload of the previous media element (it should return 'true', but just want to make sure). Alternatively, you can force an unload of the previous element by explicitly calling 'unload' on the LoadTrait as follows:
    var loadTrait:LoadTrait = player.media.getTrait(MediaTraitType.LOAD) as LoadTrait;
    try
    {     loadTrait.unload();
    catch (e:Error)
         // you can probably simply ignore the error
    Let me know if this helps.
    Thanks,
    Vijay

  • It says "this device is already associated with another apple ID" and it will not download previous purchases.

    It says "this device is already associated with another apple ID" and it will not download previous purchases. This is a new iPad 4 as my last iPad 4 was stolen. How can I fix this issue, can I fix this issue?

    Go to Settings > General > Reset > Reset and Erase all Content
    This returns the iPad to its original state then setup the iPad as new.

  • How can I delete an auto complete address in Mail that is not in Previouse Recipients?

    Hello.  I have an e-mail address that comes up in auto complete in my e-mail when sending.  It is NOT in previous recipients and
    I am unable to delete it.  Hope someone can help me with it.  Thanks

    Have found the answer on Apple discussion and was able to delete it in my Address Book.

  • Module not unloading if embedded font was ever used

    So, I have a test app that uses modules with the font embeded. Using ModuleManager I am able to load up the module. Once I call   IModuleInfo.factory.create(), I am then able to setStyle("fontFamily", "BPDiet") and the font does show up. The issue I am now having is that once I have used a font from a module, even if my TextArea is no longer using it (I even tried removing the textArea, and replacing it with a new one), the module will not unload.
    I read through this "What We Know About Unloading Modules" and I think I am not leaving any references around.They are loaded using the load() defaults. There is no code (that is used) in the module. The modules are not being added to the display, so they never receive focus.
    Note that I am unable to run the profiler as suggested in the article as I don't have the premium Flash Builder 4. <grrr>
    Note that the first module that is loaded, I can never get to unload, even if I never used the font embedded in it, but all subsequent modules will unload, if I do not use the embedded font. I can live with the first one being pinned as long as I can unload the others that are not in use.
    Here is the code from one of my modules:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Script>
            <![CDATA[
                import spark.components.TextArea;
                [Embed(source='assets/BPDiet.otf',
                        fontName='BPDiet',
                           mimeType='application/x-font')]
                public static var BPDietNormal:Class;
                public function GetSampleTextArea():TextArea {
                    var SampleTextArea:TextArea = new TextArea();
                    SampleTextArea.text = "Test BPDiet please!";
                    SampleTextArea.setStyle("fontFamily", 'BPDiet');
                    return SampleTextArea;           
            ]]>
        </fx:Script>
    </mx:Module>
    And here is the App that is loading and using the modules:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="400" minHeight="400">
        <fx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                import mx.core.UIComponent;
                import mx.events.FlexEvent;
                import mx.events.ModuleEvent;
                import mx.managers.SystemManager;
                import mx.modules.IModule;
                import mx.modules.IModuleInfo;
                import mx.modules.Module;
                import mx.modules.ModuleManager;
                import spark.components.TextArea;
                private var _ta:TextArea = null;
                protected var _moduleInfo:IModuleInfo;
                private function LoadFontTextArea(fontSwf:String):void {
                    status.text = "Loading the font pack";
                    _moduleInfo = ModuleManager.getModule(fontSwf);
                    // add some listeners
                    _moduleInfo.addEventListener(ModuleEvent.READY, onModuleReady);
                    _moduleInfo.addEventListener(ModuleEvent.ERROR, moduleLoadErrorHandler);
                    _moduleInfo.addEventListener(ModuleEvent.UNLOAD, moduleUnloadHandler);
                    _moduleInfo.load();
                private function onModuleReady(event:ModuleEvent):void {
                    status.text = "The font pack swf Ready \n" + event.module.url;
                    //All I had todo was create the module, then I could access the embeded font by name
                    var fontMod:* = event.module.factory.create();
                    //_ta = fontMod.GetSampleTextArea();
                    //panelToStuff.addElement(_ta);
                    fontMod = null;
                    //fontNameForSample = event.module.url.replace(".swf", "");
                private function moduleLoadErrorHandler(event:ModuleEvent):void {
                    status.text = "Font Module Load Error. \n" +
                        event.module.url + "\n"+ event.errorText;
                private function moduleUnloadHandler(event:ModuleEvent):void {
                    status.text = "Font Module Unload Event. \n" + event.module.url;
                private function fontChangedHandler():void {
                    unloadCurrentFont();
                    LoadFontTextArea(String(availFonts.selectedItem));
                private function unloadCurrentFont():void {
                    if (_ta != null) {
                        panelToStuff.removeElement(_ta);
                        _ta = null;
                    panelToStuff.removeElement(sampleTextArea);
                    sampleTextArea = null;
                    sampleTextArea = new TextArea();
                    sampleTextArea.id = "sampleTextArea";
                    sampleTextArea.text = "Some text for your viewing pleasure. " + colorForBK.toString(16);
                    panelToStuff.addElement(sampleTextArea);               
                    if (_moduleInfo != null)
                        _moduleInfo.release();
                        //_moduleInfo.unload();
                        _moduleInfo = null;
                    System.gc();
                private function DoNonImportantWork():void {
                    colorForBK -= 0xFAA;
                    if (colorForBK < 0x0) colorForBK = 0xFFFFFF;
                    var foo:* = {prop1: "yea" + colorForBK.toString(), prop2:"boo" + colorForBK.toString()};
                    var hmm:String = foo.prop1 + " " + foo.prop2;
                    regedFonts = new ArrayCollection(Font.enumerateFonts(false));
                [Bindable]
                private var colorForBK:int = 0xFFFFFF;
                [Bindable]
                private var fonts:ArrayCollection =
                    new ArrayCollection(new Array("AlexandriaFLF.swf", "BPDiet.swf", "ChanpagneFont.swf", "KidsFont.swf"));
                [Bindable]
                private var regedFonts:ArrayCollection;
                [Bindable]
                private var fontNameForSample:String = "";
            ]]>
        </fx:Script>
        <s:VGroup id="panelToStuff">
            <s:HGroup>
                <s:Label id="status" text="status area" backgroundColor="{colorForBK}"/>
                <s:VGroup>
                    <s:DropDownList id="availFonts" dataProvider="{fonts}" change="fontChangedHandler()" />
                    <s:Button label="UnLoad" enabled="true" click="unloadCurrentFont()"/>
                    <s:Button label="doSome" enabled="true" click="DoNonImportantWork()"/>
                </s:VGroup>
            </s:HGroup>
            <s:HGroup>
                <s:Button click="fontNameForSample = 'BPDiet';" label="BPDiet"/>
                <s:Button click="fontNameForSample = 'Champagne';" label="Champagne"/>
                <s:Button click="fontNameForSample = 'Kids';" label="Kids"/>
            </s:HGroup>
            <s:Label text="{regedFonts.length} reg'ed"/>
            <s:TextArea id="sampleTextArea" fontFamily="{fontNameForSample}" text="Some Sample text for your viewing"/>
        </s:VGroup>
    </s:Application>
    A couple things to note; I am calling System.rc() in the unloadCurrentFont() method just to speed up seeing the SWF unload in the debug console. The DoNonImportantWork() is there to just cause some events to happen and to create some objects that will need to be GC'ed. It also let me know that the fonts are not getting registered in Font.
    I'm going to have 30 fonts (and more, that designer is busy) that I will need to be able to dynamically load, but right now, loading them with CSS style modules blows up after about 15 because style modules register the font so I cannot unload the CSS swf.

    To help eliminate the question of whether the TextArea is being held by something else, I have removed it from the MXML, and now programatically create it. That did not help.
    So, I got the trial version of Flash Builder 4 installed on another machine in the office so that I can use the profiler. (The profiler is pretty cool by the way).
    After a lot of profiing, I found four paths to the module's FlexModuleFactory.
    Two of those paths go to EmbeddedFontRegistry, whose data is static. I could get into it and remove font entry and free up the moduleFactory from there. This is a hack, that entry in/on EmbeddedFontRegistry.font should have been cleaned up by the code removing the fontFamily from the TextArea. (Note that EmbeddedFontRegistry is marked [ExcludeClass], which I assume means I should not really be messing with it.
    The other two I cannot get to as they are anonymous. They also don't appear to be referenced, as the Object References shows them both as GC root objects. Here is a screen shot:
    I did a search through the sdk code and 'fbs' only shows up as a parameter on the init function of various Marshal support classes, but is not used in the init()
    Anyway, these references to the FlexModuleFactory do not get held if I do not use the embeded font in the module.
    Here is the updated code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="400" minHeight="400">
        <fx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                import mx.core.EmbeddedFont;
                import mx.core.EmbeddedFontRegistry;
                import mx.core.IEmbeddedFontRegistry;
                import mx.core.UIComponent;
                import mx.events.FlexEvent;
                import mx.events.ModuleEvent;
                import mx.managers.SystemManager;
                import mx.modules.IModule;
                import mx.modules.IModuleInfo;
                import mx.modules.Module;
                import mx.modules.ModuleManager;
                import spark.components.TextArea;
                private var _ta:TextArea = null;
                protected var _moduleInfo:IModuleInfo;
                private function LoadFontTextArea(fontSwf:String):void {
                    status.text = "Loading the font pack";
                    _moduleInfo = ModuleManager.getModule(fontSwf);
                    // add some listeners
                    _moduleInfo.addEventListener(ModuleEvent.READY, onModuleReady);
                    _moduleInfo.addEventListener(ModuleEvent.ERROR, moduleLoadErrorHandler);
                    _moduleInfo.addEventListener(ModuleEvent.UNLOAD, moduleUnloadHandler);
                    _moduleInfo.load();
                private function onModuleReady(event:ModuleEvent):void {
                    status.text = "The font pack swf Ready \n" + event.module.url;
                    //All I had todo was create the module, then I could access the embeded font by name
                    var fontMod:* = event.module.factory.create();
                    fontMod = null;
                private function moduleLoadErrorHandler(event:ModuleEvent):void {
                    status.text = "Font Module Load Error. \n" +
                        event.module.url + "\n"+ event.errorText;
                private function moduleUnloadHandler(event:ModuleEvent):void {
                    status.text = "Font Module Unload Event. \n" + event.module.url;
                private function fontChangedHandler():void {
                    unloadCurrentFont();
                    LoadFontTextArea(String(availFonts.selectedItem));
                private function unloadCurrentFont():void {
                    if (_ta != null && _moduleInfo != null) {
                        var fontName:String = _ta.getStyle("fontFamily");
                        _ta.setStyle("fontFamily", "");
                        _ta.validateProperties();
                        if (_ta.textDisplay) {
                            _ta.textDisplay.validateProperties();
                        panelToStuff.removeElement(_ta);               
                        _ta = null;
                        //This I should not have to do, but the framework is not doing it
                        var embFontReg:IEmbeddedFontRegistry = EmbeddedFontRegistry.getInstance();
                        var embFonts:Array = embFontReg.getFonts();
                        for each (var curEmbFont:EmbeddedFont in embFonts){
                            if (curEmbFont.fontName == fontName){
                                embFontReg.deregisterFont(curEmbFont, _moduleInfo.factory);
                    if (_moduleInfo != null)
                        _moduleInfo.unload();
                        _moduleInfo = null;
                    System.gc();
                private function AddTA():void {
                    _ta = new TextArea();
                    _ta.text = "Some text for your viewing pleasure. " + colorForBK.toString(16);
                    panelToStuff.addElement(_ta);
                private function DoNonImportantWork():void {
                    colorForBK -= 0xFAA;
                    if (colorForBK < 0x0) colorForBK = 0xFFFFFF;
                    var foo:* = {prop1: "yea" + colorForBK.toString(), prop2:"boo" + colorForBK.toString()};
                    var hmm:String = foo.prop1 + " " + foo.prop2;
                [Bindable]
                private var colorForBK:int = 0xFFFFFF;
                [Bindable]
                private var fonts:ArrayCollection =
                    new ArrayCollection(new Array("AlexandriaFLF.swf", "BPDiet.swf", "ChanpagneFont.swf", "KidsFont.swf"));
            ]]>
        </fx:Script>
        <s:VGroup id="panelToStuff">
            <s:HGroup>
                <s:Label id="status" text="status area" backgroundColor="{colorForBK}"/>
                <s:VGroup>
                    <s:DropDownList id="availFonts" dataProvider="{fonts}" change="fontChangedHandler()" />
                    <s:Button label="UnLoad" enabled="true" click="unloadCurrentFont()"/>
                    <s:Button label="AddTA" enabled="true" click="AddTA()"/>
                    <s:Button label="doSome" enabled="true" click="DoNonImportantWork()"/>
                </s:VGroup>
            </s:HGroup>
            <s:Button click="_ta.setStyle('fontFamily', 'BPDiet');" label="BPDiet"/>
        </s:VGroup>
    </s:Application>
    I really think I've reached the end of what I can do. This really seems like a bug.

  • Image gallery not removing previous image

    Hi,
    I have an image gallery but I can't seem to get the previous image removed. I have two functions:
    [AS]function clearLoader():void {
    try {
      var li:LoaderInfo = slideLoader.contentLoaderInfo;
      if(li.childAllowsParent && li.content is Bitmap){
       (li.content as Bitmap).bitmapData.dispose();
    } catch(e:*) {}
    }[/AS]
    And
    [AS]while(currentContainer.numChildren)
    var obj:DisplayObject =  currentContainer.getChildAt(0) as DisplayObject;
    if (obj is Bitmap) {
      Bitmap(obj).bitmapData.dispose();
      currentContainer.removeChild(obj);
    } else if (obj  is MovieClip) {
      currentContainer.removeChild(obj);
    }[/AS]
    But in some way not the previous image is removed, but the one before that. Annoying, because if image 1 is larger than image 2, image 1 stays on the background. It is only when loading image 3 the first image is removed from the stage. Any advice?
    Thanks!
    Dirk

    Hi,
    1. With the switchSlide() function:
    function switchSlide(intSlide:int):void {
     if(!Tweener.isTweening(currentContainer)) {
      if(slideTimer.running)
       slideTimer.stop();
      intCurrentSlide = intSlide;
      if(currentContainer == sprContainer2)
       currentContainer = sprContainer1;
      else
       currentContainer = sprContainer2;
      currentContainer.alpha = 0;
      mcSlideHolder.swapChildren(sprContainer2, sprContainer1);
      clearLoader();
      slideLoader = new Loader();
      slideLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeSlideIn);
      slideLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
      var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
      slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
      mcInfo.lbl_description.text = unesc_xmlSlideshow..image[intCurrentSlide].@title;
      mcInfo.lbl_artist.text = unesc_xmlSlideshow..image[intCurrentSlide].@artist;
      strLink           = unesc_xmlSlideshow..image[intCurrentSlide].@link;
      strTarget          = unesc_xmlSlideshow..image[intCurrentSlide].@target;
      mcInfo.mcDescription.lbl_description.htmlText = unesc_xmlSlideshow..image[intCurrentSlide].@desc;
      mcInfo.lbl_count.text = " Slide " + (intCurrentSlide + 1) + " / " + intSlideCount2;
    /AS
    2. No images from other domains... just the ones on my webserver.

  • UnloadStyleDeclarations not unloading Font

    We are developing an app that will allow the user to choose from any number (30+ and counting) fonts. Each font is being put in its own SWF using a CSS that is compiled to a SWF. Each CSS has no styling, just @font-face entries to include the various weights and styles. But after the user samples ~15 font, the player and browser crash.
    So I added some code to only keep the last 5 SWF by calling unloadStyleDeclarations on the others. But after calling that, the font is still available and usable (if I set the fontFamily, I can still see the "unloaded" font). If I call Font.enumerateFonts(false) the font is still listed there. And after ~15 different fonts are sampled, it still crashes.
    No where in the app do I call Font.registerFont.
    Thinking there was something in the application. I made the following, simple as you get, example, and it does not unload the fonts.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="400" minHeight="600">
        <fx:Script>
            <![CDATA[
                import mx.events.StyleEvent;
                private function LoadFont(swfName:String):void {
                    var myEvent:IEventDispatcher = styleManager.loadStyleDeclarations(swfName, true, false, null, null);
                    //var myEvent:IEventDispatcher = styleManager.loadStyleDeclarations(swfName, true, false, ApplicationDomain.currentDomain, null);
                    myEvent.addEventListener(StyleEvent.COMPLETE, function(evt:StyleEvent):void { FontSWFLoadComplete(swfName, evt); } );
                    lblStatus.text = "Loading " + swfName;
                private function UnLoadFont(swfName:String):void {
                    styleManager.unloadStyleDeclarations(swfName, true);
                protected function FontSWFLoadComplete(swfFilename:String, evt:StyleEvent):void {
                    lblStatus.text = "Finished loading " + swfFilename;
                    ListLoadedFonts();
                private function ListLoadedFonts():void {
                    loadedFonts.text = "";
                    for each (var curFont:* in Font.enumerateFonts(false)) {
                        loadedFonts.text += curFont.fontName + "\r\n";
                [Bindable]
                private var fontName:String = "";
            ]]>
        </fx:Script>
        <s:VGroup>
            <s:HGroup>
                <s:VGroup>
                    <s:Button click="LoadFont('BPdiet.swf');" label="Load BPDiet"/>
                    <s:Button click="UnLoadFont('BPdiet.swf');" label="UnLoad BPDiet"/>
                    <s:Button click="fontName = 'BPDiet';" label="Apply"/>
                </s:VGroup>
                <s:VGroup>
                    <s:Button click="LoadFont('UglyQua.swf');" label="Load UglyQua"/>
                    <s:Button click="UnLoadFont('UglyQua.swf');" label="UnLoad UglyQua"/>           
                    <s:Button click="fontName = 'UglyQua';" label="Apply"/>
                </s:VGroup>
                <s:VGroup>
                    <s:Button click="LoadFont('kids.swf');" label="Load kids"/>
                    <s:Button click="UnLoadFont('kids.swf');" label="UnLoad kids"/>           
                    <s:Button click="fontName = 'Kids';" label="Apply"/>
                </s:VGroup>
                <s:VGroup>
                    <s:Button click="LoadFont('NoFontsStyle.swf');" label="Load NoFonts"/>
                    <s:Button click="UnLoadFont('NoFontsStyle.swf');" label="UnLoad NoFonts"/>           
                    <s:Button click="fontName = '';" label="Apply"/>
                </s:VGroup>               
            </s:HGroup>
                <s:Label id="lblStatus" text="Status Area"/>
            <s:TextArea id="SampleTextArea" width="320" heightInLines="5" fontFamily="{fontName}" fontSize="25" >
                Some sample text to think about
            </s:TextArea>
            <s:Button click="ListLoadedFonts();" label="Reload list"/>
            <s:TextArea id="loadedFonts" width="320" heightInLines="15"/>
        </s:VGroup>   
    </s:Application>
    Interestingly, I will sometimes see [Unload SWF] on the console, and that SWF's font is still able to be used.
    After that didnt work, I did add the following style to one of the CSS files, and when I call unload, that style is removed, but the font is still available as mentioned.
    s|Label {
        fontSize:    15;
        fontFamily: BPDiet;
        color: #FF9933;
    (that made all of the text on the buttons change to the BPDiet font and be orange)
    I'm at a loss on this tacked.  I am now trying something based on info I gleaned from here: Flex and Embedded Fonts by making a SWF that has the font embedded in an .as file and then creating a textfield (text area, heck rendering a bitmap) that uses that embedded font, but thats not working either. I'll bug you all about that if we dont find an answer to unloading the fonts that are in the CSS files.

    Yeah, Fonts in a style module get registered and won't unload.  To have
    unloadable fonts, put the font in a regular module.

  • HT1657 I rented a movie and when I go to play it, my IPAD says it cannot open.  It has not been previously played.  How do I get a refund?

    I rented a movie and when I go to play it, my IPAD says it cannot open.  It has not been previously played.

    iTunes Store Movie Rental FAQ - http://support.apple.com/kb/HT1657

  • HT1222 When i double click, May I know how to remove those use app below? Not like previous version I can clear it to stop those app keep on running

    When i double click, May I know how to remove those use app below? Not like previous version I can clear it to stop those app keep on running

    Swipe up on the thumbnail of the app and it will disappear.

  • DropDown by index not clearing previous values

    Dropdown by index issue.
    I am having a problem with my dropdown not clearing previous entries. 
    I have a webdynpro that has two views, main and appraisal.  I can enter the appraisal view from the main.  The appraisal view contains a drop down. At this point, I the dropdown appears to work correctly.  However, if I then enter a second appraisal, the drop down displays the value from the previous entry.  I tried clearing out the drop down in wddomodifyview, but that just cleared out the actual line of the previous selection in the drop down, so I removed that code.
    Here is what I have done so far.
    Under Context in the appraisal view, I have created a node named DD1_1 which contains the attributes rating and rtext.
    I have created a Supply Function attached to it called DD_MAPPING1_1, which contains the following code:
    method DD_MAPPING1_1 .
    * create local data variable to access context information
      Data: context_node type ref to if_wd_context_node.
    * create table based on context structure
      Data: it_rating type STANDARD TABLE OF if_appraisal=>element_DD1_1,
            wa_rating like line of it_rating.
      clear wa_rating.
      wa_rating-rating = ' '. wa_rating-rtext = ' '.
      append wa_rating to it_rating.
      wa_rating-rating = '1'. wa_rating-rtext = 'Below Expectations'.
      append wa_rating to it_rating.
      wa_rating-rating = '2'. wa_rating-rtext = 'Met Expectations (low)'.
      append wa_rating to it_rating.
      wa_rating-rating = '3'. wa_rating-rtext = 'Met Expectations (medium)'.
      append wa_rating to it_rating.
      wa_rating-rating = '4'. wa_rating-rtext = 'Met Expectations (high)'.
      append wa_rating to it_rating.
      wa_rating-rating = '5'. wa_rating-rtext = 'Exceeded Expectations'.
      append wa_rating to it_rating.
      context_node = wd_context->get_child_node( name = 'DD1_1').
      context_node->BIND_TABLE( it_rating ).
    endmethod.
    I feel I am missing something, but seeing this is my first time attempting a dropdown, I am not certain what.
    Any assistance would be appreciated.

    I have tried this code in the inbound plug handler:
      DATA lo_nd_dd1_1 TYPE REF TO if_wd_context_node.
      DATA lo_el_dd1_1 TYPE REF TO if_wd_context_element.
    * navigate from <CONTEXT> to <DD1_1> via lead selection
      lo_nd_dd1_1 = wd_context->get_child_node( name = wd_this->wdctx_dd1_1 ).
    * get element via lead selection
      lo_el_dd1_1 = lo_nd_dd1_1->get_element( ).
      clear lo_el_dd1_1.
      lo_nd_dd1_1->set_lead_selection(
        element = lo_el_dd1_1
    and the program is bombing out with the message
    Invalid index 0 when setting lead selection; context node: APPRAISAL.1.DD1_1
    Should I be using set_lead_selection_index?
    Thank you for all your help.
    Edited by: Ed Left on May 19, 2010 5:25 PM

  • The Firefox 29 process not unloading - I think I've solved the problem I stated at pmcjr's post.

    I went back to basic Firefox 29. Set options etc, then added extensions one by one. Two extensions appear to cause the Firefox process problem in my system. They are 'Disconnect' and 'Colorful tabs'. Extensions I have successfully installed are ADBlock, Https-Everywhere, Better Privacy, Self-destructing Cookies, FlagFox and IMTranslator and all appears OK with all of them running. Add Disconnect or Colorful Tabs and the Firefox process does not unload on exit. They have to be removed, not disabled, for a functioning Firefox. This works for me. I did not have the problem in version 28.

    Updated to 29.0.1. I went through the following:-
    1 - The process did not unload after the update (did restart, reboot).
    2 - Reset Firefox; 'closed' the embarrased notice and back to basic Firefox - no extensions, etc.
    3 - Set options, added all my preferred extensions.
    4 - My Firefox 29.0.1 now seems OK; the process has unloaded every time I close (I use the X). I will advise if the problem reoccurs.

  • Lightroom 5 is not showing previous sucessfuly imported images and images are not identified as missing, there are no images shown in the library, how do  I reconnect missing images?

    lightroom 5 is not showing previous successfully imported images and images are not identified as missing, there are no images shown in the library, how do  I reconnect missing images?

    If the images are not identified as missing ... then you can't reconnect them
    But I'm not really sure what is happening, as I don't understand your description of the problem, could you show us a screen capture? Or describe what appears on your screen in much more detail...

  • TS3694 sirmy iphone 3G was not on due to software update and its not resotre previous software and shown as error 1051 kindly resolve my issue as soon as possible

    sir my iphone 3G was not on due to software update and its not resotre previous software and shown as error 1051 kindly resolve my issue as soon as possible

    The easiest way to fix the hosts file is to restore it from a backup that predates the modification, or to copy the unmodified file from another Mac. If you can't do that, then do as below.
    Triple-click anywhere in the line below on this page to select it:
    open -e /etc/hosts
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Paste into a Terminal window by pressing command-V. A TextEdit window should open. At the top of the window, you should see this:
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1                              localhost
    255.255.255.255          broadcasthost
    ::1                                        localhost
    Below that, you may see some other lines. The first 9 lines should be exactly as above, apart from differences in the blank space within lines. Otherwise you can't use this procedure—STOP and ask for guidance.
    If the contents of the TextEdit window are as described, close it, then enter the following command in the Terminal window in the same way as before (by copy and paste):
    sudo sed -i~ '10,$d' /etc/hosts
    You may be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. If you don’t have a login password, you’ll need to set one before you can run the command. You may get a one-time warning to be careful. Confirm. Quit Terminal.
    If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Log in as one and start over.
    That will fix the hosts file. There is now a copy of the old hosts file with the name "hosts~" in the same folder as "hosts". You can delete the copy if you wish. Don't delete the file named "hosts".

  • Time Machine does not recognize previous backups in TC and starts new BUps

    Time Machine (TM) seem not recognize previous back ups made in Time Capsule (TC) and begins a new copy of the back up every time, taking a lot of time.
    The Time Capsule has an initial backup copy that I made several weeks ago. Subsequent backups seem to have disappear and the initial back up process is started over every time I make a backup, lasting several hours.
    In the Control Panel of Time Machine, the Time Capsule disk has been selected as the place where the backup should be made.
    The Time Capsule is not mounted in the desktop but can be seen as a Share resource.
    Do you know why this is happening?
    Is there any way that I can use the already existing initial backup in TC as a starting point for subsequent backups?
    Your help will be much appreciated.

    I resolved the problem of getting the computer to recognize that I had the authorization to change file names by myself. For anyone with a similar issue (insufficient authorization), the following are the steps I took to resolve the issue.
    First, click on the external HD icon used for TM and chose "get info". In the info window goto the "Sharing & Permission" section where the +, - , action menu and lock are. Unlock the lock if it is locked. Verify that the Name used for the computer, user or administrator has "read & write" permission. Then go to the Action menu (the icon or design that looks like a sprocket) and choose "apply to enclosed items". In my case the HD went on noisily for a few hours before I decided to Force Quit. I then went back to the file name and changed it back to the way it was prior to my ill fated attempt to back up my other computer on the same HD.
    I hope this will help anyone who has come across a similar issue.

  • Time Machine in Mavericks does not recognize previous backups

    Hi!
    I've just installed Mavericks and Time Machine does not recognize my previously existing backups. Tried reconnecting to my backups and nothing changed (I have used this successfully in the past with Lion). Decided to do a full new backup in another drive, which worked fine, and after deselecting that drive in TM preferences and selecting it again it also does not recognize the new backup and indicates it is going to do a full new backup... Any suggestions?
    Besides the problem of not recognizing previous backups, this is problematic for me because I am used to do 2 different TM backups in 2 different locations and it was very easy just to select the corresponding disk in each location and TM would recognize the existing backups and just follow on the incremental backup. Now this seems to be impossible in Mavericks...
    Any help will be much appreciated.

    FireWire or thunderbolt?
    FireWire and thunderbolt HD interfaces seem to be universally affected.   I've seen no exemptions yet to same
    There is no resolution to this yet, techs are working on it
    Its happening on 80% WD Raid My Book on this board and others, and happening entirely on Firewire and Thunderbolt drives and apparently all WD Mybooks
    Its seen on O Raid and 1 Raid both alike.
    also occurring on LaCie (Seagate) FW drives.
    until resolution , use external USB drives proven to work with Mavericks.

Maybe you are looking for

  • Used z61m has some serious issues,can u help?

    most times works fine,can spend hours on it with no issues.but here are all the things it does.1)sometimes when you cut it on the pointer wont move,and i have to cut it off and back on(sometimes numerous) til works.2)sometimes you can not type in at

  • Failed to resolve JCO destination name 'SAP_R3_SelfServiceGenerics_MetaData

    Hi, Got the following error message after login to my portal to access the ESS/MSS page: The initial exception that caused the request to fail, was:    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to resolve JCO destination nam

  • MonitorFor Processed XML Messages

    Hi Eveybody, I have a little problem with my message. I uploaded my xml with Transaction CG3Z from my directory to SAP system. I saw the xml in AL1. After a few minute it disappears and when I go to SXMB_MONI and I execute for check the process. The

  • Pages and Numbers keyboard lag?

    Have a MacPro purchased one year ago. Running 10.7.5. From the beginning there has always been a keyboard entry lag at times in Pages and Numbers when entering type, and with keyboard shortcuts (copy, paste, save). Trying to figure out why?

  • CProjects: Download to MS Project

    Hi, I am trying to download a cprojects-project to ms project. One phase of my cprojects-project has a fixed start dart ("must start on"). But if exporting to ms project the fixed date is not mapped to ms project. Instead the second phase starts righ