Full flash browser - background

I am a very inexperienced actionscripter so any help here
would be great. I am trying to load a random background in a flash
clip, and resize that into the full browser dimensions. What I have
working now is an "unscaled" resize... The background clip image
distorts. This is fine for a gradient or solid color, but not
working for images. Any ideas?

Just add a flvcomponent without skin to the background and use the below code on the timeline.
import flash.display.StageAlign;
import flash.display.StageScaleMode;
stage.align     = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;

Similar Messages

  • A humble request and (explanation) on full Flash s...

    We are living in the times when internet is in our pockets. Yet we have a crippled web browsing experience. Without full flash support, we are unable to do most of the work, communication, information gathering, nor enjoying entertainment sites.
    In the modern days of internet where speed is the most important issue, website developers just can't deal with mobile versions of websites. Not even the biggest sites, like CNN have a capable and usable mobile site.
    Yet, our Mobile phones, such as nokia 5800 (and also the rest of the communicator-like phones) with a serious browsing capability is discriminated because the websites recognize them as "mobile" phones. Most of the time you're not even able to browse the "normal" website and get the same experience to move around and even see the same information on your mobile phone.
    I'm also experiencing browser application issues. Freezes, hungs, because the site cannot coop with the disabled flash light. It starts to load the data, you able to see the flash box and then the browser just stops working. After a long time of exercise on different sites, such as youtube I'm convinced that flash 10 even bring our browser to its knees. The new flash 10 videos totally killing the browser on my nokia phone. And this is not firmware, not memory nor website related problems. It's incompatibility where the site and the browser just unable to coop.
    PLEASE NOKIA, TIME TO FIX AND UPDATE BROWSERS IN NOKIA SMART PHONES INCLUDING 5800!
    GET RID OF DISCRIMINATING OUR MOBILE DEVICES AS A "CRIPPLED" INTERNET BROWSER AND GIVE US THE FULL WEB-EXPERIENCE.
    I'm sure every user agrees with me on this topic.
    I was a faithfull nokia owner in the past 10 years (!!!!). I spent a lot of money on my phones. I always bought them even with limited information on the capabilities because I was trustful about the quality and feature-rich products. However if this issue will not be fixed on this particular phone because of whatever reason, be it as technical issue (the phone is not prepared for such internet experience), or be it as a way of lacking in development (never ment to handle such internet experience at all) then I have to leave nokia for good.
    This is not "silly warning" or an angry and frustrating finger pointing. It just the fact that if Nokia forcing me to swap phone, then I cannot trust a company with such business decisions to limit the timespan of their phone in such a way, that would generate more money for them. If this is not the case and we able to finally use our phone as it should work since the beginning then we will be the happiest buyers and supporters on earth.
    Hope this message reaches the people who need. I'm also trying to send this to the customer support in the good hope that finally we will see some advancement on this topic. I think we, the users, were quiet patient up until now (a year or so passed and still no sollution on this).
    Sincerely yours,
    H0PE

    Skyfire - not bad, not bad. Some memory handling issues there, many times I have to close and reopen skyfire totally in order to play a flash based video (experienced this after playing around with it for like 15-20minutes, the outcome usually this problem). The sound and picture start "jumping around", back and forth in 5-10seconds intervall of the movie. Seems like chaching problem, buffer overrun or something. Otherwise its usable on a level to check some quick news on cnn and some flash based sites. For long term use its still a no go.
    Bolt - not fully supporting touch screen mobiles it seems the latest version didn't handle my input very well. I could only close it and select configuration menu but the rest was not responsive and the app. thought all the time that I wanna configure it.
    Opera mobile 10 - at least 5x slower than normally should. Memory handling issues probably. The same site in opera mini or skyfire opens up lets say in 10sec, in opera 10 it takes 50+ second. Also flash isn't working well there either.
    These are good and important projects for the future, no doubt. But without a proper "backbone" -that the firmware and OS should give- they are destined to be flawed. And that means on long term its frustrating and clumsy to use them.

  • Flash with background sound (I got error #2037)

    Hallo.
    I am a beginner at AS3 programming. I like to make a flash with background sound (*.mp3 files from *.xml list). Everything works fine, but when I press "onClick" button I got output error.
    Error: Error #2037: Functions called in incorrect sequence, or earlier call was unsuccessful.
        at flash.media::Sound/_load()
        at flash.media::Sound/load()
        at proov_fla::MainTimeline/F_MP3_laadimine()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()
    My Script:
    var MP3_PLAYLIST:String = "playlist1.xml";
    var LAADI_MUUSIKA:URLRequest;
    var MUUSIKA:Sound = new Sound();
    var MUUSIKA_KANAL:SoundChannel = new SoundChannel();
    var HETKE_MUUSIKA:Sound = MUUSIKA;
    var POSITSIOON:Number;
    var HETKE_INDEX:Number = 0;
    var KAS_MUUSIKA_MÄNGIB:Boolean = true;
    var XML_FAIL:XML;
    var MUUSIKA_NIMEKIRI:XMLList;
    var MP3_LAADIJA:URLLoader = new URLLoader();
    MP3_LAADIJA.addEventListener(Event.COMPLETE, F_MP3_laadimine);
    MP3_LAADIJA.load(new URLRequest(MP3_PLAYLIST));
    onClick.addEventListener(MouseEvent.CLICK, järgminelugu);
    function järgminelugu(e:MouseEvent):void
        MP3_PLAYLIST = "playlist2.xml";
        MP3_LAADIJA.load(new URLRequest(MP3_PLAYLIST));
    function F_MP3_laadimine(e:Event):void
        XML_FAIL = new XML(e.target.data);
        MUUSIKA_NIMEKIRI = XML_FAIL.track;
        LAADI_MUUSIKA = new URLRequest(MUUSIKA_NIMEKIRI[0].path);
        MUUSIKA.load(LAADI_MUUSIKA);
        MUUSIKA_KANAL = MUUSIKA.play();
    My full purpose will look like this http://uusrand.pri.ee/galerii/proov/

    Hallo.
    Can anybody help me to add an actionscript line(s) into attach file "newXML.fla".
    In this file I have a script to play mp3 files from xml list (this works).
    I also add button to load new mp3 fileslist from new xml file. But I don't know how.
    My Script:
    var MP3playlist:String = "http://uusrand.pri.ee/mp3/playlist.xml";
    var MP3file:URLRequest;
    var MP3SoundURL:Sound = new Sound();
    var MP3sound_channel:SoundChannel = new SoundChannel();
    var xml:XML;
    var playlist_index:XMLList;
    var xml_loader:URLLoader = new URLLoader();
    var MP3index:Number = 0;
    xml_loader.addEventListener(Event.COMPLETE, originalXMLfile);
    xml_loader.load(new URLRequest(MP3playlist));
    onClick.addEventListener(MouseEvent.CLICK, nextXMLfile);
    function nextXMLfile(e:MouseEvent):void
        if (MP3playlist == "http://uusrand.pri.ee/mp3/playlist_loodus.xml") {
            MP3playlist = "http://uusrand.pri.ee/mp3/playlist.xml";
        } else {
            MP3playlist = "http://uusrand.pri.ee/mp3/playlist_loodus.xml";
    function originalXMLfile(e:Event):void
        xml = new XML(xml_loader.data);
        playlist_index = xml.track;
        MP3file = new URLRequest(playlist_index[0].path);
        MP3SoundURL.load(MP3file);
        MP3sound_channel = MP3SoundURL.play();
        MP3sound_channel.addEventListener(Event.SOUND_COMPLETE, nextSong);
    function nextSong(e:Event):void
        if (MP3index < (playlist_index.length() - 1)){
            MP3index++;
        } else {
            MP3index = 0;
        var NextSongRequest:URLRequest = new URLRequest(playlist_index[MP3index].path);
        var NextSongURL:Sound = new Sound(NextSongRequest);
        MP3sound_channel.stop();
        MP3sound_channel = NextSongURL.play();
        MP3sound_channel.addEventListener(Event.SOUND_COMPLETE, nextSong);

  • How can i change my Browser background image size in Iweb???

    Hello,
    I am trying to upload a picture to use in iweb as browser background which will be fixed.
    The problem is that when i upload the image it doesn’t appear in full. It zooms in a portion of the image.
    This is really annoying and have been trying to change it for days.
    Have a look and it might give you a better idea http://www.inthepocketdrumstudio.com
    Can anyone help please?
    Thank you. A

    I really do not know what resizing the browser windows means.
    Perhaps I must go back to school again.
    Ah, I remember. Drag the bottom right-hand corner of the browser window to resize it.
    Anyway, here's the widget page :
    http://www.inthepocketdrumstudio.com/InThePocketDrumStudio_files/widget0_markup. html
    You should move the image out of the InThePocketDrumStudio_files folder.
    With the code i provided the image will display in the webpage.
    Also remove the image as background in iWeb.

  • IWeb site browser background way off

    Hi, I have recently developed a website called VoiceFromHevin.com.  The site looks great on pretty much any computer browser.  However, on the iphone and ipad the browser background is completely off from where it should be.  If you go to the site on your ipad or iphone and go past the first page, you will see what I'm referring to.  The Welcome page looks just fine, it's after you enter into the rest of the site that things get crazy. Any help would be much appreciated.  Thanks!!

    The player requires the QuickTime plugin. Launch it in Firefox and you'll see.
    Both Flowplayer and JWLongtail will plsy in all browsers and on most devices...
    http://www.iwebformusicians.com/Website-Music-Players/Flow-Player.html
    http://www.iwebformusicians.com/Website-Music-Players/JW-Audio-Player.html
    If you want to put more than a couple of tracks on a page its better to use a playlist player...
    http://www.iwebformusicians.com/Website-Music-Players/XML-Playlist.html
    There are online site builders that specialize in portable sites and you could see if one of those has a suitable design. You would need to put a fingertip sized button on your regular site in an appropriate place so that portable device users could switch over to it.
    Wix are known for their flash sites but they now have a section for mobile sites...
    http://mobile.wix.com/
    They use the same liquid style layout that I have been experimenting with. I'm trying to refine the design to make it suitable for all devices and browsers - with a little help from my friends at Rage Software!
    There are quite a few ways of adapting sites for mobile devices from fairly simple to downright complicated. I'm trying to achieve a one size fits all with minimal code. The online outfits like Wix, Weebly etc product far too much code and their media players are not exactly state of the art.

  • Full screen browser stretch

    hello flashers-
    i am new and would like to learn how to make my all flash
    site "stretchy" - aka full screen browser. any suggestions?
    appreciate 'cha.

    Here's something I found
    http://www.broculos.net/tutorials/how_to_make_a_flash_animation_truly_fullscreen/20080314/ en

  • TV 40-46" 1080p 120hz with FULL internet browsing capacity

    It looks like there are only 2 tv makers that allow for the full internet access (LG and Sony).  I can't find a reasonably-priced sony KDL-40/46EX620 (sold out by BBuy).  KDL-40/46EX720, the next model seem to be at 60 refresh rate.  
    How does the blu-ray work?  can it allow the FULL access to the internet or is it only for connection to the pre-set locations, such as u-tube, netflix etc?  
    Another Q:  Do I need the smart TV to watch my downloaded movies?
    tnx

    Quote
    Let me just add some comments here that conflict with some info already provided.  First of all, Sony has not reverted to cheap parts to build their TVs, and they are not as bad as suggested.  However, I do agree that Samsung and LG LEDs have better quality, as do Panasonic plasmas (not their LCDs), and of course Pioneer hasn't made a TV in many years.
    The reference to the problems with 120 hz was to a four year old post that was indicating problems with 24 fps film based material.  Many of these problems have been alleviated in the past few years, however many people (me included) would turn this function off (which is always an option) when watching 24 fps material (such as Blu-Ray).  On the other hand 120 hz does do a very good job of reducing blur and providing a sharper image for tape based material, especially beneficial for all sporting events.  It is worth the extra cost.
    The reference to full web browsing by some manufacturers is probably somewhat of an overstatement, however those with a built in browser can link to well over 95% of the sites that google would bring up.  The most exceptions are major video providers such as ABC-TV, CBS-TV, etc.  The built in browser is still a plus for these TVs, but they won't totally replace your computer.
    The TVs with the browser are the higher ends of LG and Samsung (models 8000, 7000, and I think the 6900).  The nice thing about the Samsung models is that they include a full QWERTY keyboard on the flip side of the remote.  The Sony Google TV also has this capability, but I believe that it is overpriced and not as good quality of picture as the LG and Samsung models.
    End Quote
    Perhaps you can provide us with some verification of your poitns?  Particularly about the 120Hz.  For your information, 24p interpolation is the only time if might actually do some good!  So, you have it backwards. If you can provide any verification, other than from the manufacturers, that shows that it has any affect on motion blur, then post away.  Hint: Flashing the same image over and over does not make it sharper, and if motion interpolation is involved, the frames created in between the 60Hz broadcast frames are artificial, and cannot be sharper than the original.  SO, post away...I'll be interested...
    I guess you also have not used the browers that you reference that you claim can access 95% of websites that google brings up.  Startling numbers that go against both my real world experience and any testing/review/rating that I have ever known.
    As far as to the quality of Sony TV's you are entitled to your opinion, but with the high return rates, the high failure rates, and the legendarily bad Sony "customer Support", anyone who knows anything will recommend against them.  They *are* cheaply made.  They *DO* use inferior parts.  There sets *ARE NOT* competitive in picture quality to the other big name players.  Even a cursory, casual comparison will veryify this. 
    A full QWERTY keyboard is nice, but that does nto equate to a full browser.  The operative word is full....not borowser.
    Thanks
    If you find my post useful or informative, please click the icon below with the plus sign and star to give kudos. Thank you!

  • How to retrieve full flash solution from WSP if not than how to retrieve ascx files from Template folder in SharePoint 2013 ?

    How to retrieve ascx file from the Template folder in SharePoint2013
    My issue is, I have WSP only so I changed into zip and got my all web parts and also one dll file after that decrypted dll and got some C# code
    mixing with some system generated code but not ascx file that is for front-end part. So my question is how we can retrieve full flash solution if not, at least ascx files So if we were on SharePoint 2010 we could have got those file from __Template__
    folder but It’s on SharePoint 2013 and not able to get ascx.
    If we can do so, than will be easy to get the task to be done
    Suggestions would highly be appreciated. Thanks in Advance.
    Ashish

    Hi Amit,
    you can not move specific changes from Dev to production.
    but you can follow this process to make your workflow as it is as in Dev:
    Create a new workflow on the new list in Product.
    Create at least one step, one condition and one action in this workflow.
    1. In Dev server open your .xomal file as XML and copy the entire contents.
    2.In Production server Open your .xoml file as XML and Paste the entire contents
    3. repeat this operation for the xoml.rules file
    4.Double click the .xoml file for the new workflow to open the workflow in the Workflow Designer and click Check Workflow to verify no errors and then click Finish to ensure the workflow is saved.
    Whenever you need to make changes apply the same.
    Please Mark Answer and Vote me if it will to resolve your issue

  • Browser Background Color Not Drawing Completely

    On the web page I recently uploaded, the page does not draw the browser background color completely when it loads. The browser background color fills in to the bottom of the sized page, below there it is white.
    1. Modern Frame 2.0 - Blank
    2. Set Browser Background color to Blue
    3. Page background color either the same Blue or none at all. I've tested both ways.
    4. Manual resize always allows the browser background color to fill in properly.
    5. Footer on and off. Doesn't make a difference.
    After uploading to the web, clearing all my caches, it continues to fill in incompletely.
    What do you suggest I do to solve this?
    Thank you - Fabe

    Give us the URL for the site so we can examine it first hand. With out looking at the site you should change the theme to White theme which does not use files for background and therefore will not restrict the amount of space the background takes up. That's just a guess though.
    OT
    Message was edited by: Old Toad

  • Full screen images and full screen color background boxes are cropping horizontally.

    Full screen images aren't loading and full screen color background boxes are cropping horizontally. I'm forced to make my images a full screen slide show (of 1 image) to make it work, but then I lose the option to pin the image. Am I alone in this?

    Hello,
    I would request you to share the a url or few screenshot so that i can get better idea about the issue.
    To create a temporry url you can go to File > publish in muse.
    Regards
    Vivek

  • Browser background uploaded to my mac host but not my real website :( help!

    Hello,
    Thanks in advance for your help. Go easy on me, I'm not too technically savvy. So, a picture is worth a thousand words. I can't for the life of me understand why the browser background doesn't show up on my regular website. the other things that are missing are the little iweb elements. so weird. and lame.
    this is how it appears: http://www.hennalounge.com/Home.html
    this is how it should appear: http://web.mac.com/darcitananda/iWeb/HennaLounge/Home.html

    I can't for the life of me understand why the browser background doesn't show up on my regular website.
    For starters, make sure you have uploaded everything. Your url indicates that you failed to upload the folder called HennaLounge (plus the index.html file that iWeb creates alongside it). If you did that, you may well have forgotten other things as well. Make sure you use a real ftp program like Cyberduck and not some uploader provided by your host. When your site is fully uploaded, your url will look like this:
    http://www.hennalounge.com/HennaLounge/Home.html
    If you don't like the duplication, change your site name inside iWeb to "hl" or whatever and republish and reupload.

  • Why every time i tried to install iswifter Flash browser i had messege that it was unabel to procces the transactino??

    Why every time i tried to install iswifter Flash browser i had messege that it was unabel to procces the transactino??

    Contact the app developer and ask them.

  • Is Photon flash browser enable seeing flash player vidéos in Canada on I-Pad

    Is Photon flash browser enable to see canadien flash player vidéo as CBC télévision on I-Pad ?

    I can't address that specific app but, from what I've seen here on the forum, there isn't anything that works well with Flash.

  • Slow-loading browser background

    Good morning. I am attempting to create a website based on a booklet I published 25 years ago. The scanned pages of the actual booklet are my page background. Each page has an original photograph constituting the browser background.
    When viewing the site with Safari, Firefox, or Camino, the scanned pages load almost instantaneously, but the browser backgrounds, which I have reduced to 72 dpi using PhotoStudio, take between 5 and maybe 15 seconds to load. Is this normal? Is there a way to shorten the loading time?
    The address is http://web.mac.com/henrysummers/APinchofHistory,aDashofLegend.

    I use ImageWell to reduce image size as it gives you a visual indication of the reduction in download time as you move the slider. It saves a lot of time in getting the compromise between quality and speed.
    http://xtralean.com/IWOverview.html

  • Browser background not showing up on ipad or iphone

    I have published a site and the browser background (which is an important part of my design) does not show up on my ipad or iphone when I visit the sight. I have published several websites from iweb and their browser backgrounds show up on my ipad and iphone. Have they changed the software or am I doing something wrong?

    Your link, bluecollarmedia.com. does not work.  Neither does www.bluecollarmedia.com.  Go to your site and copy the URL from the browser's URL field and paste it in a new reply for us.
    OT

Maybe you are looking for

  • I create a CNiGraph control dynamically, But why havent I seen the Demo Mode Message Window?

    I am a licenced user of Mesurement Studio. I create a CNiGraph control dynamically. All work well. Then I copied my source code to another PC, I run "regsvr32 cwui.ocx", I found I can compile my source code on that computer, without any message box.

  • Apple TV - no audio

    I have a grewt picture but no audio, I'm on Mountain Lion, Hoem Sharing is on but nothing coming from my HDMI connection from Apple TV to my television. Any thoughts

  • Printing messages in invoices and credit notes

    Hi Sap gurus, The printing messages in invoices and credit notes must be changed due to a new law. Does anybody know the transaction used for this, please? Regards, Roger

  • Acrobat Reader: can't copy and paste Asian characters?

    I just get Roman letters and symbols on Notepad and Firefox after copying from Adobe Reader. Any solutions? I tried installing the Asian character *.msi font packages to no avail already.

  • Divide function

    Hi, Has someone already used the divide() mathematical function in the XPath expression builder? I can't find the right syntax. Thanks Olivier