YouTube Chromeless Player ceases to enlarge up to Full Screen width in Full Screen mode

Hello all!
I tested my skin for YouTube Chromeless player, and seems it worked properly.
All graphic elements, including TLFTextFields, are stored in external SWF, all the AS3 code - in loading SWF.
I use ProLoader class to load SWF.
However, when I tried to attach Player skin code to my Home Page code, I immediately bumped into two issues:
1. TLFTextFields ceased to display proper font;
2. YouTube Chromeless player ceased to enlarge up to Full Screen width in Full Screen mode, whereas all publishing settings were kept the same...
Although I managed to cope with TLFTextField bug by replacing instances with vars in loaded SWF, I have no the slightest idea what to do with those paddings in Full Screen mode... Neither removing all children on stage before loading YouTube Player skin, nor compulsory resetting player's size can't make it work...  
Any help appreciated !!!

Thanks for the reply Andrei!
No, the issue is not there. My monitor resolution is 1280x1024 only, and I just watched via Skype how it looks on 1920x1080.
Moreover, as I mentioned above, the Player skin per se works more or less properly (whereas attached to the Home page doesn't).
And EVERYTHING, including YouTube player enlargement, looks good in 'standalone' version...
You may have a look at these two links:
- YouTube Player skin. Standalone
- Customised YouTube Player. Full project
What is added in full project:
1. One background image: MovieClip
2. One background title: TLFTextField
3. Five buttons + one intro player: VideoPlayer
4. One masking rectangle: Sprite
I wonder what may cause such deviation in behaviour ?..
P.S. Any other bugs report (especially with screenshots) are also appreciated
UPD: Actually, buttons are not just VideoPlayers. All of them are MovieClips, which included two VideoPlayers, one TLFTextField and two Sprites...

Similar Messages

  • Mac Users: How can I watch YouTube again on Firefox, when for months all I get is a black screen and no controls?

    Beyond frustrated here. I can watch YouTube on Safari (I have a MacBook Pro laptop, OS 10.6.8), but I use Firefox, for everything else, so really need YouTube access on Firefox. I have googled the problem a zillion times and find solutions that do not work.
    Today in several places, including here at Firefox, the instruction is to uncheck the "Enable Hardware Acceleration" box which is found when you right-click (two-finger click on my trackpad) on the black YouTube screen. Then click on Settings, which brings up a display box. In the display box I'm supposed to be able to uncheck the hardware acceleration. And I see it there in front of me.
    But it's dead to my trackpad! The Enable Hardware Acceleration will not uncheck when I click on its tiny box. It's supposed to be active, but nothing I do in that display box works--even the close button. I've refreshed the page, tried clicking the icons on it, nothing works.
    Can you imagine no YouTube for months? It's driving me crazy. PLEASE help, I will be so grateful!
    Thanks~~

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    Try to disable the hardware acceleration in the Flash Player.
    See:
    * https://support.mozilla.com/kb/Cannot+view+full+screen+Flash+videos
    * http://www.youtube.com/swf_test.html (right-click the player: Settings)
    Flash "Display settings" window:
    * http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html

  • How do I enlarge my web page to use the whole screen?

    How do I enlarge my web page to use the whole computer screen?

    Reduce dock size or hide same.
    Also depends on what browser you're using  all have full screen modes.
    Safari :
    http://support.apple.com/kb/PH11941
    To enlarge an entire webpage so it uses the screen, click the arrows in the top-right corner of an app window:

  • Installing Reader or Flash player on Windows 7 and I get a blank command prompt screen that does nothing. Help please.

    Installing Reader or Flash player on Windows 7 and I get a blank command prompt screen that does nothing. Help please.

    Try using the offline installers.
    Adobe Reader: http://get.adobe.com/reader/enterprise/
    Flash Player for Internet Exporer - ActiveX
    Flash Player for Firefox - NPAPI

  • Unload multiple youtube video player

    hey guys...i have a problem when i was trying stop a multiple youtube streaming video in flex. i'm using 3 file in this project:videoTutorial.mxml(as main application), windowVideoTutorial.mxml (as titleWindow component), and videoTutorialx.xml (as external xml file).this is the code:
    videoTutorial.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        initialize="videoService.send();" width="100%" height="100%" >
        <mx:HTTPService id="videoService" url="xml/VideoTutorialx.xml" result="videoHandler(event);" />
        <mx:Script>
            <![CDATA[
                import mx.rpc.events.ResultEvent;
                import mx.collections.ArrayCollection;
                import mx.managers.PopUpManager;
                [Bindable]
                public var repvid:ArrayCollection;
                private function videoHandler(event:ResultEvent):void{
                    repvid=event.result.VideoTutorial.myvideo;
                private function launchPopUp(e:MouseEvent):void {
                    if(thumbClick.selectedItem){
                        var win :windowVideoTutorial = new windowVideoTutorial();
                        win.sourceVideo = thumbClick.selectedItem.urlVid;
                        PopUpManager.addPopUp(win,this,true);
                        PopUpManager.centerPopUp(win);
            ]]>
        </mx:Script>
        <mx:ApplicationControlBar width="100%" height="100%" horizontalAlign="center">
            <mx:VBox>
                <mx:ApplicationControlBar width="100%" verticalAlign="middle">
                    <mx:Label text="Tutorial Multimedia Player"
                        width="100%" textAlign="center" />
                </mx:ApplicationControlBar>
                <mx:TileList id="thumbClick" dataProvider="{repvid}"
                    width="700" height="525" rowHeight="200" columnWidth="325"
                    click="launchPopUp(event)" verticalAlign="middle"
                    horizontalCenter="0" verticalCenter="0" >
                    <mx:itemRenderer>
                        <mx:Component>
                        <mx:VBox horizontalAlign="left" verticalAlign="top" width="100%">
                            <mx:Label text="{data.titleVid}" fontWeight="bold" fontSize="12"/>
                            <mx:Image source="{data.imageVideo}" width="150" height="150"/>
                        </mx:VBox>
                        </mx:Component>
                    </mx:itemRenderer>
                </mx:TileList>       
              </mx:VBox>
        </mx:ApplicationControlBar>
    </mx:Application>
    windowVideoTutorial.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
        width="100%" height="100%"
        showCloseButton="true"
        close="closeWindow(event);"
        creationComplete="Init();">
        <mx:Script>
            <![CDATA[
                import mx.events.CloseEvent;
                import mx.managers.PopUpManager;   
                [Bindable]
                public var sourceVideo:String;       
                private function closeWindow(e:CloseEvent):void {
                    PopUpManager.removePopUp(this);
                    {what should i write in here . . .} 
                private function Init():void{
                    var url:String = sourceVideo; 
                    Security.allowDomain(url);                                          
                    youtubevid.load(url);                                                
            ]]> 
        </mx:Script> 
        <mx:SWFLoader 
            id="youtubevid" verticalAlign="top" 
            horizontalAlign="center"   
            width="100%" height="100%" 
            /> 
    </mx:TitleWindow> 
    videoTutorialx.xml
    <?xml version="1.0" standalone="yes"?>
    <VideoTutorial>
      <myvideo>
        <titleVid>Tutorial After Effect</titleVid>
        <imageVideo>assets/videoThumbnail01.jpg</imageVideo>
        <urlVid>http://www.youtube.com/v/Gq5jTY76slU</urlVid>
      </myvideo>
      <myvideo>
        <titleVid>Tutorial Wayang</titleVid>
        <imageVideo>assets/videoThumbnail02.jpg</imageVideo>
        <urlVid>http://www.youtube.com/v/7PrXlEJb-0Y</urlVid>
      </myvideo>
      <myvideo>
        <titleVid>Tutorial premierre</titleVid>
        <imageVideo>assets/videoThumbnail03.jpg</imageVideo>
        <urlVid>http://www.youtube.com/v/XsdJA3AweXE</urlVid>
      </myvideo>
      <myvideo>
        <titleVid>Tutorial sound audio</titleVid>
        <imageVideo>assets/videoThumbnail04.jpg</imageVideo>
        <urlVid>http://www.youtube.com/v/vCWSUVi-bII</urlVid>
      </myvideo>
      <myvideo>
        <titleVid>Tutorial masking</titleVid>
        <imageVideo>assets/videoThumbnail05.jpg</imageVideo>
        <urlVid>http://www.youtube.com/v/wyXxIMWjdA4</urlVid>
      </myvideo>
      <myvideo>
        <titleVid>Video Show off</titleVid>
        <imageVideo>assets/VideoTutorial/videoThumbnail06.jpg</imageVideo>
        <urlVid>http://www.youtube.com/v/1nFXms0pqF8</urlVid>
      </myvideo>
    </VideoTutorial>
    i attach source code here...im waiting for your reply...thank you very much

    A player can not run like that but I was not trying for one night.
    iyi izle video izle izlesene facebook izlesene iyi izle youtube

  • Graphical glitches in YouTube HTML5 player

    When I've been playing YouTube videos lately, I've noticed that a bunch of black boxes have been appearing over the player interface (The controls below the video) while the video is playing. Unfortunately, I can't provide a good screenshot, as the boxes come and go too quickly for me to get them. This issue still occurs if I restart Firefox in safe mode. I think it started happening with Firefox 37.

    ''guigs2 [[#answer-717759|said]]''
    <blockquote>
    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    '''If Firefox is open,''' you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    '''If Firefox is not running,''' you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    ;[[Image:SafeMode-Fx35]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    </blockquote>
    As stated above, the issue persists in safe mode.

  • YouTube & flash player

    Whe I try to view video's on you tube it says i need uodated flash player ? can i download upgrade on my iphone ? if I click get new software and then go back to page sometimes the video plays and other times it goes to download update page ?
    how can i fix this ?

    1. You cannot download and install programs onto the iPhone.
    2. There is no flash player for the iPhone (Adobe said sometime next year after the SDK gets released)
    3. You watch YouTube videos via the YouTube application they provided on your home screen, not via the website. The application lists those videos that are formatted to work on the iPhone as not all YouTube videos can play with the new required format and they are continually converting them so they can.
    (the reason some work via the web page is because they happen to be in the right format)
    Message was edited by: DaVBMan

  • Flash Player doesn't play smoothly and out of sync in full screen

    Hello! Everyone
    The flash player (11.2.202.235) does not play smoothly and in full screen audio and vidoe is out of sync.  I didn't use to have any problem at all, it only started about two weeks ago and since then despite trying various things (i.e. disabling hardware excelration, uninstalling & reinstalling, trying various browsers etc.) has not resolved the issue.  I don't know why it has suddenly stopped playing smoothly as I have not installed any software recently which might have cuased this. 
    I am using Windows XP (service pack3) and have dual partion with dual operating system (both XP).  There is the same problem on both operarting system and flash player won't run smoothly on either of them.  Although my computer and graphics card is quite old but the downloaded movies/DVD playback is fine even in full screen.  It runs smoothly and audio&video is in sync so I don't think it could my the graphics card. 
    As I mentioned I have tried all the browsers but without any luck.  The BBC iplayer plays ok most of the time if not in full screen but as soon as you make it full screen the vidoe is more like a slide show and very jittery and audio&video gets out of sync.  Same with youtube vidoes, they play ok when not in full screen but the video in full screen does not play smoothly and audio&vidoes gets out of sync.  However the ITV player & Channel 4 content on 4OD does not even play smoothly when not in full screen and the video&audio is out of sync all the time. 
    It would be really helpful if anyone can suggest anything to resolve this issue as I have not been able to find anything on the internet to solve the problem and its driving me up the wall.  Although I have tried to include as much details as I could think of so please let me know if I have missed any details that could be crucial in order to identify the problem.
    Thank you very much for reading this and taking the time to reply and your feedback. 
    Below is the DxDiag report for my laptop:
    Time of this report: 4/22/2012, 00:15:58      
    Machine name: TIMES-LAPTOP   
    Operating System: Windows XP Professional (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_gdr.111025-1629)           
    Language: English (Regional Setting: English)
    System Manufacturer: TimeComputers       
    System Model: VT8372               
    BIOS: Insyde Software MobilePRO BIOS Version 4.00.01          
    Processor: mobile AMD Athlon(tm) XP 2000+,  MMX,  3DNow, ~1.7GHz             
    Memory: 1248MB RAM          
    Page File: 809MB used, 2790MB available        
    Windows Dir: C:\WINDOWS    
    DirectX Version: DirectX 9.0c (4.09.0000.0904) DX
    Setup Parameters: Not found     
    DxDiag Version: 5.03.2600.5512 32bit Unicode 
    ------------ DxDiag Notes ------------  
    DirectX Files Tab: No problems found.      
    Display Tab 1: No problems found.        
    Sound Tab 1: No problems found.          
    Music Tab: No problems found.          
    Input Tab: No problems found.        
    Network Tab: No problems found. 
    -------------------- DirectX Debug Levels --------------------
    Direct3D:    0/4 (n/a)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (n/a)
    DirectMusic: 0/5 (n/a)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail) 
    --------------- Display Devices ---------------        
    Card name: S3 Graphics ProSavageDDR               
    Manufacturer: S3 Graphics Co., Ltd.        
    Chip type: S3 ProSavage DDR         
    DAC type: S3 SDAC       
    Device Key: Enum\PCI\VEN_5333&DEV_8D04&SUBSYS_83751071&REV_00   
    Display Memory: 32.0 MB     
    Current Mode: 1024 x 768 (32 bit) (60Hz)          
    Monitor: Digital Flat Panel (1024x768)   Monitor Max Res:       
    Driver Name: s3gnb.dll   
    Driver Version: 6.14.0010.0025 (English)      
    DDI Version: 9 (or higher)
    Driver Attributes: Final Retail 
    Driver Date/Size: 3/2/2004 14:02:26, 402048 bytes      
    WHQL Logo'd: Yes   WHQL Date Stamp: n/a              
    VDD: n/a         
    Mini VDD: s3gnbm.sys    
    Mini VDD Date: 3/2/2004 14:02:30, 167040 bytes
    Device Identifier: {D7B75DD3-CE44-11CF-D873-7FA3A1C2CB35}        
    Vendor ID: 0x5333        
    Device ID: 0x8D04        
    SubSys ID: 0x83751071      
    Revision ID: 0x0000      
    Revision ID: 0x0000      
    Video Accel: ModeMPEG2_C ModeMPEG2_A ModeMPEG2_D  
    Deinterlace Caps: n/a         
    Registry: OK     
    DDraw Status: Enabled       
    D3D Status: Enabled       
    AGP Status: Enabled DDraw
    Test Result: Not run 
    D3D7 Test Result: Not run 
    D3D8 Test Result: Not run 
    D3D9 Test Result: Not run 
    ------------- Sound Devices -------------            
    Description: Vinyl AC'97 Audio (WAVE) 
    Default Sound Playback: Yes 
    Default Voice Playback: Yes            
    Hardware ID: PCI\VEN_1106&DEV_3059&SUBSYS_83751071&REV_50        
    Manufacturer ID: 1             
    Product ID: 100                   
    Type: WDM            
    Driver Name: vinyl97.sys         
    Driver Version: 6.14.0001.4170 (English)      
    Driver Attributes: Final Retail            
    WHQL Logo'd: Yes          
    Date and Size: 8/10/2006 07:32:14, 204672 bytes            
    Other Files:         
    Driver Provider: VIA Technologies, Inc.         
    HW Accel Level: Full              
    Cap Flags: 0xF5F    
    Min/Max Sample Rate: 8000, 48000 Static/Strm
    HW Mix Bufs: 1, 0  Static/Strm
    HW 3D Bufs: 0, 0              
    HW Memory: 0       
    Voice Management: No  EAX(tm) 2.0
    Listen/Src: No, No    I3DL2(tm)
    Listen/Src: No, No Sensaura(tm)
    ZoomFX(tm): No               
    Registry: OK      
    Sound Test Result: Not run 
    --------------------- Sound Capture Devices ---------------------            
    Description: Vinyl AC'97 Audio (WAVE)  
    Default Sound Capture: Yes  
    Default Voice Capture: Yes            
    Driver Name: vinyl97.sys         
    Driver Version: 6.14.0001.4170 (English)      
    Driver Attributes: Final Retail          
    Date and Size: 8/10/2006 07:32:14, 204672 bytes              
    Cap Flags: 0x41           
    Format Flags: 0xFFF 
    ----------- DirectMusic -----------        
    DLS Path: C:\WINDOWS\SYSTEM32\drivers\GM.DLS     
    DLS Version: 1.00.0016.0002    
    Acceleration: n/a           
    Ports: Microsoft Synthesizer, Software (Not Kernel Mode), Output, DLS, Internal, Default Port                  
    Vinyl AC'97 Audio (WAVE), Software (Kernel Mode), Output, DLS, Internal                  
    Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal                  
    Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal        
    Registry: OK     
    Test Result: Not run 
    ------------------- DirectInput Devices -------------------      
    Device Name: Mouse         
    Attached: 1    
    Controller ID: n/a
    Vendor/Product ID: n/a        
    FF Driver: n/a       
    Device Name: Keyboard         
    Attached: 1    
    Controller ID: n/a
    Vendor/Product ID: n/a        
    FF Driver: n/a 
    Poll w/ Interrupt: No         
    Registry: OK 
    ----------- USB Devices -----------
    + USB Root Hub |
    Vendor/Product ID: 0x1106, 0x3038 |
    Matching Device ID: usb\root_hub |
    Service: usbhub |
    Driver: usbhub.sys, 4/13/2008 19:45:37, 59520 bytes |
    Driver: usbd.sys, 8/23/2001 13:00:00, 4736 bytes

    Would you mind opening a new bug on this at bugbase.adobe.com?  Please include your dxdiag report, a specific URL and a link to this forum thread.
    In the meantime, you might want to try our 11.3 beta or rollback to a previous version of the player to see if that resolves the problem.
    Thanks,
    Chris

  • Can watch youtube videos w/o a problem, but all I get is a white screen everywhere else

    Videos from youtube are the only videos that I can view from my computer.  When I try to view videos from anywhere else (Facebook or anyother website) all I can see is a white screen.  I can usually still hear the audio and sometimes the picture will flash in and out when I move the mouse back and forth across the video.  Anyone have any ideas what my problem might be? I have Internet Explorer 9, windows 7 64 bit system. Any help would be appreciated.

    I have the same thing going on with my computer.  When I click the vide to play it the screen whites out and I can see shadows of whats on the screen and can hear audio but the screen whites out.  I can watch the video on Youtube's site just no where else.
    I've tried uninstalling and reinstalling Adobe flash player, I've run CCleaner, antivirus, checked drivers, gone back to a restore point...
    So far nothing's worked.

  • Windows Media Player 12, Windows 7 does not play AVCHD (.mts) video in embedded mode, but does in normal mode

    I've run into a problem with WMP 12 on Windows 7 involved in playback of AVCHD files.  When run in 'normal' mode from Windows Explorer, WMP opens the video file and plays it back beautifully.  However, I'm building an application with
    WMP embedded.  When running WMP from within the application (c#), the same AVCHD plays audio but no video.
    I've seen this type of problem before with respect to audio playback of mp4 files in WMP from embedded-mode:  the MP4 license prohibited audio playback when run from embedded mode but played the audio fine when WMP was launched from explorer.
     I was able to solve this particular problem by using a 3rd party codec pack.
    In this case, I've tried a number of packs K-Lite, etc., but to no avail.  My problem persists.  I suspect perhaps I've encountered a similar licensing-type issue with a SONY CODEC and the state in which WMP is playing back files but I
    have not yet been able to track it down.
    Any ideas?

    Hello,
    It seems that you are using the Windows Media Player control in a window form forum, 
    as far as I know, the Windows Media Player control does not raise an exception when it encounters an error such as an invalid URL. Instead, it signals an event. Please try to set an event to try to catch the expcetion as described in the link below:
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd562851(v=vs.85).aspx
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I enlarge or reduce the size of the on-screen image?

    I used to be able to reduce or enlarge the screen in order to get an entire image onto the screen. Now, I cannot find any button anywhere to do this. What have you done with it? I can't even find a "tools" button anywhere....

    You're welcome
    You can use one of these extensions to adjust the default font size and page zoom on web pages:
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • When I try to enlarge pictures in iPhoto I get a black screen with an triangle with a "!".

    My iMac hard drive crashed and I reloaded Lion and applications including iPhoto. I reloaded the iPhoto database from a backup hard drive. When I open iPhoto I can see my pictures in their events groups. However, when I try to enlarge them I get a black screen with an traingle with an "!". How do I correct the problem.

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    Regards
    TD 

  • I emailed a youtube video while on FaceBook and now safari doesn't load any images - screen is completely blank and I've tried lots of websites. What happened?

    My screen is completely blank while on Safari despite having tried many websites. This happened while I was logged into Facebook and had emailed a YouTube video that was posted on a friend's page. Settings seem to be fine. Images still load when I'm on my email, photos, youtube, etc. What to try next?

    Have you tried resetting your iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

  • Flash player eats up memory until it crashes, can't watch full SWF

    Can anybody please help me out with this. I have a 180mb SWF which is a lecture from one of my online classes, when i try to watch it i can watch about 20 minutes and then it will run out of memory. I watched in my task manager as Flash player went from only using 20mb to upwards of 500mb to 1000mb and it kept going up, it's like the more i watch it just keeps going up and up. Tried it on 3 different computers and still get the same problem, is there some reason this would be happening?  Why does flash player eat up so much memory?  I have Adobe Flash CS4 installed so it's playing through the player not a web browser or anything. 
    (tried it in web browser and it does the same thing)
    Please help i have a test coming up!
    Thank you!

    Hi,
    Based on my understanding it seems that there is a problem with the coding from your Flash Animation. I am not quite sure how that animation was created. Is there an embedded video in it? Did you create it? I just wanted to get more details about the file.
    Thanks,
    Vicente Tulliano.

  • My iPad mini has recently begun to restart itself at random intervals, like on the lock screen or while in YouTube. Before it reboots itself a few faded lines jut across he screen, then it goes black, and the apple logo appears, and it resets. Help?

    It is severely frustrating

    Hello, Crazyrz1. 
    Thank you for visiting Apple Support Communities.
    Here are some helpful troubleshooting steps to go through when experiencing this issue.  These steps are labeled for the iPhone, but they will apply to your iPad as well.
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    If the issue persists, see the section labeled Issue not resolved.
    Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Cheers,
    Jason H.

Maybe you are looking for

  • Problem with DB sequences - Annoying

    Hi All, I have a target table and for one of the columns (which is not null), I am using a Db sequence as the mapping (abc_seq.nextval). It is set to Target. What happens is that sometimes when the interface runs, it runs without any issues..but some

  • Passing value to jsp page by clicking a hyperlink

    I have a hyperlink in a jsp page1. The hyperlink is for another jsp page2. I have a string value in JSP page1, which I want to pass to jsp page2 when user clicks the hyperlink. Can anyone tell me what will be the suitable way to do this? Thanks.

  • Bw implementation phases

    Hi gurus,   In a bw implementation project 5 phases are there. As a bw consultant in that five phases what is our responcibilities. points will be assigned. Thanku

  • When will be the rewards given fror reaching mile stones

    Hi, I have reached 256+ points milestone. So when and where will the T-Shirts be given. I just wanted to know this. Cheers, Karthick

  • What are the iBooks Author hard/software requirements

    My wife is an author of some midlevel fantasy books that are doing well in paperback and eBook so she wants to get them on iBooks but to do so I need to get a Mac for her; I was going to pick up a used Mac but cannot find any info on the hardware req