Embedding .swf font Success?

Has anybody had any success whatsover using style
declarations in order to embed fonts into a Flex application? I've
found a few posts (on this forum, even) but no consensus THAT IT
HAS EVER WORKED.
If people have had success, can you please share your
process? I have experience with sIFR 1/2/3, using Flash fonts, etc.
Here is my style declarations.
@font-face {
src:url("interstate.swf");
fontFamily: "Interstate";
@font-face {
src:url("interstate.swf");
fontFamily: "Interstate";
fontWeight: bold;
}

Works for me. Well, sort of. Fonts renders fine on screen and
prints ok(ish) from Windows, but printing from Mac is completely
unreadable.
I created the swf creation for the fonts I need using the
"procedure" on page 651 of the dev guide. The make sure you
embedded them as a style somewhere higher up in your UI tree so the
styles cascade down and then it just works.
Example:
In parent.mxml:
<mx:Style>
@font-face {
src: url("/font/Fonts.swf");
fontFamily: "Font Name";
.printFont5 {
fontFamily:"Font Name";
fontSize:5;
</mx:Style>
In a UI component that is a child or parent.mxml
<mx:Label ... styleName="printFont5"/>
All works well.
As I said, the only problem that I have is that it won't
print on Mac (looks fine on screen and looks good and prints from
Windows).
Robert.

Similar Messages

  • Using a font embedded swf in mxml

    Hello,
    We need to load in fonts at runtime due to localization needs. I've got this working in an AS3 project in Flex by embedding the font in a class and then loading that swf into another class and registering the font.
    What I need now is to be able to use that font class in MXML components like a spark label. I can't seem to get it to work though. I've tried referencing the swf in a style sheet, then making a style class in the CSS using that font like this:
    /* Embed.css */
    @font-face {
         src: url("_Arial.swf");
         fontFamily: "_Arial";
    .genericTextArial
    font-family: "_Arial";
    fontSize: 40;
    color: #000000;
    Then in the MXML I have this:
    <?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="955" minHeight="600">
         <fx:Style source="Embed.css"/>
         <s:Label text="This should display my embedded text." width="100%" styleName="genericTextArial"/>
    </s:Application>
    However I can't seem to get it to render. I've also tried the method of embedding the font in a text field in Flash Professional and loading in that swf and it doesn't work either. Am I missing a parameter or just going about this the wrong way?

    Thank you, that worked! I actually didn't know exactly how to do that at first but I found this great blog post that explains it:
    http://www.softwarebyrichard.com/content/embedding-fonts-flex-4

  • Embedding SWF in a text field

    Hi, New user to Flash here with a problem embedding .SWF
    files. I have already existing SWF files that I have called
    historically from HTML using <object> to embed the object and
    <param name= value=> also to pass it information. The SWF
    movie I need to embed basically builds a graph and takes its data
    from the location you supply it in <param name= value=>
    field. This code is not mine and I can't alter it.
    What I want to do is construct a flash version of my site and
    embed these graphs within a flash textfield. I have been able to
    successfully embed a test SWF file using <img> tags on a text
    field ---> but here is my question. How do I support the
    <param name= value=> functionality I got when I called these
    graphs from HTML using <object>?
    I hope that's clear? Any help at all is greatly appreciated.
    Tom

    Tom,
    > What I want to do is construct a flash version of my
    site
    > and embed these graphs within a flash textfield.
    That's a really interesting approach. At first, I didn't
    understand
    what you were aiming for, but it sounds to me like you're
    tying to use HTML
    inside a Flash text field -- which is doable, to some extent
    -- and embed an
    external SWF in that HTML ... all within Flash.
    > I have been able to successfully embed a test SWF file
    > using <img> tags on a text field --->
    That does work, but it's about the closest you'll get, I'm
    afraid. It's
    only happenstance that Flash's very narrow (and somewhat
    unique) version of
    HTML accepts SWFs in an <img> tag.
    > but here is my question. How do I support the <param
    name=
    > value=> functionality I got when I called these
    graphs from
    > HTML using <object>?
    Flash only supports a very limited subset of the HTML
    language. You can
    see the full list of supported tags by searching the phrase
    "supported tags"
    in the documentation (specifically, the Learning ActionScript
    2.0 in Flash
    book). For better or worse, <object>, <param>,
    and <embed> are simply not
    in that list.
    > Any help at all is greatly appreciated.
    Your only choice is to use one of the more traditional
    methods of
    loading external SWFs, such as loadMovie(),
    MovieClip.loadMovie(), or the
    MovieClipLoader class. Once your external SWF is loaded, you
    may "feed" it
    variables that should be detectable by the ActionScript
    inside the loaded
    SWF.
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Passing parameters to an embedded swf

    Hi all,
    I'm trying to embed a SWF animation that contains parameters (flashvars). I successfully used this animation in HTML and passed values to these parameters and now I want to embed it in a Flex project.
    I managed to load and show the animation in several ways but I can't find how to pass it values for the parameters.
    Anyone knows how to do this?
    Thanks!

    I don’t know of any way to do that without modifying the SWF to accept some handshake from the loading application.  An embedded SWF is being loaded via loadBytes and there is no parameter/flashvar passing mechanism.

  • How to make a Loadvars sendAndLoad request from embedded swf in flex

    I've developed a simple flex app with embedded swf. Basically swf use Loadvars to get data from particular database table. Ok, when I tested the flex app on localhost it is works fine and embedded swf make its sendAndLoad calls correctly.
    But! When it is located on the web server swf not work correctly. I meant there is not returned values by sendAndLoad method.
    Well, to make some points: questionContentLoadVars.img1 holds(return) the string from php call. This "img1" is an empty returned string only in Flex app placed in the web server otherwise it returns correct value from php call?
    When gameplay22.swf is standallone works!
    When gameplay22.swf is in HTML page works!
    When gameplay22.swf is embedded in FLex and executed in LOCALHOST works!
    But in the web server this embedded gameplay22.swf doesn`t works!
    What is the problem with it?
    //* here is flash(swf) part of gameplay22.swf file which is embedded in the Flex by SWFLOader(gameplay22.swf)
        questionContentLoadVars = new LoadVars();
        questionContentLoadVars.onLoad = function(success){
        if (success){
        slidingSvityk_mc.descripTA_mc.description_ta.text = questionContentLoadVars.theContent;
        else 
        slidingSvityk_mc.description_ta.text = "err!";
        function loadQuestionData(sectionID){
        var tablename ='questionsgeo';  // database tablename
        //sending variables to the PHP script
        questionContentLoadVars.row = sectionID;
        questionContentLoadVars.tablename = tablename;
        questionContentLoadVars.id_ = "";
        questionContentLoadVars.img1 = "";
        questionContentLoadVars.sendAndLoad("getQuestionRec.php",questionContentLoadVars,"_POST") ;
        function showLoadedGalleryImages():Void{
        infphp.text = questionContentLoadVars.img1;
        var img1Bulk:MovieClip = new MovieClip();
        img1Bulk = imgGalleryContainer_mc.img1Bulck_mc.createEmptyMovieClip(img1Bulk, _root.getNextHighestDepth());
        img1Bulk._x = 0;
        img1Bulk._y = 0;
        image_mcl.loadClip(questionContentLoadVars.img1, img1Bulk);
        //* And here is Flex part of embedded SWFLOader(gameplay22.swf) component
        <s:SWFLoader includeIn="user" width="1024" height="768" horizontalCenter="0" source="gameplay22.swf" verticalCenter="0"/>

    Thanks kglag, for trying to help,
    As i posted in another forum the problem was in the free flex example which i used to add another state and by using SWFLoader to  embed my swf file.
    Now i was created my own flex app and add SWFLoader to embed my swf and voila - it works!
    There is no cross-domain loads  the loaded content is in the same domain.
    So, again thanks!

  • Crash to desktop when loading embedded swf

    I have a swf that loads two other embedded swfs. The need for an air native extension came up so I've wrapped this swf inside of an AIR app. I install my app as a native installer. (on Windows 7)
    My app has a main menu screen and two buttons that will load two separate swfs to do their own menus and actions.
    Everything has worked great, until I tried to install the AIR app on a computer without internet. I ran the air redistributable, then installed my app. The main menu runs fine, and the main swf can load one of the embedded swfs, but when it tries to load the second embedded swf it crashes to desktop. No warnings, no errors, I just see desktop after clicking a button.
    Here is how I'm loading the offending swf:
    Inside MM_DocumentClass.as
    [Embed(source="../../ContentViewer/bin/ContentViewer.swf")]
            public var CViewSwfClass:Class;
            public var CViewMC:MovieClip;
    Inside MMState_MainMenu.as
         //Load the CView.swf, and add the listener for when it's done loading.
            public function CView_BtnClick(e:Event)
                Globals.stage.removeEventListener(KeyboardEvent.KEY_DOWN, Globals.keyPressHandler);
                menuMC.removeEventListener("Animation_Complete", CView_BtnClick);
                trace(this + "******************************************************");
                trace(this + "Loading ContentView.swf");
                mStateManager.Container.CViewMC = new mStateManager.Container.CViewSwfClass();
                mStateManager.Container.CViewMC.addEventListener(Event.COMPLETE, onCviewLoad);
                mStateManager.ChangeState(new MMState_Empty());
            //Called when CView.swf is done loading
            private function onCviewLoad(e:Event)
                trace(this + "Cview Loaded");
                mStateManager.Container.addChild(mStateManager.Container.CViewMC);
    I load the other swf in the exact same way.
    This problem can be fixed by connecting the computer to internet and trying to run the same actions. The program will pause for a second, during this time I see a visible loading icon in the middle of the screen, then it successfully loads the swf and everything works fine.
    My problem is that I can't guarantee our clients will have internet at all, so I need a solution to install AIR without internet and include whatever it is that my app needs to run.
    Any ideas? 'Cause this one's had me stumped for quite awhile.

    Does this happen whith every subVI or just on particular one? Also, what version of LV and OS?
    Lynn

  • Loading external swf fonts created with fontswf, loaded with a Loader, compatible with iOS

    Let me immediately start out by saying that I do in fact have a current working solution for using embedded fonts, generated by fontswf and working in an AIR ActionScript mobile application, and also currently working fine with iOS.
    My current app needs CFF fonts, so I currently use the fontswf tool to pre-generate the .swfs using:
    fontswf -4 -a [SomeAlias] -o [SomeFont.swf] [SomeFont.ttf]
    and then I am currently embedding them in my app source code .as for compilation using:
    [Embed(source="/swf/SomeFont.swf", symbol="SomeAlias")]
    public static var SomeFontClass:Class;
    I then have no problem registering them using Font.registerFont(SomeFontClass) and everything works fine.
    However, I would prefer to take the use of these swf fonts one step further and load them dynamically using a Loader so that I do not have to take the hit of having multiple CFF font swfs embedded in the main compiled SWF and so that I could even load an unknown future set of fonts without having to supply them as part of the app build.
    Now I have seen and read many blogs and tutorials where people have exported font swf from Flash Builder where you add an explicit 'Class' name or even made standalone .as static files compiled into standalone swfs only including the two lines:
    [Embed(source="/swf/SomeFont.swf", symbol="SomeAlias")]
    public static var SomeFontClass:Class;
    so that you also have a 'Class' involved. Then people use some form of appropriate applicationDomain.getDefinition("className") as Class
    to pull out the class for the font registration.
    My question is, how does one perform the same font loading and registration of fonts using a Loader only loading the .swfs produced directly from fontswf?
    It seems only a DefineFont4 is tagged in the swf, there doesn't seem to be a 'Class' per se to call on.
    More importantly, iOS apps cannot load external swfs with code in them, so my understanding is any extra wrapped swf that would contain a custom Class technique would fail the iOS requirement of only having one main SWF with any ActionScript compiled code.
    Is there an alternative to the 'Class' technique by grabbing the DefineFont4 tagged resource from the swf and instantiating a proper working Font class from that? One that would still be compatible with the restrictions placed on AIR mobile apps running on iOS?

    Ironically, just after posting this, Adobe released AIR 3.5 beta onto labs, and added multiple SWF support for iOS.
    While this new support makes it easier to manage your content across multiple SWFs and technically allows you to use the class based separate .swfs for each font if desired, the system still requires that all these SWFs be present at compile time when making the final app .ipa for iOS.
    So this still doesn't solve trying to load fonts after the app is already built. For example, as part of a downloaded in-app purchase mechanism.

  • Why do audio tracks for embedded .swfs for Slide 14, 25 and 36 audio tracks auto play on Slide 1?

    I have created a Captivate course with no audio. 
    Slide 14 in the course has an inserted .swf animation WITH audio (a demo with ‘Kate’s voice’).
    Slide 25 in the course has an inserted .swf animation WITH audio.
    Slide 36 in the course has an inserted .swf animation WITH audio.
    These animations are ‘hidden’ in the slide 14, 25, 36 Properties, and are told to ‘show’ when user clicks a button on the slide.
    When published to my hard drive, the course runs as it should, and the animations play correctly when user clicks the play button on slides 14, 25 and 36.
    When published course is uploaded to a file server, the course runs as it should, and the animations play correctly when user clicks the play button on slides 14, 25 and 36.
    When published course is uploaded to a web server, all 3 .swf animations show up for a split second, (plus 2 other small animated images) one after another, and then disappear, and then the audio of the 1st starts playing, 5 seconds later the audio of the 2nd starts playing, and 5 seconds later the audio of the 3rd starts playing.
    The odd thing about this is that once the course is in the Internet Brower cache and the course is refreshed, the audio of the 3 embedded .swfs does not start playing on slide one, and the course works as it should.
    Can you please tell me what to do to make the 3 .SWFs NOT execute when slide one of the course is opened? 

    Did you ever get an answer to this question? Since you have partial success, perhaps you can share some info. My main .swf is loaded on a web server and links to other URLs works well but links to other .swf that are loaded in the same directory as the main .swf do not activate at all..no sound, no visual. Did you load your sub-swf files in the same directory? did you use a special naming scheme? did you load the .html file for the sub-swf?

  • Embedded swf fiile in exported .exe movie not working

    I have exported a movie as a stand alone .exe file. The movie
    has a flash file embedded in it. When it plays on my own computer
    it works fine, but when it plays on another computer, it will show
    a solid red box for a couple seconds in a couple of different
    spots...all within the embedded swf file. Can anyone give me an
    idea why this might be occurring? I am thinking it has something to
    do with an SWF embedded in an EXE file, but really don't have a
    clue!

    I'm glad to see I'm not the only one. Only I have large
    portions of a very large EXE file delivered in red pages. It is
    irregular, too; before I left work yesterday, the entire file
    played fine. Reloading and rerunning it this morning, on the same
    machine, shows the red pages again. I'm experimenting to see if
    it's a loading/buffering problem by letting it cycle through a
    couple times, to see if that improves it. If it doesn't however, we
    have had better success splitting the file in two. But that
    presents it's own problems to link them to run as a single loop.
    I'll be very interested in knowing the solution to this, too.
    Oooo! I just found a useful reply to the same issue from a
    Captivate Consultant. Search under General forums, keyword 'red',
    and look for the title 'Screen goes red'. Here's what the solution
    reads:
    Check:
    1) Display time for the animation may need to be adjusted a
    tiny amount, or
    2) Frame rate for the animation may need to be changed if it
    conflicts with the movie frame rate.
    It only seems to happen on slides that contain animations
    because it is the animation that is causing the problem, so
    "tweaking" its settings can usually solve the problem.
    Hope this helps.

  • Firefox doesn't play embedded swf

    I've looked on many forums, including Firefox, with no real answer. Running Firefox 4. It just doesn't play embedded SWF. My Adobe Flashplayer is up to date, so is the plugin. The page displays properly. But the area that should be displaying a movie is just represented by a tiny square. No error message appears. The same page doesn't show the movie in IE9 either.
    Now from looking at the page information, it just requires Flashplayer 6 and above for the SWF area. I do have Flashplayer 10. The plugin says Shockwave Flash player 10 is up to date. Many other pages with different types of embedded movies play properly.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Also check that you aren't blocking cookies.
    *https://support.mozilla.org/kb/Cookies
    *http://kb.mozillazine.org/Cookies
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Note that a reset imports cookies, so isn't really suited if cookie issues are a possible cause, unless you clear the cookies.

  • Why does embedding Adobe fonts in EPUB cause all text to display as oblique?

    I have been having this problem for a while now to various degrees, and I stopped using InDesign to build and export EPUB files for a long time because of it. Lately I have decided to try reintroducing InDesign into my EPUB workflow. However, I have found that whenever I try to export an EPUB 2 file from InDesign CC 2014.1 while embedding Adobe fonts, all the text in the EPUB displays as oblique when I open the resulting file in Sigil or Calibre. Removing and then re-adding the fonts with no obfuscation does not correct the issue. Not embedding the fonts during export -- or removing them from the EPUB entirely -- eliminates the display problem, but obviously I can't expect people to have these fonts installed on their computers.
    I do believe most Adobe font licenses allow for embedding, so I don't think this is a security issue. For the sake of this discussion the issue I am having is with Arno Pro OTF (Regular, Italic, Bold).
    I can't find anything about this on the web. Can anyone help me with this issue, or has anyone else experienced this at least?
    Thanks!
    Allen

    Here's another piece of information to add to the puzzle. The first screenshot is from Calibre on an PC with Windows 8.1 (using Google Chrome as default search engine). The second is from Calibre on a Mac with Yosemite 10.10.1 (using Safari 8.0.2 as default search engine). Both with the same ePub file created on CC2014 on the Mac using Arno Pro for the Latin text, Adobe Song for Chinese, and Deja Vu Sans for the Hexagram

  • Video playback in embedded swf

    Hi,
    I'm building a website in flash catalyst that uses an embedded swf also created in catalyst.  The site is for a musician, and one of the pages (states) loads a swf file that contains a list of videos the user can select and play.  That swf was also made in catalyst.  This works. 
    When I navigate away from the video page to the Bio page (for instance), the video stops playing, which is good.  The problem though, is when I return to the video page, the video resumes right where it was when I left the page.  This is a bit jarring... I'd really like the video to stop playing for real when the user navigates away, so that when he/she returns to the page, its in the default state... With nothing playing.
    Can anyone help?  I'm stuck here.
    Thanks!
    Craig

    you need to make your own controls and you need to learn some
    basic actionscript: controlling playhead movement along a timeline
    is about as basic as it gets. check the movieclip gotoAndPlay(),
    gotoAndStop() methods.

  • Is ID exported PDF considered non-editable? (In the case of view&print embedding permission fonts)

    Hiya!
    I am a graphic designer and I use InDesign 5.5.
    I have a question about font embedding when using the InDesign's export as a PDF in "print" format feature.
    Many fonts allow embedding into digital documents only for the purpose of viewing and printing.
    In addition to this the font EULA's mention that the embedded font may not be used to edit the document.
    Is it possible to create a non-editable PDF with embedded fonts?
    Is choosing PDF export option "print" the key here, or embedding the fonts as a subset?
    Isn't it still possible to edit PDF in Acrobat with touch up text tool? Or use some third party editing program?
    OR Is a PDF file - with fonts embedded as a subset -  non-editable as such, or at least considered to be non-editable enough?
    Or is it just that the file doesn't really have to be non-editable, but it must not be edited...
    How do I ensure that? Do I even need to ensure that?
    Whole thing seems so controversial.
    Hope someone can shed some light into this!!!
    -Ahlax-

    Ahlax,
    There are several separate concepts here.
    First, PDF is really a final form file format. It wasn't designed as an editable format for layout such as InDesign's .indd format ane Word's .doc and .docx formats. Although PDF files may be tagged with contextual metadata, typical content of PDF files contains no context in terms of words, sentences, paragraphs, columns, etc. It is simply graphical objects including text fragments, vector artwork, and raster images at a particular place on a page with specified graphical attributes (color, transparency, etc.). As such producing a full PDF file editor first requires definition of what it actually means to edit such a file given the characteristics of PDF files.
    That having been said, Acrobat and various third party plugins to Acrobat as well as third party applications provide some degree of editability for PDF files, recognizing that such edits are definitely not at the abstractual level that you get with InDesign. You can “touch-up” text, but doing a re-layout is effectively impossible. In most cases, it is better (in terms of time, effort, and resultant quality) to go back to the source document, make the changes there, and then regenerate the PDF.
    Fonts are a totally separate issue. Adobe products will not embed any font into a PDF file unless the font allows for at least preview and print embedding. For PDF forms, Acrobat requires a font to allow editability embedding. However for text touch-up and other edits, Acrobat never uses the embedded font. Such edits are only allowed if the user has the same font actually installed on their system.
    In terms of forcing a PDF file to be totally non-editable, that is done by applying security to the file when you export the PDF file from InDesign (the Security tab) or in Acrobat Pro after PDF creation (go to the Security tab under Document Properties (Ctrl-D) to set such security).
              - Dov

  • Embedding .swf in PDF files

    Hello there,
    has anyone experience embedding swf files in a PDF document?
    I managed to create a document from a HTML file wich has a  swf movie inside, but i get only a  green square poligon.
    I'm using Adobe Reader 9.2.0 under windows xp
    thanks for your attention
    MS.

    Adobe Reader can't create pdf files. What do you use?

  • Embedding swf files in AIR app for ios

    Hi,
    After going through a lot of articles already available, I found answers with varying views on the following questions:-
    1) Can we embed swf files using the embed tag in air app for ios, with symbols exported ?
    Something like [Embed(source="someSWF",symbol="exportedSymbol")]
    and also something like [Embed(source="someSWF")].
    From what I understand, one can't embed swf's with actionscript byte code in them. So exporting symbols actually creates class linkages which leads to creation of abc. But I'm unsure on this because some sources say otherwise.
    2) Can we embed swf files using embed tag in air app for ios, without symbols exported ?
    Something like [Embed(source="someSWF")]
    and also something like [Embed(source="someSWF" mimeType = "application/octet-stream")]
    I read somewhere else, that you can actually embed symbols separately by providing symbol tag in embed tag but not entire swf (which leads to uncompiled actionscript error) but not sure about this as this is contradictory to finding #1.
    3) If #2 is possible, then do embedding two different swfs with same symbol names would cause a conflict and result in #3747 error ?
    Please note I am not asking about the Loader class here but using the Embed keyword for embedding swfs.
    Also do the results differ with AIRSDK 3.8 and 3.9 and using different swf-version in compiler flags ?
    In our application we started getting error #3747 in class creation of one of the embedded swfs (like new EmbeddedClass()) when we changed from swf-version 17 to 21 using AIRSDK 3.8. So was this error not there earlier or it was there but swf-version was suppressing it ?
    Any help is much appreciated.
    Thanks!

    I am fairly sure that the answer to your questions is: “no”.
    For embed to work the AIR app would have to be working in interpreter mode, and that can work for local testing, but can’t work for submitting apps. An easy change for you to do would be to use SWCs instead of Embed. Other than that you’re looking at Loader, but also a tricky command line build of the app.

Maybe you are looking for

  • Report of radiobutton

    dear friends i have created two radio buttons 1- material 2- sales document and below that ther is a list box..when i click on radio buton one itshould show sattement regarding material and when i click on sales document  it should show statement reg

  • Adobe Download Assistant gives error after finishing downloading, why?

    I have downloaded the trial version of CS5.5 Master Collection twice. But when the download is completed Adobe Download Assistant gives Error and cannot install the software. I go check in the download folder and there's nothing there. My laptop haas

  • Schema Diagram error when drop new database objects

    Hi All, I am following the document to ad database objects to the Schema Diagram using JDeveloper 11.1.1.4. But when I drag a view to the diagram, it gives me this error. An error was encountered CAR_REFERENCE_CODES_V.CODE Name CODE is already in use

  • Finder Window Pop-Up

    Ok, so there was this application I've never used but it keeps saying "You do not have permission to use the application "uHD-uninstall-Agent".....and so forth. I click Ok but the pop up keeps popping up and interrupting everything I do. I went to lo

  • Been unable to load pictures to Facebook or attach pictures to emails. Why is this?

    I have been unable to send photo's as email attachments for days now. Just tried to load pictures to Facebook as an alternative and it crashes. Is this an ongoing issue? have installed earlier version of Firefox but have same issues. This has in effe