Having problem controling resizing a swf in another swf file

I am trying to build a site where all pages are complete browser and maintain proportions. I want to control the resizing of the menu page to.  Resizing works fine on the page that is resized, but when I try to leave the swf file parent that it has problems.

Here's what the homepage looks like with the created controls http://www.mespinach/example1/

This example is the site, it has a menu page that I opened the others after I have remove the resizing of the code of the home page and try to resize menu.swf.

Here's the code for menu.swf

internship. Align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;

var holder: btnHolder = new btnHolder();
addChild (holder);
/*
stage.addEventListener (Event.RESIZE, moveHolder);
moveHolder();
function moveHolder(e:Event_=_null):void {}
Holder.x = stage.stageWidth - (holder.width + 25);
Holder.y = 50;
}
*/

holder.mcHome.buttonMode = true;
holder.mcAbout.buttonMode = true;
holder.mcMovies.buttonMode = true;
holder.mcLocation.buttonMode = true;
holder.mcStore.buttonMode = true;

var objFileToLoad: URLRequest = new URLRequest();
var swfLoader:Loader;
addListeners();

function addListeners (): void {}
holder.mcHome.addEventListener (MouseEvent.CLICK, homepage);
holder.mcAbout.addEventListener (MouseEvent.CLICK, aboutPage);
holder.mcMovies.addEventListener (MouseEvent.CLICK, moviesPage);
holder.mcLocation.addEventListener (MouseEvent.CLICK, locationPage);
holder.mcStore.addEventListener (MouseEvent.CLICK, storePage);
}
var currentPage: *;
var xImage:Sprite = new Sprite();

homePage();

function homePage(event:MouseEvent_=_null):void {}
SoundMixer.stopAll ();
addListeners();
If (swfLoader) {This.removeChildAt (0) ;}}
holder.mcHome.removeEventListener (MouseEvent.CLICK, homepage);
var loadRequest:URLRequest = new URLRequest ("home.swf");
swfLoader = new Loader();
swfLoader.contentLoaderInfo.addEventListener (Event.INIT, positionContent);
swfLoader.load (loadRequest);
this.addChildAt (swfLoader, 0);


function positionContent(e:Event):void {}
currentPage = swfLoader.content;
var loadedImage = currentPage.onStage;
xImage = loadedImage;
loadedImage.x = 0;
loadedImage.y = 0;
fillBG();
}
}

function aboutPage(event:MouseEvent):void {}
/*
SoundMixer.stopAll ();
var objFileToLoad: URLRequest = new URLRequest ("about.swf");
loader.contentLoaderInfo.addEventListener (Event.INIT, positionContent);
Loader.Load (objFileToLoad);
this.addChildAt (loader, 0);

function positionContent(e:Event):void {}
Loader.x = 0;
Loader.y = 0;

}
*/
}

function moviesPage(event:MouseEvent):void {}
addListeners();
holder.mcMovies.removeEventListener (MouseEvent.CLICK, moviesPage);
SoundMixer.stopAll ();
If (swfLoader) {This.removeChildAt (0) ;}}
var objFileToLoad: URLRequest = new URLRequest ("Movies.swf");
swfLoader.contentLoaderInfo.addEventListener (Event.INIT, loadedHandler);
swfLoader.load (objFileToLoad);

this.addChildAt (swfLoader, 0);
function loadedHandler(e:Event):void {}
currentPage = swfLoader.content;
xImage = currentPage;
}
}

function locationPage(event:MouseEvent):void {}
/*
SoundMixer.stopAll ();
var objFileToLoad: URLRequest = new URLRequest ("location.swf");
Loader.Load (objFileToLoad);
this.addChildAt (loader, 0);
*/
}

function storePage(event:MouseEvent):void {}
/*
SoundMixer.stopAll ();
var objFileToLoad: URLRequest = new URLRequest ("store.swf");
Loader.Load (objFileToLoad);
this.addChildAt (loader, 0);
*/
}
//////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
holder.addEventListener (MouseEvent.MOUSE_OVER, over);
holder.addEventListener (MouseEvent.MOUSE_OUT, out);
holder.addEventListener (MouseEvent.MOUSE_DOWN, down);
holder.addEventListener (MouseEvent.MOUSE_UP, up);
holder.mcAbout.buttonMode = true;
holder.mcHome.buttonMode = true;
holder.mcMovies.buttonMode = true;
holder.mcStore.buttonMode = true;
holder.mcLocation.buttonMode = true;

var myColor:ColorTransform = transform.colorTransform;


function over(e:MouseEvent):void {}
myColor.alphaMultiplier = 3;
e.target.transform.colorTransform = myColor;
}

function out(e:MouseEvent):void {}
myColor.alphaMultiplier = 1;
e.target.transform.colorTransform = myColor;
}

function down(e:MouseEvent):void {}
myColor.alphaMultiplier = 5;
e.target.transform.colorTransform = myColor;
}

function up(e:MouseEvent):void {}
myColor.alphaMultiplier = 1;
e.target.transform.colorTransform = myColor;
}
CPC var = this.child.child.getChildByName ("onStage");
trace (CPC);
report / var: number;
var rRatio:Number;

ratio = xImage.height/xImage.width;
rRatio = xImage.width/xImage.height;
var newRatio:Number;

function fillBG(evt:Event_=_null):void {}
trace ("width:" + xImage.width);
trace ("size:" + xImage.height);
trace ("ratio:" + ratio.toString ());
trace ("rRatio:" + rRatio.toString ());
trace ("newRatio:" + newRatio.toString ());

newRatio = stage.stageHeight/stage.stageWidth;
Holder.x = stage.stageWidth - (holder.width + 25);
Holder.y = 50;

If (newRatio > ratio) {}
trace ("newRatio > ratio :"); ")
xImage.height = stage.stageHeight;
xImage.width = stage.stageHeight * rRatio;
} else {}
trace ("Else");
xImage.width = stage.stageWidth;
xImage.height = stage.stageWidth * ratio;
}

stage.addEventListener (Event.RESIZE, fillBG);
}

messages of the plotting here instructions:

Width: 939
height: 704
ratio: NaN
rRatio: NaN
newRatio: NaN
on the other
Width: 561
height: 704
ratio: NaN
rRatio: NaN
newRatio: 0.49376114081996436
on the other

Height never changes

Retiro and rRatio are NaN values even if they are the Quotient of numbers.

First of all, it's too much code to pass so I don't think I'm going to give you a complete answer. I guess that's a script code.

Here is what I noticed:

1. you declare variables outside the scopes of functions:

report / var: number;
var rRatio:Number;

ratio = xImage.height/xImage.width;
rRatio = xImage.width/xImage.height;
var newRatio:Number;

Naturally, they are NaN values because neither xImage.height nor xImage.width are available at this stage.

I suspect that you expect that when code hits these lines - swf is already loaded but IT IS NOT. Flash runs THE CODE through, DO NOT WAIT to load SWF files-it's one of the premises of the asynchronous event model.

To remedy this, place value assignments in the event handler:

Version 1:

Declare the variable at the top of the code before you start loading:

var ratio:Number;
var rRatio:Number;
var newRatio:Number;

Calculate values in the event handler:

 function positionContent(e:Event):void {        ccurrentPage = swfLoader.content;        var loadedImage = currentPage.onStage;        xImage = loadedImage;
        ratio = xImage.height/xImage.width;        rRatio = xImage.width/xImage.height;        fillBG();}

Or do it inside the fillBG(); method (version 2)

2. nested functions are bad and I would suggest to reconsider their use and bring them out of reach of the other methods. I'm talking about managers positionContent that you are using.

       

Tags: Adobe Animate

Similar Questions

  • Problem with loading external swf files

    Hello

    I am currently working on a project which is an interactive and dynamic elemtry school presentation to the Denmark. I finished my project and it works perfectly, but only locally on my computer.

    The final draft should be implemented on the site and public work. I tried to implement the project on the site and unfortunately, it does not work as expected.

    When all the files where transferred to the ftp server, only a single files are responding and appear correctly.

    Interactivity of the project is based on a structure of Action script, which is based on the smooth transition between swf files (load another swf file after the action is triggered by clicking on a button) do any work.

    After days of trying to figure out the solution, I'm totally lost. One thing is to publish the project so that all action script will work and answer between swf files, and the other thing is to make it user-friendly for the Android and apple products.

    The presentation is quite heavy because of its loading external swf content files, which are images and movies.

    I really hope you can help me with my problem. I will gladly share the files and codes if it would help solve the problem.

    Best regards

    Agata

    It could be a problem of location of file from loading.  When you place a swf file in an HTML base for targeting anything that the SWF load becomes the folder of the html page.  You may need to adjust the target so that the target of swf files, load it as if it were in the same folder as the html page.

  • control the loaded swf file

    Hi all

    I am loading a swf into another SWF, I want to controll loaded swf such as play and pause the swf. The loaded swf file is an animation file, all animations are kept in a movieclip, then please tell me how I can control the animation.

    In your first assignment, you tell the animation is present in a movieclip.  If this movieclip is in the loaded swf file you will probably need to target this movieclip to tell him to play rather than the SWF itself, as in...

    currentSWF.movieclipName.play ();

    where movieclipName is replaced with the name of the instance of movieclip in the loaded swf file.

  • How to resize a swf file created in catalyst?

    Hello

    I created a magnificent site to the catalyst. My problem is: I don't know a code to change the size of the swf file created in catalyst.

    The swf file is now 800 x 600, but I want it automatically adapts the browser.

    I already have a swf in Flash Professional CS5, and then import it into Dreamweaver and change to 800 x 600 and 100% x 100%.

    Works fine, but when I do the same with my swf created in Catalyst, is not.


    Anyone know how I can fix this problem?

    Thank you
    Matiege

    Hi Matiege,

    What version of CF are you using? The latest version of CF, called 'Panini', supports the constraints, you can run the project, resize the browser and all objects that use constraints will be aligned correctly. Layout object constraints are specified with the so-called "vacuum" when the object is selected. There are also a few options if you right-click on the suction cup. The "Panini" is available for download on http://labs.adobe.com/technologies/flashcatalyst_panini/.

    The old version of the CF supports only the absolute coordinates.

    He answered your question?

    Thank you

    -Mykola
    CF QE

  • Help please! Problems with loading external swf files

    I'm scared, I'm new to both Adobe Flash and Actionscript 3.0.

    I'm trying to create a simple site using a couple of different external sovereigns loaded into a main swf file.

    For the moment, in the timeline panel, I have the following code in frame 1 of the layer actions:

    import flash.events.MouseEvent;

    Stop();

    navbutt.addEventListener (MouseEvent.CLICK, shownavbg);
    function shownavbg (myEvent:MouseEvent): void {}
    gotoAndPlay (10);
    }
    home_btn.addEventListener (MouseEvent.CLICK, showhome);
    function showhome (myEvent:MouseEvent): void {}
    gotoAndPlay (66);
    }
    aboutme_btn.addEventListener (MouseEvent.CLICK, showaboutme);
    function showaboutme (myEvent:MouseEvent): void {}
    gotoAndPlay (49);
    }
    gallery_btn.addEventListener (MouseEvent.CLICK, showgallery);
    function showgallery (myEvent:MouseEvent): void {}
    gotoAndPlay (76);
    }

    var bgLoader:Loader = new Loader();
    stage.addChild (bgLoader);
    ("var url: URLRequest = new URLRequest("Background/sitebackground/Main.swf ");
    bgLoader.load (url);
    stage.setChildIndex (bgLoader, 0);

    Then, in the framework of 76, I have the following code:

    removeChildAt (0);
    bgLoader.unload ();

    In section 77:

    var galleryLoader:Loader = new Loader();
    stage.addChild (galleryLoader);
    var galleryurl:URLRequest = new URLRequest("test/ZenGalleryDemo.swf");
    galleryLoader.load (url);
    stage.setChildIndex (galleryLoader, 0);

    Stop();

    The idea is that, when the file is loaded, the 'sitebackground/Main.swf"flash loads on the stage. Then I want to delete this flash and load a different one when I click on the gallery_btn. So, when I click on the gallery_btn, he plays frame 76, theoretically unloading the Main.swf and the loading of the ZenGalleryDemo.swf in its place.

    For the moment, the Main.swf loads perfectly and works great. But when I click on the button to the Gallery, he jumps to the frame 76 and plays the Main.swf. It does not load the file ZenGalleryDemo.swf...

    If anyone has any ideas, I would be really grateful!

    Thanks in advance

    It's just a glance and reading, but the problem may lie between these two lines... look closely...

    var galleryurl:URLRequest = new URLRequest("test/ZenGalleryDemo.swf");
    galleryLoader.load (url);

  • Resize the .swf file

    I finished my flash site using a resolution of 1024 x 768: my teacher was not so happy if "high" resolution (even if today is something as standard) as someone could still an old monitor with lower resolution.

    Since I really don't want to get a bad vote I wanted to change the resolution at 1000 x 550 because with this resolution a monitor 1024 x 768 can still see everything: and then I exported my .swf file, then in the. HTML file, I changed the width and height fields.

    What is a "functioning"? There could be any problem?

    All tips are welcome!

    Since the two sets of dimensions are not the same report, you will probably have Visual problems, with things looking crushed, possibly making a less legible text.  You might also have a problem if your teacher does not buy into this approach to a solution.

  • Problem loading an external swf file implemented with AS3

    I use Adobe Flash CS3

    At first, I tried

    swf_mc.loadMovie ("location of the //swf file");

    He gave me
    Quote:
    WARNING: 1060: Migration issue: the loadMovie method is no longer supported.
    USE: var l = new Loader(); addChild (l); l.Load (new URLRequest ("your url"));.
  • resizing the .swf files

    Hello

    I published recently two separate projects of Captivate. You can see the work below:

    http://extmedia.Kaplan.edu/legal/global/images/Legal_Studies1/Legal_Studies1.swf

    http://extmedia.Kaplan.edu/legal/global/images/LSplaybook3/LSplaybook3.swf

    My problem is that one of the files will resize itself when you drag the browser window, but not the other file.

    Is there a publication setting some part that I missed?

    Any help is greatly appreciated!

    Thank you

    Tom

    One who will not be re-scale by chance contains a widget?

  • The problem "your current security settings do not allow this action" when I want to open the swf file in Windows Media Player.

    How to solve the problem when I want to open the swf file in windows media player? There, half year, when I click on a swf file, it could automatically play in Windows Media Player.

    Now when I want to open a SWF with Windows Media Player, it pops up a window "your current security settings do not allow this action".

    How to use watch the video in Windows Media Player swf?

    Hello

    SWF is a file format for multimedia, vector graphics and Action Script in the Adobe Flash environment. Origin with future Wave Software, then transferred to Macromedia and then coming under the control of Adobe, SWF files can contain animations or applets of varying degrees of interactivity and function.

    SWF functions as the dominant vector "animation" on the Web for graphics display format. It can also be used for programs, games by browser commonly, using ActionScript.

    Method 1:

    I suggest open he file in Internet Explorer and check to see if you encounter the same problem.

    Method 2:

    Step 1:

    You can also try reinstalling Flash Player on the system to fix the problem.

    To uninstall a program in Windows 7 refer to the link below

    http://Windows.Microsoft.com/en-in/Windows7/uninstall-or-change-a-program

    Step 2:

    Once you uninstall Flash Player reinstall rear and check to see if you encounter the same issue.
    To download the latest version of Flash player refer to the link below

    http://get.Adobe.com/flashplayer/

    Once you download Flash Player see the link below to install a program downloaded in Windows 7.

    http://Windows.Microsoft.com/en-us/Windows7/install-a-program

  • Control external SWF file?

    Is it possible to control an external SWF file with buttons on the main clip?

    I have an external SWF loading in the scene, but I wanted to order 'play', 'stop' and 'goto' with buttons outside of the SWF.

    BUD Hey!

    This can not solve your problem, but I thought I'd give it a try. [Excuse me if you knew:]

    I load content in my projects using the attached code. He downloads the content from the link provided, attaches to the "external" variable and place it in the clip 'LoadMov '.

    After that, I can handle the content by referring to the "external" variable

    for example:
    LoadMov.external.gotoAndStop (10)

    Tell me if it helps!
    John

  • Shorten the length of the blade according to the State of an inserted SWF file

    My question may be advanced.  I am using Captivate 4 for this project.

    I am trying to create a manual online that describes a technical system.

    I created multiple SWF files for the various components and inserted them into a master project of Captivate.  I use the table of contents in the main project to provide navigation components.

    My problem is that the SWF file to show the various components have a visible bar of 'control'.  Since it is an event (without audio) we slowed down (some say too slow) for slow readers.  But given the control bar allows readers 'faster' the ability to speed upward and etc.

    My question, so if a user it accelerates and reaches the end of the file SWF slide continues until the 'period' is over.  For example, I have an embedded SWF which is 66 seconds long, the blade must be 66 seconds long to allow it to play fully.  I tried to adjust various settings and the settings of the imported video, but no matter what the video should be 66 seconds before I can do anything with the slide that hosts it.

    Any ideas?  I do not control the imported SWF file (which is actually a published Captivate project) and I do not master the file SWF Captivate "accommodation".

    Main reason for which is "broken apart", is can I outsource the various resources so I individual file charges "on-demand" and does not have a massive SWF file.

    Before asking, I thought using the Aggregater, but it does not work in Internet Explorer (HTM file) and will not cross the Preloader and my audience does not flash drives as I do.

    Hi Ziqiel, hope I will find the solution.

    I use the same technique as you Captivate 3. I insert the SWF on a main project. So, I insert a clickable area with options to "Stop the project until user click ' and 'no action '. You place this box anywhere on your slide where the swf file. It shut down the main project, but your swf will continue to play until the user clicks a button to continue.

    It is clear to you? And is it useful?

  • Manipulate swf files that contain multiple images

    Hello

    I'm trying to manipulate a swf file containing multiple images inside, but I can't image of it.

    The detail of what I mean is:

    I imported a swf file to a cast member. Then, I created a sprite on stage with the contents of this member. Finally, as I need to zoom, I made a copy of the Member image using the command "copyPixels" and the content is displayed without problems on stage. So far so good.

    The problem appears when the swf file contains several images. If I move for them (using for example getToFrame (sprite (num), 2) to go to the second), on stage, it shows the corresponding image without problems. But if I do a "copyPixels" using the reference to the Member when the SWF has been on scene is always displays the first image.

    I tried to make a copy of the scene when the sprite shows one frame other than the first, but this option didn't allowed me to get the picture, which indicates that the property is not available.

    Any idea of solution?

    Thank you.

    I used the command that you offer me

    and solved my problem.

    Thank you very much.

  • Class to load an external .swf file

    Hello

    My flash application has many resources that will change all the time. In order to keep the user having to download my main .swf file over and over again and in order to maintain the size of the low main file, I want to put the resources into separate .swf files and load them dynamically from a url using a charger.

    Once downloaded, I would like to extract the classes that are in the file resources swf and use them in the main swf file. Can anyone share a code to do this? Note that I'm not only interested in using a symbol of the swf resource. I would use a class, with all its methods and everything, and my main swf does not contain the class definition. Does only the swf resource.

    Thank you!!

    It is a big question for flash programming.

    And when we know the answer to that, you are likely to use it on a daily basis as the programmers of high level of an agency.

    ApplicationDomain is your answer and the adobe documentation has a chapter on it.

    ApplicationDomain is where all of your classes will be loaded in and when you use a charger, you can target it with the laoderContext.

    AplicationDomain.currentDomain loads all classes in the main application and if your main application already has these classes, then the application uses the classes of parents

    New Application.Domain () specifies a separate repo of the classes that are loaded so that the classes in the main application will be confused by the classes in a loaded swf file. pertaining to the same names.

    This lock down communication between SWFs but uses the most recent child update classes when a child is loaded with the same class as the parents name.

    ApplicationDomain (currentDomain) new surround a new repo with the repo of parent of the class definitions.

  • SWF file contains Ref. local dir structure

    Newbie here; I'm sorry.

    Flash CS4 Professional, version 10

    Creates a simple video flash to get wet feet. In the process, I'm drowned.

    I created the video with Flash (ActionScript 3.0) by inserting a player object and specifying an f4v source that I created using the Media Encoder CS4 to convert a wmv file. nothing to it.

    Publish an extract worked fine. Publication/Publication settings created the necessary files, as described in tutorial Flash 411:
    http://TV.Adobe.com/?TrackingID=EBYHH & SSP = fl_10.0.0_win_en_full__PF_20040226 #VI + f1527v1000.

    Video works fine on my local PC (XP, SP2). But when I load it on my server, it does not work. In IE 7, loading the page. the source code is there, but the window is empty: http://www.bbhq.us/pva1.html

    Adding to the .htaccess file mime type does not solve the problem. Change the permissions for the files was not, either.

    It is apparently not a server problem. A simple swf file created by Mr. Gates and HTM simple coding works: http://www.bbhq.us/flash3.htm

    Mr. Gates, that knows that I don't have?

    Well, where to start?

    However, when I loaded my file- http://www.bbhq.us/pva1.html - in FireFox 2.0, I got a blank window, but also the revealing error message:

    SecurityError: Error #2148: SWF file http://www.bbhq.us/pva1.swf cannot access
    local resource F:\pva1\pva0117a.f4v. Only local - with file system and
    reliable local SWF files can access local resources.
    at flash.net::NetStream/play()
    to fl.video::VideoPlayer / http://www.adobe.com/2007/flash/flvplayback/internal::_play()
    to fl.video::VideoPlayer / http://www.adobe.com/2007/flash/flvplayback/internal::_setUpStream()
    to fl.video::VideoPlayer / http://www.adobe.com/2007/flash/flvplayback/internal::_load()
    at fl.video::VideoPlayer/load()
    at fl.video::FLVPlayback/doContentPathConnect()

    Which tells me that the swf file has my original directory location and name (s)--f:\pva1\...--incorpore in there. No wonder!

    However, I don't see where in Flash I Specifies a directory structure for my video, other than, of course, when I specified the original video to add to the Player component. But somehow, the swf file again the structure of directory under the file names. This boat is not floating.

    Help Adobe don't throw me a life jacket; He threw me a lead weight, instead.

    Must be parameters to publish somewhere, or miss me something obvious that I can't see.

    Goin ' down here for the 3d time. A little help here, please.

    Thank you.

    Thanks for your quick response. But he left me still treading water.

    Yes; got to the Inspector of content; The settings that I see are:
    align
    AutoPlay
    cuePoints
    islove
    Overview
    ScaleMode (ScaleMode)
    skin
    skinAutoHide
    skinBackgroundAlpha
    skinbackgrundcolor
    source
    volume

    There is no property/setting contentpath.

    This is help page refers the contentpath that you referenced:

    http://help.Adobe.com/en_US/Flash/10.0_UsingFlash/WS0ED77F00-2006-49aa-8399-92B6D5D8CE00.h tml #WS9A834D6F-8206-4e07-B840-456EF90C03CB

    He described the contentpath as you suggested:

    "contentPath (AS2 files) string that specifies the URL of a FLV.

    The reference to AS2 in parens jurisdiction suggests that this setting applies only to the AS2 files. Or, perhaps, this setting is not applicable in CS4, version 10. I donno, but I of course do not see it in my version of Flash.

    However, you and the help page throw me a lifeline. The f4v file already loaded on my server, I changed my project, specifying, as the source parameter, the name of my file fv4 when it is loaded on the server - http:www.myserver...fv4--pas file on my local PC. When published Flash project, he uses the name, without reference to my local directory...

    Of course, the f4v file must exist on the server for him to publish correctly.

    Who did.

    It makes sense, but it is certainly not obvious and it is not explained in any documentation I found.

    Am I the only one to whom it was not obvious?

    Thank you; you led me to a solution.

    JJT

  • Using Firefox 7.0.1; having problems with hotmail. Cannot click on controls at the top of MSG, which is New, reply, delete, etc.. Can click on the same commands @ the bottom of the problem w/no MSG. Also cannot click on Inbox folder once I have access to

    Using Firefox 7.0.1; having problems with hotmail. Cannot click on controls at the top of MSG, which is New, reply, delete, etc.. Can click on the same commands @ the bottom of the problem w/no MSG. Also cannot click on Inbox folder once I have access to another folder. All known solutions?

    This problem may be caused by the Yahoo! toolbar as scopes as well down and covers the top of the browser window, allowing links in this part of the screen not clickable.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

Maybe you are looking for

  • How can I disable Windows 10 Groove and making iTunes my leading actor

    I just got a new Windows 10 PC.  I transferred all my music, but I apparently screwed up somehow.  How can I stop MS Groove to be main music player and go with iTunes?

  • I have most of my emails containing the tag. I need to sort those not marked.

    Are all of my emails in the Inbox and I tag them color. I need to find anyone who is not marked. Is there a way to sort them to show no marked ones all together?

  • ISPEED PROBLEMS

    HELLO MY NAME IS BERNARD AND MY COMPUTER IS SUPER SLOW NOW. I'M PROMPT TO REINSTALL EXTENDER PLAYER. WHAT CAN I DO ABOUT THESE PROBLEMS?

  • Two questions about Lifecam Studio webcam

    I intend to use the Lifecam Studio webcam as a security camera (I'm already aware of general limitations of webcams for this application) but I have these questions: (1) is its ability to see in the dark, better than the Lifecam cinema or are they us

  • 802. 1 X port management via SNMP

    Hello Could someone tell me how to disable 802. 1 X for the specific port via snmp command? That is to say, I can do it in the cli "not auto port of authentication control." But I need to do it in the form of "script" more. as we can disable/enable t