How to remove the margin between the objects

Hi im new flex...

< mx:Grid width = '100 percent"borderStyle ="solid"borderThickness ="1"borderColor ="#000000">

< mx:GridRow paddingTop = paddingBottom '0' = '0' borderStyle = borderThickness 'solid' = "1" width = "100%" height = "100%" >

< mx:GridItem borderStyle = "solid" borderThickness = "1" borderColor = "#00ccff" width = "100%" height = "100%" verticalScrollPolicy = "off" >

< mx:Canvas width = "100%" height = "50" backgroundColor = "#000080" >

< mx:Label text = "text" / >

< / mx:Canvas >

< / mx:GridItem >

< / mx:GridRow >

< mx:GridRow paddingTop = paddingBottom '0' = '0' borderStyle = borderThickness 'solid' = "1" width = "100%" height = "100%" >

< mx:GridItem borderStyle = "solid" borderThickness = "1" borderColor = "#00ccff" width = "100%" height = "100%" verticalScrollPolicy = "off" >

< mx:Canvas width = "100%" height = "50" backgroundColor = "#CCCCCC" >

< mx:Label text = "text" / >

< / mx:Canvas >

< / mx:GridItem >

< / mx:GridRow >

< / mx:Grid >

I want to remove the gap between the 2 objects generated with code above... Help, please. I've attached an example of the output screen.

_gap.png

Help, please...

Sorry, notTakenUserName has already solved. Give him credit

Tags: Flex

Similar Questions

  • How to remove the object dynamically?

    Hi all

    I created an object dynamically. But I don't know how to remove dynamically in QML.

    I called the function to "destroy ()", but I don't know it works or not. The code is as follows:

    LogView.qml

    import bb.cascades 1.0
    
    ScrollView {
        id:logviewaaa
    
        signal addnewlog
    
        property variant number:100
        property variant log1
        property variant log2
        property variant log3
        property variant log4
        property variant log5
        property variant log6
        property variant log7
        property variant log8
        property variant log9
        property variant log10
    
        onAddnewlog:{
    
            number=logcontain.count()
            console.log("the log number is "+number)
            if(number == 0)
            {
                console.log("ready to add the first log");
                log1 = log.createObject(logcontain);
                console.log("ready to add the first log");
                logcontain.add(log1);
    
            }else if(number ==1){
    
                log2 = log.createObject(logcontain)
                logcontain.add(log2)
    
            }else if(number ==2){
                log3 =log.createObject(logcontain)
                logcontain.add(log3)
            }else if(number ==3){
                log4=log.createObject(logcontain)
                logcontain.add(log4)
            }else if(number == 4){
                log5=log.createObject(logcontain)
                logcontain.add(log5)
            }else if(number ==5){
                log6=log.createObject(logcontain)
                logcontain.add(log6)
            }else if(number ==6){
                log7=log.createObject(logcontain)
                logcontain.add(log7)
            }else if(number ==7){
                log8=log.createObject(logcontain)
                logcontain.add(log8)
            }else if(number ==8){
                log9=log.createObject(logcontain)
                logcontain.add(log9)
            }else if(number ==10){
                log10=log.createObject(logcontain)
                logcontain.add(log10)
            }
         }
    
        Container{
         id:logcontain      
    
        onCreationCompleted:{
        }
    
          attachedObjects:[
              ComponentDefinition{
                  id:log
                  source:"Log.qml"
              }
    
          ]
    
        }
    
    }
    

    Log.QML:

    import bb.cascades 1.0
    
        Container {
           id:root
            signal deletethislog
    
            TextArea{
                id:recordlog
                inputMode:TextAreaInputMode.Text
            }
        Container {
             id:buttoncontain
            layout: StackLayout {
                orientation: LayoutOrientation.LeftToRight
            }
            Button {
                id: edittext
                imageSource: "asset:///icons/ic_edit.png"
                onClicked: {
                    recordlog.editable = true
                }
    
            }
            Button {
                id: oktext
                imageSource: "asset:///icons/ic_done.png"
                onClicked: {
                    recordlog.editable = false
                }
    
            }
            Button{
                id:deletetext
                imageSource: "asset:///icons/ic_delete.png"
                onClicked: {
                    destroy()
                }
    
                layoutProperties: AbsoluteLayoutProperties {
    
                }
                horizontalAlignment: HorizontalAlignment.Right
    
            }
        }
        onCreationCompleted:{
        }
    }
    

    Thank you.

    brad_qqq

    I solved this problem. I always use "destroy()" function to solve. The code is as follows:

    LogView.qml

    import bb.cascades 1.0
    
    ScrollView {
        id:logviewaaa
    
        signal addnewlog
    
        property variant number:100
        property variant log1
        property variant log2
        property variant log3
        property variant log4
        property variant log5
        property variant log6
        property variant log7
        property variant log8
        property variant log9
        property variant log10
    
        onAddnewlog:{
    
            number=logcontain.count()
            console.log("the log number is "+number)
            if(number == 0)
            {
                console.log("ready to add the first log");
                log1 = log.createObject(logcontain);
                console.log("ready to add the first log");
                logcontain.add(log1);
                log1.objectaaa=log1
                log1.maincontain=logcontain
    
            }else if(number ==1){
    
                log2 = log.createObject(logcontain)
                logcontain.add(log2)
                log2.objectaaa = log2
                log2.maincontain = logcontain
    
            }else if(number ==2){
                log3 =log.createObject(logcontain)
                logcontain.add(log3)
                log3.objectaaa = log3
                log3.maincontain = logcontain
            }else if(number ==3){
                log4=log.createObject(logcontain)
                logcontain.add(log4)
                log4.objectaaa = log4
                log4.maincontain = logcontain
            }else if(number == 4){
                log5=log.createObject(logcontain)
                logcontain.add(log5)
                log5.objectaaa = log5
                log5.maincontain = logcontain
            }else if(number ==5){
                log6=log.createObject(logcontain)
                logcontain.add(log6)
                log6.objectaaa = log6
                log6.maincontain = logcontain
            }else if(number ==6){
                log7=log.createObject(logcontain)
                logcontain.add(log7)
                log7.objectaaa = log7
                log7.maincontain = logcontain
            }else if(number ==7){
                log8=log.createObject(logcontain)
                logcontain.add(log8)
                log8.objectaaa = log8
                log8.maincontain = logcontain
            }else if(number ==8){
                log9=log.createObject(logcontain)
                logcontain.add(log9)
                log9.objectaaa = log9
                log9.maincontain = logcontain
            }else if(number ==10){
                log10=log.createObject(logcontain)
                logcontain.add(log10)
                log10.objectaaa = log10
                log10.maincontain = logcontain
            }
         }
    
        Container{
         id:logcontain      
    
        onCreationCompleted:{
        }
    
          attachedObjects:[
              ComponentDefinition{
                  id:log
                  source:"Log.qml"
              }
    
          ]
    
        }
    
    }
    

    Log.QML:

    import bb.cascades 1.0
    
        Container {
           id:root
           //objectName:"thislog"
            signal deletethislog
            property variant objectaaa
            property variant maincontain
    
            TextArea{
                id:recordlog
                inputMode:TextAreaInputMode.Text
            }
        Container {
             id:buttoncontain
            layout: StackLayout {
                orientation: LayoutOrientation.LeftToRight
            }
            Button {
                id: edittext
    
                imageSource: "asset:///icons/ic_edit.png"
                onClicked: {
                    recordlog.editable = true
                }
    
            }
            Button {
                id: oktext
                imageSource: "asset:///icons/ic_done.png"
                onClicked: {
                    recordlog.editable = false
                }
    
            }
            Button{
                id:deletetext
                imageSource: "asset:///icons/ic_delete.png"
                onClicked: {
    
                   selfdestroy()
                }
    
                layoutProperties: AbsoluteLayoutProperties {
    
                }
                horizontalAlignment: HorizontalAlignment.Right
    
            }
        }
        onCreationCompleted:{
            deletetext.clicked.connect(deletethislog)
        }
        function selfdestroy(){
            objectaaa.destroy()
            maincontain.remove(objectaaa)
    
        }
    }
    

    brad_qqq

  • [REQUEST] How to remove the object from the list to display and memory that added dynamic

    Hi there everyone,

    I have a question which I hope you guys can help me with, so the question is:


    "How to remove us (sprite object that has an external swf that it is child) display and, above all, of the memory, but we can still use the same variable to add another object (yes another sprite like the one we have removed yet a different content)..,

    I did tried the removeChildAt thing he did remove all the child of the display list, but I still can hear the sound of the video running.

    Here is the code on a small scale of what I do (sorry that I can only give you chunk code loading and adding)

    var SWFList:XMLList; used to contain a list of all the external swf source, atribute and etc.
    var totalSWF:int; the total number of swf external, it must be charged

    var swfLoader:Loader; instance of the loader class to load external swf file

    function loadSWF (): void
    {
    for (var i: Number; i < totalSWF; i ++)

    swfLoader = new Loader();
    swfLoader.contentLoaderInfo.addEventListener (Event.COMPLETE, onSWFLoadComplete);
    swfLoader.load (new URLRequest (SWFList [i], .@source));
    }

    function onSWFLoadComplete(e:Event):void

    {

    this.stage.addChild (e.target.content);

    }

    and also if you can give an example of a good method of dynamic add the object to the stage I would really appreciate cause I suspect mine are bad method.

    Thank you all.

    If you have been publishing for fp 10, just use unloadAndStop().

    I assume you're not publication for fp 10 so you have to use something like:

    function clearScreen (): void
    {
    var mc:MovieClip = MovieClip (swfLoader.content);

    MC.yourflvintheloadedswf.Stop ();

    mc.mcinyourloadedswfthathasalistener.removeEventListener (MouseEvent.CLICK, whateverF);

    etc.

    swfLoader.unload ();
    }

  • How to remove the object in video

    I recorded a concert of kid, but some parents walked in my path for 3 seconds, how do I remove these topic unwanted on my video of EPA 12?

    Angus-Y

    What version of Premiere Elements you are using and on what computer operating system is running?

    How much of the frame of these consumes upward? It is small enough so that you can insert a picture indeed image to replace with this type of coverage?

    Can cut you just 3 seconds of video?

    I think that the expression of today for this kind of thing is photobombing, I suppose that videobombing in this case. Depending on the location of the people, you could do a depth of field type of thing with matte where they are on your person of interest fading is in full discussion.

    The details of the circumstance will lead plans to save the 3 seconds of video.

    RTA

  • How to remove the object from the stage

    Hello

    I am currently implementing an AS3 code that generates a snow effect on the scene.  I am using the code from this site, but has difficulty:

    http://www.Kirupa.com/developer/flashcs4/falling_snow_as3_cs4_pg5.htm

    I have no difficulty in implementing of the snow, but I can't understand how get rid of it once it's there!  Here's the code, I have:

    (main.as)

    main/public class extends MovieClip

    {

    var snowamount = 50;

    public void main()

    {

    scene9. SnowPlus.addEventListener (MouseEvent.MOUSE_DOWN, moresnow);

    }

    function makeItSnow()

    {

    for (var i: int = 0; i < snowamount; i ++)

    {

    var newSnowFlake:Snowflake = new Snowflake();

    this.addChild (newSnowFlake);

    newSnowFlake.SetInitialProperties ();

    triggerSnowAnimation();

    }

    }

    function moresnow (MouseEvent): void

    {

    snowamount += 20;

    makeItSnow();

    }

    function triggerSnowAnimation()

    {

    If (snowamount > = 160)

    {

    scene9.gotoAndPlay (3);

    scene9. SnowPlus.Visible = false;

    }

    }

    (Snowflake.as)

    SerializableAttribute public class extends MovieClip Snowflake

    {

    private var xPos:Number = 0;

    private var yPos:Number = 0;

    private var xSpeed:Number = 0;

    private var ySpeed:Number = 0;

    private var radius: Number = 0;

    private var scale: Number = 0;

    private var alphaValue:Number = 0;

    private var maxHeight:Number = 0;

    private var maxWidth:Number = 0;

    public void Snowflake()

    {

    }

    public void SetInitialProperties()

    {

    xSpeed is.05 + Math.random () *.1;.

    ySpeed =.1 + Math.random () * 3;

    RADIUS =.1 + Math.random () * 2;

    Scale =.01 + Math.Random ();

    alphaValue =.1 + Math.Random ();

    var stageObject:Stage = this.stage in the stadium;

    maxWidth = stageObject.stageWidth;

    maxHeight = stageObject.stageHeight;

    This.x = Math.random () * maxWidth;

    This.y = Math.random () * maxHeight;

    PosX = this.x;

    yPos = this.y;

    this.scaleX = this.scaleY = scale;

    This.Alpha = alphaValue;

    this.addEventListener (Event.ENTER_FRAME, MoveSnowFlake);

    }

    function MoveSnowFlake(e:Event)

    {

    xPos += xSpeed;

    yPos += ySpeed;

    This.x += radius * Math.cos (xPos);

    This.y += ySpeed;

    If (this.y - this.height > maxHeight)

    {

    This.y = - 10 - this.height;

    This.x = Math.random () * maxWidth;

    }

    }

    }

    The code is not so difficult to understand, in fact.  I have a button that adds "snowamount" to the variable, so more snow is done on the scene when the button is clicked.  However, once the "snowamount" gets above 160 bee, I trigger an animation.  Once the animation is completed, I want the snow to disappear from the scene.  But I can't understand the correct way to do everything.  Any help would be appreciated!  Thank you very much in advance.

    create an array and store your references to Snowflake in this table.  When you are ready to remove the snow flakes, loop in the table.

    main/public class extends MovieClip

    {

    var snowamount = 50;

    var snowFlakeA:Array = [];

    public void main()

    {

    scene9. SnowPlus.addEventListener (MouseEvent.MOUSE_DOWN, moresnow);

    }

    function makeItSnow()

    {

    for (var i: int = 0; i< snowamount;="">

    {

    var newSnowFlake:Snowflake = new Snowflake();

    snowFlakeA.push (newSnowFlake);

    this.addChild (newSnowFlake);

    newSnowFlake.SetInitialProperties ();

    triggerSnowAnimation();

    }

    }

    function moresnow (MouseEvent): void

    {

    snowamount += 20;

    makeItSnow();

    }

    function triggerSnowAnimation()

    {

    If (snowamount > = 160)

    {

    scene9.gotoAndPlay (3);

    scene9. SnowPlus.Visible = false;

    }

    }

    (Snowflake.as)

    SerializableAttribute public class extends MovieClip Snowflake

    {

    private var xPos:Number = 0;

    private var yPos:Number = 0;

    private var xSpeed:Number = 0;

    private var ySpeed:Number = 0;

    private var radius: Number = 0;

    private var scale: Number = 0;

    private var alphaValue:Number = 0;

    private var maxHeight:Number = 0;

    private var maxWidth:Number = 0;

    public void Snowflake()

    {

    }

    public void SetInitialProperties()

    {

    xSpeed is.05 + Math.random () *.1;.

    ySpeed =.1 + Math.random () * 3;

    RADIUS =.1 + Math.random () * 2;

    Scale =.01 + Math.Random ();

    alphaValue =.1 + Math.Random ();

    var stageObject:Stage = this.stage in the stadium;

    maxWidth = stageObject.stageWidth;

    maxHeight = stageObject.stageHeight;

    This.x = Math.random () * maxWidth;

    This.y = Math.random () * maxHeight;

    PosX = this.x;

    yPos = this.y;

    this.scaleX = this.scaleY = scale;

    This.Alpha = alphaValue;

    this.addEventListener (Event.ENTER_FRAME, MoveSnowFlake);

    }

    function MoveSnowFlake(e:Event)

    {

    xPos += xSpeed;

    yPos += ySpeed;

    This.x += radius * Math.cos (xPos);

    This.y += ySpeed;

    If (this.y - this.height > maxHeight)

    {

    This.y = - 10 - this.height;

    This.x = Math.random () * maxWidth;

    }

    }

    function removeSnowF (): void {}

    for (var i: int = snowFlakeA.length - 1; i > = 0; i--) {}

    this.removeChild (snowFlakeA [i]);

    snowFlakeA.splice (i, 1);

    }

    }

    }

  • How to remove the objects that appear only in outline view?

    I've hidden objects in a file that only appear in schema view. It wont let me select them and is to make the file larger then it must be. Any ideas to get rid of these unwanted items? Thank you!

    You can check if there is a clipping mask in this layer. Open the layer by clicking on the triangle.

  • I would like to know how to remove the box/cursor information dialog box that appears whenever I have stop my mouse on an object.

    I would like to know how to remove the box/cursor information dialog box that appears whenever I have stop my mouse on an object.

    Have you tried to uncheck both options via Control Panel / folder Options / View?

    "Displays the size of file in folder tips".

    "Display descriptions pop - up for folder and desktop items"

  • How to remove the gray area above the top margin of 0?

    How to remove the gray area above the top margin of 0?  I try to keep my top margin to move the negative.

    Maybe I did not understand at first. try to do a select on your pages or master pages and make sure that you don't have an invisible element like a text box empty under the header.

  • How to remove the white space between two response reports

    How to remove the white space between two response reports

    In the section of dashboard, I have 2 rqeuest. Each query returns Table view. When I view the dashboard, it shows a blank separating 2 table views. How can I get rid of the band of white/white space?

    See this link

    Re: Remove the space between the two reports on the dashboard page OBIEE Section

    Kind regards
    Sandeep

  • How to remove the spaces of a template header

    I'm trying to work myself through the understanding of the html codes using a model dreamweaver and creating a page for my company. I used dreamweaver before CC, but I try to understand the new changes.

    I came across a problem with the fact that I'm hoping to get help.

    I tried to replace a logo placeholder on the template with my own logo. I seem to have a little space to white at the bottom of the logo when I see mode live view or a browser. How can I get rid of him. I've tried combinations of 0 margins and changing the filling, but it seems I'm just whistling in the dark. Here is the code:

    The CSS associated with this page is here:

    !-[CodeBlockStart:dec9d6ff-17ba-4058-9575-0b88476c1251]-->@charset "UTF-8"; body {make: 100% / 1.4 Verdana, Arial, Helvetica, without serif;}]   background-color: # 42413.   margin: 0;   padding: 0;   Color: #000; } / * ~ ~ Tag of the element selectors / ~ ~ * / ul, ol, dl {/ * because of variations between the browsers, it's best practices to zero padding and the margin on lists.} For consistency, you can specify the amounts you want to here, or on the list (LI, DT, DD) items they contain. Don't forget that what you're doing here cascade to the .nav list unless you write a more specific selector. * / padding: 0;   margin: 0; } h1, h2, h3, h4, h5, h6, p {margin-top: 0; / * deletion of the top margin works around a problem where margins can escape its container block.} The margin of the low rest it will take away from all of the following items. * / padding-right: 15px;   padding-left: 15px; / * adding padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any mathematical model of box. A block nested with side pads can also be used as an alternative method. {* /} an img {/ * this switch how to remove the default blue border displayed in some browsers around an image when it is surrounded by a link * / border: none ;} / * ~ ~ style for your site links must remain in this order - including the Group of selectors that create the hover effect.} ~ ~ * / a: link {color: # 42413;}   text-decoration: underline; {/ * unless that you style your links seem to be extremely unique, it is best to predict stresses quick visual identification * /} a: visited {color: #6E6C64;}   text-decoration: underline; } a: hover, a: active, a: focus {/ * this group of selectors will give a browser keyboard the same experience of hovering as the person who uses a mouse. * / text-decoration: none ;} / * ~ ~ this container fixed-width surrounds all the other blocks ~ ~ * / .container {width: 960px;}}   background-color: #FFFFFF;   margin: 0 auto; {/ * set to auto on the sides, coupled with the width available to the centres * /} / * ~ ~ the header is not given a width. It will extend to the entire width of your layout. ~ ~ * / header {background-color: #A36BE8 ;} / * ~ ~ these are the columns for layout.} (~ ~ 1) padding is only placed on the top and/or bottom block elements. The elements contained in these blocks have padding on their sides. This avoids any «mathematical model of box» Keep in mind, if you add lateral pads or border to the block itself, it will be added to the width that you set to create the * total width. You can also remove the padding of the element in the block element and place a second inner block with no width element and the necessary padding for your design. (2) no margin was given to the columns, because they all floated. If you need to add the margin, avoid placing on the side you're floating into (for example: a right margin on a block set to float to the right). Many times, padding can be used instead. For blocks where this rule needs to be broken, you need to add a statement of ' display: inline ' to the rule of the block element to tame a bug where some versions of Internet Explorer double the margin. (3) given that the classes can be used several times in a document (and an element can also have several classes applied), the columns have received the names of classes instead of IDs. For example, two blocks from the sidebar could be stacked if necessary. These can easily be changed to the ID if that's your preference, as long as you don't use them once per document. (4) If you prefer your nav on the left instead of the right, just float those columns the opposite direction (to the left instead of all rights), and they will return in reverse order. There is no need to move the blocks in the HTML source code. * / .sidebar1 {float: right;}   Width: 180px;   background-color: #C5C2B8;   padding-bottom: 10px; } content {padding: 10px 0;}   Width: 780px;   float: right; } / * ~ ~ This group selector gives the lists in the domain content space ~ ~ * / content ul, ol content {padding: 0 15px 15px 40px; / * this padding reflects the right padding in the titles and the paragraph above net.} Padding was placed on the bottom for the space between the other elements in the lists and on the left to create the withdrawal. These can be customized as you wish. {* /} / * ~ ~ The list of navigation styles (can be removed if you choose to use a contextual menu premade as Spry) ~ ~ * / nav ul {list-style: none; / * this command deletes the list marker * / border-top: 1px solid #666; / * this creates the top border for the links - all others are placed using a bottom border on the LI * / margin-bottom: 15px; / * it creates space between the following content browsing * /} nav li {border-bottom : 1px solid #666; {/ * Creates the separation of button * /} has nav, nav a: visited {/ * these selectors of grouping allows you to ensure that your links to retain their look button even after visiting * / padding: 5px 5px 5px 15px;}   display: block; / * Gives the link properties block causing it to fill the whole container LI. This causes the entire area responds to a mouse click. * / Width: 160px;  / * This width makes all the clickable button for IE6. If you do not need to support IE6, it can be removed. Calculate the width by subtracting the padding on this link of the width of your sidebar container. * / text-decoration: none;   background-color: #15EE00; } nav a: hover nav a: active, nav a: focus {/ * this changes the background and color of text for browsers of mouse and keyboard * / background-color: #ADB96E;}   color: #FFF; } / * ~ ~ Footer ~ ~ * / footer {padding: 10px 0;}   background-color: #CCC49F;   position: relative; / * This gives hasLayout IE6 to erase correctly * / clear: both; {/ * This clear property forces the .container to understand where the columns end up and contain them * /} / * HTML 5 support - sets new HTML 5 tags to display: block so browsers know how to render the tags correctly. * / section, footer, said by the way, article, header, figure {display: block ;}}

    Thank you very much for your help!

    Try this-

    What you are because space is the placeholder for the descenders of glyph on any item that is rendered in a text box (that is, an inline element). By making the image "display: block" you eliminate that space, because a block element is not top-down. If it works to your satisfaction then you can give the logo an id and creation of a CSS selector that contains this kind of block.

  • How to remove the download button located next to my home button? I continue to by clicking on it when I want the House and it's annoying.

    How to remove the download button located next to my home button?

    You can use customization feature to move it to a less irritating location. I suggest the bar the module if you keep this poster.

    Start customizing with one of these, and then drag the arrow to a new location, or in the dialog box to remove all the bars:

    • Right click on a zone empty of the tab bar > customize
    • Press the Alt key > menu view > toolbars > customize

    You will notice that some combined controls separate in the view to customize. If you put something between them, they will not be able to recombine. (For example, if you separate stop and reload or put something between front/rear and area URL.)

  • Satellite M35 Pro - how to remove the screen bezel?

    Hey everybody,

    Please help me, I was able to disassemble the computer laptop everything and now I have the screen and the top cover out as well. I don't know how to remove the display frame to remove the hinges.

    Can you please help me with this!

    Thanks in advance!

    Hello

    Well my friend, in my opinion you should not try to disassemble the laptop if you n t have the necessary experience and don t know to do this!
    You could damage other parts that you know

    You're stuck on the LCD mask?
    As far as I know the LCD mask is covered by two screws that are hidden under the joints.
    You will need to remove both seals of mask LCD, and then you could remove the two screws hidden under the seals mentioned.
    Then, you could put your fingers between the mask and the LCD screen in order to release the LCD mask plastic locks.

    But note; Be careful, don't use any force!

  • Portege M400 - how to remove the condensation of water?

    I received a second hand toshiba portege m400 mail and saw there probably a condensation of water trapped between the external display and touch screen behind her. because the screen in the upper left corner looks whitish. and the sender of the laptop said he wasn't there when he sent it. I have a picture of trapped moisture, for those who want to see it.

    so, I opened the screen by unscrewing. and I saw that most of the moisture is stuck between the external screen glas and one other layer behind him, which I guess, is the part of the touch screen. who looks inaccessible. These 2? the layers form the upperpart of the screen.

    the lcdscreen with all the electronics in this layer, form the lower part of the screen or if you want, cover. This part is now oke. He also had a condensation of water on it and I was able to gently wipe the little moisture of the lcdscreen without problem. This helped a bit with this problem.

    but moisture remains trapped between the part of the touchscreen layer and this layer of glass in the upperpart of the screen/cover.

    hoping to evaporate the moisture, I left the enlightened a bit more open for a day, I broke even the upperpart and the lowerpart of the screen. I applied a little of an infrared lamp, a remote backup heat. anything that did not help.

    * so, how can I remove the condensation of water? *

    * is there a way to remove a layer in the upperpart of the screen to reach the humidity? *

    Hello olekike

    Please don t get me wrong, but I'm afraid, you need professional with this Mr. help as I see that your question is not answered for days now, and I think that nobody here has a lot of experience with this stuff.
    View replacement OK but how to remove the condensation of water on the touchscreen is perhaps too heavy for us.

    I recommend strongly to contact the nearest Toshiba service provider and ask for help. talking with the guys what we can do about it.

  • How to remove the host geniric number?

    How to remove the host geniric number?

    Hi m KUMAR,.
     
    -You receive any host related error message generic?
    -Remember you proceed with recent computer between the calendar changes when things worked fine and now?
     
    Follow the steps in the article below and check if it helps to solve this problem:
    After return with more information pertaining to the matter for us help to help you better.
  • How to remove the windows vista backup

    I have 2 drives, C: (69.2 GB) all system files. D: (65.7 GB) a backup & my data. I want to install a new s/w of 12 GB in D:, but its low memory(10.5MB) showing. I tried to delete the backup, but his does not work. I tried diskcleanup, but still the same problem persists. I checked, there isn't any extra file to D:. It's just because of the backup. Can someone please tell me, how to remove the full backup.

    Hi kisna234567,

    ·         You get the error message?

    The main objective of the Windows backup and Restore Center is to save the data either automatically in according to the schedule or manually when you want to save data. It is not designed to replace the old data with the new data. Just backup and Restore Center totals with new data every time, and would not remove the old files.

    You can backup the old files and folders to storage device as the external hard drive, CD, DVD, USB flash drives and removes the backup files of the computer. You can format the backup partition.

    Caution:

    ·         Formatting a volume will destroy all data on the partition. Be sure to make backups of all the data to save before you begin.

    ·         You cannot format a disk or partition that is currently in use, including the partition that contains Windows.

    ·         Quick format is a formatting option that creates a new file table, but do not completely overwrite or erase the volume. A quick format is much faster than a normal format, which fully erases the existing data on the volume.

    Follow these steps:

    (a) open computer management by clicking the Start button, select Control Panel, click system and Maintenance, click Administrative Toolsand then double-click computer management. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    (b) in the Navigation pane, under storage, click disk management.

    (c) right click on the volume that you want to format, and then click format.

    (d) to format the volume with the default settings, in the format dialog box, click OK, and then click OK again.

    For reference: create and format a hard disk partition.

  • How to remove the author's name and/or date of blogsite summary

    Hello

    Can someone help me please find where and how to withdraw the name of the author of the summary blogsite?

    I don't want any author's name listed, just the title linked blog and the date of publication.

    Or, is it possible to have the related title, with 50 words of the displayed article, but no name of author or creation date?

    I thank very you much in advance!

    I figured out how to remove the CSS author (.blogsitesumary duration-date {display: none}, but any attempt to change via CSS does not work.)

    For example, I can't create more space between the title and the date, or list items.

    Also, I would still add the first words of the post.

Maybe you are looking for