CDATA with Flash

I'm trying to make some of the text in my XML bold and
italic. I read that you need to use CDATA to make it so the tags
actually work but I'm having issues with it working. Here is my XML
(with what i want to be bold)
Thanks!

Here is how to use CDATA in xml:
http://www.w3schools.com/xml/xml_cdata.asp
Note that everything inside a CDATA section is ignored by the
parser. So
that means your <b> tags may not work once you get it
into flash.
Dan Smith > adobe community expert
Flash Helps >
http://www.smithmediafusion.com/blog/?cat=11
http://www.dsmith.tv
"PKENGLISH" <[email protected]> wrote in
message
news:fp1vlm$dms$[email protected]..
> I'm trying to make some of the text in my XML bold and
italic. I read
> that you
> need to use CDATA to make it so the tags actually work
but I'm having
> issues
> with it working. Here is my XML (with what i want to be
bold)
>
> Thanks!
>
>
>
> <?xml version="1.0" encoding="utf-8"?>
> <gallery name="houses">
>
> <item dir="AppleAlley/" name="Apple Alley"
location="Milford, PA"
> desc="This
> newly-built shingle-style Victorian house was inspired
by an historic
> photograph of the building that had occupied its site
for nearly one
> hundred
> years. The interior has been re-imagined for modern
living, with an open
> kitchen and generous living areas that comfortably
accommodate large
> family
> gatherings.
>
> <b><i>Project Under
Construction</i></b>">
>
> <image file="apple_alley_1.jpg" />
> <image file="apple_alley_2.jpg" />
> <image file="apple_alley_3.jpg" />
> </item>
> </gallery>
>

Similar Messages

  • Adobe AIR 2 Beta with Flash Builder 4 Beta 2

    I'm trying to figure out how to use AIR 2 with Flash Builder 4.  I was initially under the impression that FB4 has AIR2... but the when I create a File object and try to call the function openWithDefaultApplication().  An error occurs saying the function doesn't exist.  This is the AIR application I created in FB4.  Am I doing something wrong or do I need to install AIR 2 somehow -- and if so, how do I do so?
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark"
                                xmlns:mx="library://ns.adobe.com/flex/halo">
         <fx:Script>
              <![CDATA[
                   private function launch():void{
                        var myfile = new File("C:\Windows\notepad.exe");
                        myfile.openWithDefaultApplication();
              ]]>
         </fx:Script>
         <s:Button x="439" y="155" label="Button" mouseDown="launch()"/>
    </s:WindowedApplication>
    Thanks in advance.

    Download the AIR 2 SDK, make a new copy of the Flex4 SDK (or whichever Flex SDK you want to use) and copy the AIR SDK over it. (If you are on the Mac, you have to be careful that the directories themselves aren't overwritten -- just the files inside them.) You then add the combined SDK to the list in the Flash Builder project properties dialogs.

  • Comunication and events: Flex Builder 2 with Flash CS3

    Hey hello...well, my question is: how can i comunicate Flex
    Builder 2 with Flash CS3?
    this is my code on Flex Builder 2:
    <mx:Script>
    <![CDATA[
    import mx.controls.*;
    import mx.events.*;
    public function CargaCompleta(e:Event):void
    try
    e.target.content.objeto_salida.addEventListener(Event.COMPLETE,uno);
    catch(er:Error) { Alert.show(er.message,"Error"); }
    public function uno(e:Event):void
    try
    s1.content["objeto_salida"].removeEventListener(MouseEvent.CLICK,s1.content["Finaliza"]);
    s1.source = null;
    s1.source = "recursos/reactivos/208M-1R.swf";
    catch(er:Error) { Alert.show(er.message,"Error"); }
    ]]>
    </mx:Script>
    <mx:SWFLoader id="s1" width="278" height="251"
    complete="CargaCompleta(event)"
    source="recursos/interactivos/208M-1I.swf">
    </mx:SWFLoader>
    and when it change from one file to another, on the event
    "Complete" for the SWFLodar, an error happend
    TypeError: Error #1009: No se puede acceder a una propiedad o
    a un método de una referencia a un objeto nulo.
    at 208M_fla::MainTimeline/frame1()
    Hope somebody can help me...for your time thanks...

    "Jorge EdOardo" <[email protected]> wrote in
    message
    news:gfcfcr$9s2$[email protected]..
    > Hey hello...well, my question is: how can i comunicate
    Flex Builder 2 with
    > Flash CS3?
    >
    > this is my code on Flex Builder 2:
    > <mx:Script>
    > <![CDATA[
    > import mx.controls.*;
    > import mx.events.*;
    > public function CargaCompleta(e:Event):void
    > {
    > try
    > {
    >
    e.target.content.objeto_salida.addEventListener(Event.COMPLETE,uno);
    > }
    > catch(er:Error) { Alert.show(er.message,"Error"); }
    > }
    > public function uno(e:Event):void
    > {
    > try
    > {
    >
    >
    s1.content["objeto_salida"].removeEventListener(MouseEvent.CLICK,s1.content["Fin
    > aliza"]);
    > s1.source = null;
    > s1.source = "recursos/reactivos/208M-1R.swf";
    > }
    > catch(er:Error) { Alert.show(er.message,"Error"); }
    > }
    > ]]>
    > </mx:Script>
    > <mx:SWFLoader id="s1" width="278" height="251"
    > complete="CargaCompleta(event)"
    > source="recursos/interactivos/208M-1I.swf">
    > </mx:SWFLoader>
    >
    > and when it change from one file to another, on the
    event "Complete" for
    > the
    > SWFLodar, an error happend
    >
    > TypeError: Error #1009: No se puede acceder a una
    propiedad o a un m?todo
    > de
    > una referencia a un objeto nulo.
    > at 208M_fla::MainTimeline/frame1()
    >
    > Hope somebody can help me...for your time thanks...
    http://weblogs.macromedia.com/pent/archives/2007/04/using_actionscr_1.html

  • Fullscreen issue with flash player 10.1?

    This is the code I am using
    <?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:Script>
              <![CDATA[
                   import mx.events.FlexEvent;
                   protected function canvas1_showHandler(event:FlexEvent):void
                        stage.displayState = StageDisplayState.NORMAL;
                   protected function canvas2_showHandler(event:FlexEvent):void
                        stage.displayState = StageDisplayState.FULL_SCREEN;
              ]]>
         </fx:Script>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <mx:TabNavigator>
              <mx:Canvas label="Tab1" width="300" height="400" show="canvas1_showHandler(event)"/>
              <mx:Canvas label="Tab2" width="300" height="400" show="canvas2_showHandler(event)"/>
         </mx:TabNavigator>
    </s:Application>
    When I run this code in Firefox with flash player 10,it is working as expected(When I go to tab2,application goes to fullscreen.When tab1,normal state).But in flash player 10.1,I can go to tab2.But cannot select tab1 again.It stays as fullscreen with tab2 selected.
    Any idea why this is so?

    I think that the issue is not with flashplayer but with firefox 3.5+ .The problem is that the swf cannot receive any mouse events while in full screen mode in FF 3.5+.In FF 3 and other browsers,this is working as expected.I searched a lot in the internet but did not find anything fruitful.Anyone has experienced this issue?

  • HttpServices not working Online but working with Flash Builder

    I am using Flash Builder and worked on different modules. it works perfectly
    when am testing with Flash Builder
    but once i close it, the httpservices stop working. I search and now got
    error message i.e.
    ===============================================
    Can't load data: (mx.messaging.messages::ErrorMessage)#0
      body = ""
      clientId = "DirectHTTPChannel0"
      correlationId = "A10EF203-C28B-A5C6-73D6-1C765EAA0714"
      destination = ""
      extendedData = (null)
      faultCode = "Server.Error.Request"
      faultDetail = "Error: [IOErrorEvent type="ioError" bubbles=false
    cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL:
    http://localhost:37813/1/users/show.xml?screen_name=charagh?hostport=api.twitter.com&https =N&id=A10EF203-C28B-A5C6-73D6-1C765EAA0714"].
    URL: http://api.twitter.com/1/users/show.xml?screen_name=charagh"
      faultString = "HTTP request error"
      headers = (Object)#1
        DSStatusCode = 0
      messageId = "542DB993-AA3F-7E05-636C-1C7662BB7FFF"
      rootCause = (flash.events::IOErrorEvent)#2
        bubbles = false
        cancelable = false
        currentTarget = (flash.net::URLLoader)#3
          bytesLoaded = 0
          bytesTotal = 0
          data = ""
          dataFormat = "text"
        errorID = 0
        eventPhase = 2
        target = (flash.net::URLLoader)#3
        text = "Error #2032: Stream Error. URL:
    http://localhost:37813/1/users/show.xml?screen_name=charagh?hostport=api.twitter.com&https =N&id=A10EF203-C28B-A5C6-73D6-1C765EAA0714
        type = "ioError"
      timestamp = 0
      timeToLive = 0
    ===============================================
    my code i.e.
    ==================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/mx"
                           width="550" height="58" backgroundAlpha="1.0"
    backgroundColor="#000000"
                           borderVisible="false" creationComplete="init(event)"
    layout="absolute">
              <fx:Script>
                        <![CDATA[
                                  import mx.events.FlexEvent;
                                  import mx.rpc.events.FaultEvent;
                                  import mx.rpc.events.ResultEvent;
                                  import mx.controls.Alert;
                                  import mx.rpc.http.HTTPService;
                                  private var twitterText:String;
                                  private var twitterCount:String;
                                  private var tweetdate:String;
                                  private var twitterImage:String;
                                  protected function
    image1_clickHandler(event:MouseEvent):void
                                            navigateToURL(new URLRequest("
    https://twitter.com/charagh"),"_blank");
                                  protected function init(event:FlexEvent):void
                                            twitterText = "charagh";
                                            tweetUser.url="
    http://api.twitter.com/1/users/show.xml?screen_name="+twitterText;
                                            tweetUser.send();
                                  protected function
    tweetUser_resultHandler(event:ResultEvent):void
                                            tweetdate =
    event.result.user.status.created_at;
                                            twitterCount =
    event.result.user.status.text "  "tweetdate;
                                            twitterImage =
    event.result.user.profile_image_url;
                                  protected function
    tweetUser_faultHandler(event:FaultEvent):void
                                            Alert.show("Can't load data: " +
    event.message);
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <s:HTTPService id="tweetUser" method="GET"
    result="tweetUser_resultHandler(event)"
    fault="tweetUser_faultHandler(event)">
                        </s:HTTPService>
              </fx:Declarations>
              <s:Image  buttonMode="true" width="48" height="48" x="5" y="5"
    click="image1_clickHandler(event)" source=""/>
              <s:Label id="twitterNumber" x="56" y="5" width="488" height="47"
    color="#EDEDED"
                                   fontFamily="Georgia" fontSize="12"
    fontWeight="normal" text=""
                                   textAlign="center" verticalAlign="middle"/>
    </mx:Module>
    ===================
    Regards,
    Asim Ahmed
    ~ http://www.charag.com ~

    updated code: with cross domain policy! but still getting error
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/mx"
                           width="550" height="58" backgroundAlpha="1.0" backgroundColor="#000000"
                           borderVisible="false" creationComplete="init(event)" layout="absolute">
              <fx:Style>
                        @namespace s "library://ns.adobe.com/flex/spark";
                        @namespace mx "library://ns.adobe.com/flex/mx";
                        @font-face{
                                  src: url("./module/font/fonts/DroidSans.ttf");
                                  fontFamily: "Base02";
                        mx|Alert {
                                  titleStyleName: "alertTitle";
                                  messageStyleName: "alertMessage";
                                  buttonStyleName: "alertButton";
                                  cornerRadius: 0;
                                  embedFonts: true;
                                  fontFamily: Base02;
                                  backgroundColor:aqua;
                        .alertButton {
                                  letterSpacing: 0;
                                  fontSize: 11;
                                  cornerRadius: 10;
                                  fontWeight: normal;
                                  textRollOverColor: white;
                                  color: red;
                                  skin: ClassReference(null);
                        .alertTitle {
                                  letterSpacing: 0;
                                  fontSize: 14;
                                  color: red;
                        .alertMessage {
                                  letterSpacing: 0;
                                  fontSize: 10;
                                  fontWeight: normal;
                                  color: black;
              </fx:Style>
              <fx:Script>
                        <![CDATA[
                                  import module.user_logged;
                                  import mx.collections.ArrayCollection;
                                  import mx.collections.XMLListCollection;
                                  import mx.controls.Alert;
                                  import mx.events.FlexEvent;
                                  import mx.rpc.events.FaultEvent;
                                  import mx.rpc.events.ResultEvent;
                                  import mx.rpc.http.HTTPService;
                                  private var twitterText:String;
                                  [Bindable]
                                  private var twitterCount:String;
                                  [Bindable]
                                  private var tweetdate:String;
                                  [Bindable]
                                  private var twitterImage:String;
                                  [Bindable]
                                  private var tweetArray:ArrayCollection;
                                  [Bindable]
                                  private var datalist:XMLListCollection;
                                  private var a:Alert;
                                  protected function image1_clickHandler(event:MouseEvent):void
                                            navigateToURL(new URLRequest("https://twitter.com/charagh"),"_blank");
                                  protected function init(event:FlexEvent):void
                                            Security.allowDomain( "charag.com" );
                                            Security.loadPolicyFile( "./module/crossdomain.xml" );
                                            var request:URLRequest =
                                            new URLRequest( "./module/crossdomain.xml" );
                                            var loader:URLLoader = new URLLoader();
                                            loader.load(request);
                                            twitterText = "charagh";
                                            tweetUser.url="http://api.twitter.com/1/users/show.xml?screen_name="+twitterText;
                                            tweetUser.send();
                                            tweetUser.addEventListener(ResultEvent.RESULT,tweetUser_resultHandler );
                                  protected function tweetUser_resultHandler(event:ResultEvent):void
                                            Alert.buttonWidth = 120;
                                            var x:XML = event.result as XML;
                                            var childName:String = "status";
                                            //Alert.show(x.child(childName).text);
                                            yourmessage = x.profile_image_url;
                                            a = Alert.show( yourmessage,title);
                                            a.mx_internal::alertForm.mx_internal::textField.selectable = false;
                                            twitterImage = x.profile_image_url;
                                            twitterText = x.status.text;
                                            tweetdate = x.status.created_at;
                                            twitterCount = twitterText+"  "+tweetdate;
                                  protected function tweetUser_faultHandler(event:FaultEvent):void
                                            var faultstring:String = event.fault.faultString;
                                            a = Alert.show(faultstring);
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <fx:String id="title">Error Message</fx:String>
                        <fx:String id="yourmessage"></fx:String>
                        <s:HTTPService id="tweetUser" useProxy="false" method="GET" fault="tweetUser_faultHandler(event)" resultFormat="e4x">
                                            </s:HTTPService>
              </fx:Declarations>
              <s:Image  buttonMode="true" width="48" height="48" x="5" y="5" click="image1_clickHandler(event)" source="{twitterImage}"/>
              <s:Label id="twitterNumber" x="56" y="5" width="488" height="47" color="#EDEDED"
                                   fontFamily="Georgia" fontSize="12" fontWeight="normal" text="{twitterCount}"
                                   textAlign="center" verticalAlign="middle"/>
    </mx:Module>

  • Errors on my web site started with Flash Player Release a few days ago (Mar 28, 2012)

    Hi,
    I have a Flash based video player on my website.  This was designed and implemented based on an article vy Lisa Larson-Kelley.  It has run flawlessly for several years.  But, when I installed the lastest release of Flash Player a fedw days ago (Mar 28, 2012), I am now getting really annoying issues with the Flash Video Player.
    I expect that I will need to place insturctions for users on how to roll back their version of Flash Player, since this latest version is broken.
    But, many of the people who visit my site are not tech oriented (they are mostly friends and family, so, I don't expect that they will really roll back their version of Flash player.
    I am 100% certain the issue is the latest version of Flash, since these errors never occurred until I installed the latest version. 
    On my work laptop, I have an older version of Flas (10.x.x) and this probelm does not happen.  On my desktop PC at home, I have an older version of Flash 11 installed, and this problem does not happen (in IE9).  The version of Flash PLayer 11 where the issue does *not* occur is 11.1.102.63.
    On that same desktop PC, if I use Chrome, (which automatically defaults to the latest version of Flash which is 11.2.202.228, I get the problems.  So, there is no question that the issue is with the latest version of Flash and not my hardware or drivers.  I get the same problems on three different computers.
    My website has a username and password.  If someone from Adobe wants to replicate the problem send me an e-mail and I will send you the username and password.
    The videoplayer on my website is at this url:  http://www.jjjhi.com/TryMakingFlashVidPlayer/VideoPlaylist.html (but, you will need the username and password).
    The issue is that sometimes (not always) when you select a video to play, inistead of the video loading into the panel as it should (sized as 1025 x 578), instead, all you see is the control skin.  The video begins to play, but all you get is the audio.  It looks like this:
    You can recover from this error by using the skin control to make the image full screen, but, the video looks poor at fulls screen, because it is created at 1024 x 578.  You can then get the correct size by returning from full screen, but, I don't want the pepole who visit my cif\deo playet to have to go all through that.  Especially since most won't even know enough to try making the video full screen.
    This doesn't happen for every video on my web site, but, once it *does* happen once...it will happen for every video selection you make.
    This is unacceptable, and it absolutely a function of Flash version 11.2.202.228.
    Adobe:  Please fix this bug as soon as possible.
    I've implemented an HTML5 based video player and have begun populating it with mp4 versions of my video clips, but, quite honestly, the playback using HTML5 is much worse than with Flash.  I encoded the clips in the HTML5 player with the same Variable Bit Rates as in the F4V clips, and, in the HTML5 player, there are missed frames, and the audio can get out of sync.  So, I *want* to keep using my Flash Based video player, but...if Adobe doesn;t fix this, I will just dial down my VBR till I find one that is slow enough to play in HTML5 and ditch Flash.
    My HTML5 video player is here:
    http://www.jjjhi.com/TryMakingNewVideoPlayer/NewVidPlayer_option1_jth.html
    (again you need the username and password to use it, send me an e-mail and I will give them to you, I just don't want to post them in an open forum).
    Here is a bitmap of the page:  It is quite snazzy looking and is based on an excellent class from Chris Converse at Lynda.com.  But, even though it is 'snazzy looking' the HTML5 player performs poorly on an under-powered machine (like my work laptop).  It uses 100% CPU and misses frames and the audio loses sync.  The same videos encoded with the same VBR for Flash (F4V) play great, *except for the new issue described above!!!!)
    I Adobe can fix this issue with Flash Player 11.2.202.228  ASAP, else, I will  have to 'downgrade' to an HTML5 based video player, that, quite honestly does not perform as well as Flash.
    If you want to reproduce the problem contact me at my e-mail address: [email protected] and I'll send you the username and password.
    You can then prove that the problem does not exist with prior version of Flash player (before 11.2.202.228) but *does* exist with this latest buggy release.
    Thanks,
    John

    Thanks.
    I sent the username and PW to you and Chris.
    Cheers,
    John

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • Issues with Flash Pro CS5 on Mac

    Hi,
    I recently bought a MacBookPro 15", 2.4 GHz Intel Core i5, 4GB 1067 MHz DDR3 and CS5 Creative Suite. Built in Intel HD Graphics and NVIDIA GeForce GT 330M.
    Hi have some issues with Flash Pro:
    - when objects on the stage are quite big (for example a 800x3000 movie clip), it start showing strange colors and wrong position, however when double clicking the movie clip to edit it, it looks correct. Also no problem when publishing. See images attached, the first one is correct, the second one shows the problem, when editing the mc in the 2nd image i get the third image that is correct.
    Correct:
    Wrong:
    After entering editing mode:
    - after a while, when making a change in the stage or in the time line (deleting frames for example), it doesn't show it immediately, but i need to refresh the page. This happens more when opening many fla in the same time. Closing and restarting Flash fixes it, for a while.
    - after a while it doesn't show when selecting an object, the object looks like is not selected, however i can see that it is in the properties panel.  This happens more when opening many fla in the same time.  Closing and restarting Flash fixes it, for a while.
    Hi have been using CS3 and CS4 with less powerful computers before (always mac) and i never encountered these issues.
    Removing preferences and Application support files didn't help. I also updated Flash  to v. 11.0.1, but no joy.
    Does anyone know what's the problem?
    Thanks a lot.
    Mike

    Based on some searching and testing, it seems that if you redirect ~/Library/Application Support/Adobe/Flash CS5 to a location on the local hard drive, rather than the network account storage, the problem ceases.
    I hope this helps anyone else who may run into this problem.
    Take care,
    Branden

  • Problem with flash on IE11 after using adobe cleaner

    Problem with flash on IE11 after using adobe cleaner to remove a trial version of photoshop because there was not any entry on add/remove applications in windows 8.1
    Its to frustrating to reinstall everything. I tried everything from your support page with no luck…

    Link for Download & Install & Setup & Activation problems may help
    -Online Chat http://www.adobe.com/support/download-install/supportinfo/

  • Problem with Flash 10 in Linux

    I'm having an issue with Flash 10.0 r12 on a linux machine
    through Firefox 3.0.3. I'm unable to access the settings menu on
    some sites such as Stickam.com. The video also doesn't work even
    though it appears that the cam gets initialized.

    Yo Figneutron,
    As I told you in your other post (but I'll do it again for other users):
    The libflashplayer.so goes into the /home/<username>/.mozilla/plugins directory
    After that, restart Firefox and off ya go......Back to XP, because Flash is still not working with Linux It's still choppy and fullscreen hangs even more.

  • Problem with flash player in firefox 12

    Problem with flash 11.3 (beta 1,2) in firefox 12. Works in all other browser.
    Screenshots
    http://i.imgur.com/OZXvQ.png
    http://i.imgur.com/VwUzk.png
    http://i.imgur.com/XbXgV.png
    http://i.imgur.com/dOT3w.png
    http://i.imgur.com/aGgg8.png
    Win 7 Ultimate SP1
    Please fix

    Hello
    it is all working for me.
    http://support.mozilla.org/en-US/kb/Basic%20Troubleshooting
    Please try point 4,6 and 8
    Win 7 Ultimate x64 SP1
    Firefox 12.0b6
    Flash Player 11.3 beta 1 & 2

  • Problem with Flash in Firefox for MAC

    Hello, 
    I have a little trouble with flash in firefox ... 
    In fact, when I go on websites via firefox and it is the flash ... animation or flash application in meeting the latency to the point that even the youtube player lag when I also want to press the pause button (to pause the video) ...
    Major latency problem also when I play games in flash ...
    I tested the same sites in Safari and then everything is nikel I do not understand ... 
    I deleted the files "Player.plugin Flash" and "flashplayer.xpt" in the library of mac and reinstalling flash but it has not helped!
    Configuration: Mac OS X 
    Firefox 3.5.3
    Désolé si mon anglais n'est pas parfait, je l'ai traduit avec google ...
    je suis français
    FRENCH VERSION :
    Bonjour,
    J'ai un petit soucis avec flash sous firefox...
    En effet, quand je vais sur des sites via firefox et qu'il y a du flash... l'animation ou application sous flash rencontre des latences à tel point que même le player youtube lag également quand je souhaite appuyer sur le bouton pause (pour mettre en pause la vidéo)...
    Gros problème de latence également quand je joue à des jeux sous flash... style "le 4ème duel"
    j'ai tester les mêmes sites sous SAFARI et là tout est nikel je ne comprends pas ...
    j'ai supprimé les fichiers "Flash Player.plugin" et "flashplayer.xpt" dans la bibliothèque de mac et réinstaller flash mais cela n'a rien arrangé !!!
    Configuration: Mac OS X
    Firefox 3.5.3

    That is a Microsoft Word issue, so you will get the best results asking over on the Microsoft Office for Mac forums on Microsoft's web site.  Many people here don't use MS Word, while everyone there does.

  • I have problem with flash on my MacBook Air 13 2013 with ML 10.8.5

    The problem is that every time I want to display website with flash content (like youtube) I have kernel panic. The same situation is on firefox and Safari. On Google Chrome everything is working fine, but it has built in flash. I've tride to reinstall flash, remove it using adobe uninstaller, correct permissions etc. I've event tried to make new account on my computer but always it happens again. Video is trying to start, and I have kernel panic + restart the mashine. It's strange that I don't have this problem on my late 2012 mac mini with the same version of OS, browsers and flash. I'm confused... Can anybody help me with that?
    Macbook has 3 days so I can say that it is clean OS. I've only installed Creative Cloud software, MS Office, and web browsers, so I think it's not the issue.

    Interval Since Last Panic Report:  9662 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    1139DF66-E417-0F90-6084-E600B2BBF29B
    Sun Sep 29 09:27:47 2013
    panic(cpu 2 caller 0xffffff80150b8945): Kernel trap at 0xffffff7f96a8a19f, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000008, CR3: 0x0000000017584000, CR4: 0x00000000001606e0
    RAX: 0x0000000000000000, RBX: 0xffffff8027e9c000, RCX: 0x0000000001330000, RDX: 0x0000000014040000
    RSP: 0xffffff80ffe6beb0, RBP: 0xffffff80ffe6bed0, RSI: 0x0000000000000000, RDI: 0x0000000000000010
    R8:  0x0000000000000003, R9:  0x0000000000000000, R10: 0xffffff80ffe6bde0, R11: 0x0000000000000201
    R12: 0x0000000000000000, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0x0000000000000001
    RFL: 0x0000000000010287, RIP: 0xffffff7f96a8a19f, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x0000000000000008, Error code: 0x0000000000000000, Fault CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80ffe6bb50 : 0xffffff801501d636
    0xffffff80ffe6bbc0 : 0xffffff80150b8945
    0xffffff80ffe6bd90 : 0xffffff80150cebfd
    0xffffff80ffe6bdb0 : 0xffffff7f96a8a19f
    0xffffff80ffe6bed0 : 0xffffff7f96aae52c
    0xffffff80ffe6bef0 : 0xffffff8015450e58
    0xffffff80ffe6bf30 : 0xffffff801544f95a
    0xffffff80ffe6bf80 : 0xffffff801544fa89
    0xffffff80ffe6bfb0 : 0xffffff80150b3257
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelFramebufferAzul(8.1.6)[8F074659-F84D-3303-8E40-F7726 C5A2B10]@0xffffff7f96a83000->0xffffff7f96ad8fff
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f95b50000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f95608000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f95bb5000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12F37
    Kernel version:
    Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
    Kernel UUID: B1B58405-A2B2-3C44-B25D-495053D52AB5
    Kernel slide:     0x0000000014e00000
    Kernel text base: 0xffffff8015000000
    System model name: MacBookAir6,2 (Mac-7DF21CB3ED6977E5)
    System uptime in nanoseconds: 420480990689
    last loaded kext at 245365058089: com.apple.filesystems.msdosfs          1.8.1 (addr 0xffffff7f96e82000, size 65536)
    last unloaded kext at 305477630406: com.apple.filesystems.msdosfs          1.8.1 (addr 0xffffff7f96e82000, size 57344)
    loaded kexts:
    com.avast.PacketForwarder          1.3
    com.avast.AvastFileShield          2.0.0
    com.rim.driver.BlackBerryVirtualPrivateNetwork          1.0.15
    com.logitech.driver.LogiGamingMouseFilter          1
    com.driver.LogJoystick          2.0
    com.rim.driver.BlackBerryUSBDriverInt          0.0.97
    com.apple.iokit.IOBluetoothSerialManager          4.1.7f2
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.ApplePlatformEnabler          2.0.7d2
    com.apple.driver.AppleUpstreamUserClient          3.5.12
    com.apple.driver.AppleHDA          2.4.7fc2
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleLPC          1.6.3
    com.apple.driver.AppleIntelHD5000Graphics          8.1.6
    com.apple.driver.AppleCameraInterface          4.08.1
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleIntelFramebufferAzul          8.1.6
    com.apple.driver.AppleUSBCardReader          3.3.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleUSBHub          623.4.4
    com.apple.driver.AppleTopCaseHIDEventDriver          10.20
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.5
    com.apple.driver.AppleAHCIPort          2.6.6
    com.apple.driver.AirPort.Brcm4360          641.15.1
    com.apple.driver.AppleUSBXHCI          630.4.5
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.8
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.8
    com.apple.driver.AppleAPIC          1.7
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.4.7fc2
    com.apple.iokit.IOAudioFamily          1.9.2fc7
    com.apple.kext.OSvKernDSPLib          1.12
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.iokit.IOAcceleratorFamily2          74.15
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.7f2
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.AppleSMC          3.1.5d4
    com.apple.driver.IOPlatformPluginFamily          5.4.1d11
    com.apple.driver.AppleHDAController          2.4.7fc2
    com.apple.iokit.IOHDAFamily          2.4.7fc2
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.iokit.IOUSBHIDDriver          623.4.0
    com.apple.driver.AppleUSBMergeNub          621.4.6
    com.apple.driver.AppleThunderboltDPInAdapter          2.5.0
    com.apple.driver.AppleThunderboltDPAdapterFamily          2.5.0
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.3.2
    com.apple.iokit.IOUSBUserClient          630.4.4
    com.apple.driver.AppleHIDKeyboard          170.2.4
    com.apple.driver.AppleHSSPIHIDDriver          23
    com.apple.driver.AppleMultitouchDriver          237.4
    com.apple.iokit.IOAHCIFamily          2.5.1
    com.apple.driver.AppleThunderboltNHI          1.9.2
    com.apple.iokit.IOThunderboltFamily          2.7.7
    com.apple.iokit.IO80211Family          530.5
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.driver.AppleHSSPISupport          23
    com.apple.driver.AppleIntelLpssSpiController          2.0.34
    com.apple.driver.AppleIntelLpssGspi          2.0.34
    com.apple.driver.AppleIntelLpssDmac          2.0.34
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.driver.AppleKeyStore          28.21
    com.apple.iokit.IOUSBMassStorageClass          3.5.2
    com.apple.driver.AppleUSBComposite          621.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.6
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.6
    com.apple.iokit.IOUSBFamily          630.4.5
    com.apple.driver.AppleACPIPlatform          1.8
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookAir6,2, BootROM MBA61.0099.B00, 2 processors, Intel Core i5, 1.3 GHz, 8 GB, SMC 2.13f5
    Graphics: Intel HD Graphics 5000, Intel HD Graphics 5000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E384A544D4C41522D4E544D
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E384A544D4C41522D4E544D
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x117), Broadcom BCM43xx 1.0 (6.30.225.29.1)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 21 devices, 3 incoming serial ports
    Serial ATA Device: APPLE SSD SM0128F, 121,33 GB
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8406, 0x15300000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x14300000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x828f, 0x14330000 / 6
    USB Device: SAMSUNG_Android, 0x04e8  (Samsung Electronics Co., Ltd.), 0x6860, 0x14100000 / 2
    USB Device: Gaming Mouse G300, 0x046d  (Logitech Inc.), 0xc246, 0x14200000 / 1

  • I am having a very fustrating issue with flash

    I am running flash in IE8 on a win 7 laptop with flash version 10.1 plugin.  i can install it and it will run for a while. but once i restart my system or close my browser and start it up again.. it starts to crash. then the problem will migrate to my other browsers.( firefox and chrome) this has started happening since i upgraded to 10.1 from 9. whatever.  and i cannot just re-install it to get it working again.. i have to shutdown all browsers. uninstall flash through the control panel reboot , then install , reboot then it MAY work. any help would be very appricated. the biggest culprit is facebooks flash app cityville. It is the one that is really causing this issue.

    Hello BaoBae,  Since no one knows what problem you had, since you didn't start a thread, it's difficult to offer your solution to others. Especially when you don't know what their problem is:-) There is no one fix.
    Why go thru everything you have posted here, when the problem may be a simple turning off the hardware acceleration feature? This is just one example. Or how about  an addon in the browser and disabling it and that is the solution?
    Offering a solution before knowing the problem is having the cart before the horse and really isn't helpful.
    You most likely know what your problem was, but no one else does that you are giving your solution to on the threads here.
    If this solution solved whatever issue you were having, that's great. But it won't be for everyone, nor should it be.
    Finding out the problem and then the solution is always the order:-)
    Thanks,
    eidnolb

  • Firefox is constantly freezing up, and I can't get it going again until I close pluginscontainer.exe which, when freezing, is quite large (sometimes even as big as 300MB). What is causing this? It seems to happen on pages with Flash.

    I have already tried reinstalling Firefox, using both the BETA and Stable releases. I've cleared all of my plugins and started over with them, reinstalling Flash multiple times as well. After an uninstallation, I even went as far as deleting Mozilla from my Appdata folder on my user account and from Program Files to assure complete uninstallation.
    This crash happens multiple times in a day, I can't go 20 minutes of browsing without this happening.
    Also, there are multiple instances of plugin-container.exe running (right now, 5).
    Thank you so much for your help, this issue has been driving me up the wall and I just could not get it to stop.

    There is a known issue where multiple instances of plugin container open if history or cookies are cleared. Are you, or some utility clearing firefox cookies or history, that could be the reason. This problem continues even if plugins are disabled in Firefox.
    *Are you opening multiple instances of Flash Player ?
    * Is the problem reproducible ? <br/> for instance does it always crash the plugin or cause it to hang if you use a particular site ?
    If you get the FlashPlayer plugin crashing use the option to submit the crash reports, it is then possible to follow them up. It is possible to stop the plugincontainer opening, but that could result in a firefox crash. Of course the firefox crash can also send crash reports out, and that could be useful.
    * see [[plugin crash reports]]
    * [[what is plugin-container]]
    * [[firefox crashes]]
    There are some problems with FlashPlayer currently under investigation, and there may be other threads in the forum about problems. (e.g. Bug 561019 - Plugin waveOutOpen hangs )
    Sometimes using Firefox 3.6 is a workaround that helps with FlashPlayer problems, if you wish to experiment with that consider installing firefox Portable and using Firefox 3.6.23 (or soon 3.6.24) for tests with flash player, whilst keeping firefox 7 for day to day browsing.
    * [[http://portableapps.com/apps/internet/firefox_portable/localization#legacy36]]

Maybe you are looking for

  • Can't connect to iTunes nor to car Bluetooth system

    Up through yesterday, my iPhone showed up in iTunes on my iMac, but no longer. Also, it automatically connected to my Toyota Camry Bluetooth system...but no longer. (I just upgraded to iOS 6.1)

  • Webi Excel Personal Data Provider Dynamic Data

    Hello, We are using BOXI 3.1/SP2. I understand that we can use Excel documents as a personal data provider. I have myself used it to mix data from universe and an excel file from my local machine- using Rich Client. I am wondering if it's possible fo

  • Help....Simple Applets Not Working..

    I have been trying to get this simple HelloWorld applet to execute with no luck. I have confirmed that my Java Plug-In is setup with the IE Browser and JRE C:\Java\j2sdk1.4.1_1. I also enabled the Java console and JIT compiler for virtual machine ena

  • Oracle Text Dependencies

    Hey everyone, I am currently running Oracle 10g rel2 on a Win2K3 box. Someone told me to enable Oracle Text the following would be required: 1. Oracle Data Mining 2. Oracle Spatial According to the Oracle documentation I cannot find anything to back

  • How to create Royality DataBase

    Hi... How to create Royalty DataBase. This is to be used when one company uses another company�s product inside its product and when it sells it pays the other company commission. This can be different by country ad method of sale.