Unload and stop question

I need to use the unload and stop method.  But  my actionscript code calls individual swf files which contain 1 video player  each. How would I add the unloadandstop methods into the  existing actionscript?
First question, add this code to the main.swf that is calling the swfs with thre players correct?
So far I would I add a second set of event listeners for this function, like this?
home.addEventListener("click",afterClick);
bio.addEventListener("click",afterClick);
commercial.addEventListener("click",afterClick);
films.addEventListener("click",afterClick);
videomontage.addEventListener("click",afterClick);
contact.addEventListener("click",afterClick);
function afterClick(e:MouseEvent):void
   unloadAndStop(what goes here?);
if so write separate functions for each swf being called? or call the same code
the variable remove child calls below?
("swfs/" + event.target.name + ".swf");
EXISTING CODE
var Xpos:Number = 0;
var Ypos:Number = 0;
var swf:MovieClip;
var loader:Loader = new Loader();
var defaultSWF:URLRequest = new URLRequest("swfs/home.swf");
loader.load(defaultSWF);
loader.x = Xpos;
loader.y = Ypos;
addChild(loader);
// Btns Universal function
function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
// Btn listeners
home.addEventListener(MouseEvent.CLICK, btnClick);
bio.addEventListener(MouseEvent.CLICK, btnClick);
commercial.addEventListener(MouseEvent.CLICK, btnClick);
films.addEventListener(MouseEvent.CLICK, btnClick);
videomontage.addEventListener(MouseEvent.CLICK, btnClick);
contact.addEventListener(MouseEvent.CLICK, btnClick);

var Xpos:Number = 0;
var Ypos:Number = 0;
var swf:MovieClip;
var loader:Loader = new Loader();
var defaultSWF:URLRequest = new URLRequest("swfs/home.swf");
loader.load(defaultSWF);
loader.x = Xpos;
loader.y = Ypos;
addChild(loader);
// Btns Universal function
function btnClick(event:MouseEvent):void {
    if(loader.content){
loader.unloadAndStop();
   removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
// Btn listeners
home.addEventListener(MouseEvent.CLICK, btnClick);
bio.addEventListener(MouseEvent.CLICK, btnClick);
commercial.addEventListener(MouseEvent.CLICK, btnClick);
films.addEventListener(MouseEvent.CLICK, btnClick);
videomontage.addEventListener(MouseEvent.CLICK, btnClick);
contact.addEventListener(MouseEvent.CLICK, btnClick);

Similar Messages

  • Unload and Stop swf from stage

    Hi,
    I'm a newbie to Flash and Actionscript. I need to give links to around 20 swf files via buttons from the menu.swf. I'm able to give links. But when I come back by clicking HOME button kept at the newly loaded swf the audio files are still being played at the background.
    Yes, It has got audio files playing at the back for each slide in the new swfs. When Click on the same link again in menu.swf again the files are being played with the unfinished old file. It's really hectic.
    I need to unload it completely from stage when I come back to menu.swf by clicking on HOME button from any of 20 categories.
    I used unloadAndStop but it is not doing. I hope that I'm commiting mistakes at somewhere but couldn't predict.
    Need some help !
    FOR HOME BUTTON:
    var _content:Loader = new Loader();
    function loadContent(content:String):void {
        if (_content != null) {
            _content.unloadAndStop(true);
            removeChild(_content);
            _content = null;
        var loader:Loader = new Loader();
        loader.load(new URLRequest(content)); //---->>>> I don't really know what should be put in this :-(
        _content = addChild(loader) as Loader;
    Home_Button.addEventListener(MouseEvent.CLICK, home);
    function home(event:MouseEvent) {
        _content.unloadAndStop(true);
        var homeSWF:URLRequest = new URLRequest("demo.swf");
        _content.load(homeSWF);
        addChild(_content);
    FOR MENU.swf button
    var loader:Loader = new Loader();
    Category1_Button.addEventListener(MouseEvent.CLICK, category1);
    function category1(event:MouseEvent):void {
        var Category1SWF:URLRequest = new URLRequest("Category1.swf");
        loader.load(Category1SWF);
        addChild(loader);

    Hi,
    Can this thread help us?
    http://forums.adobe.com/message/3739886
    I have seen you have replied to this. Would this give some idea ? Does this script serve the purpose ? I tried replacing the code with appropriate changes and looking like this.
    Home Button:
    var swf_loader:Loader = new Loader();
    ///unload previous swf
    swf_loader.unloadAndStop();
    removeChild(swf_loader);
    ////load new swf
    swf_loader.load(new URLRequest("menu.swf"));
    Home_Button.addEventListener(MouseEvent.CLICK, finishLoading);
    function finishLoading(e:Event):void{
    if(swf_loader.content){
    addChildAt(swf_loader, 0);
    but getting error as
    ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
        at flash.display::DisplayObjectContainer/removeChild()
        at Category1_fla::MainTimeline/frame55()
    I think I'm complicating the simple thing.
    Thanks.

  • HT1725 My purchase was stopped and security questions asked. I did not answer correctly and no options given to reset

    Song download interrupted and security question not answered correctly and now I'm here

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address then see if the instructions on this user tip helps : https://discussions.apple.com/docs/DOC-4551

  • System.totalMemory / unload / IE (2 questions)

    hello guys, i ve been playing with AS3 from a while and i
    noticed 2 things
    after a huge search i could find my answers, so tell me what
    do you think please.
    1/ i am trying to load images and monitor the
    System.totalMemory i noticed that even if i unload and remove the
    listner and give it 500 ms so the GC do its job but the unloaded
    images data are always there... please see the attached file u ll
    notice that the totalMemory (in the FLASH DEV ENVIROMENT) increase
    and increase and this is a small image what about if i am loading
    huge images...
    2/ talking about huge images well replace the img.jpg with
    something bigger and open your performance monitor and run the html
    page in IE notice that the memory consumed by the IE page increase
    and increase and never stop (its LIKE in the FLASH DEV
    ENVIROMENT)... but in FF or swf its ok .
    so the question here is the unload remove the data or what?
    or am i doing something wrong that make the GC never remove the
    data. And how would i manage the IE issue??
    FILE:
    Link
    Thanks

    Hi,
    I also facing the same memory problem.
    As you said in this case it works fine. But my case i am not
    loading images instead i load swf file which has sound embeded to
    the timeline as stream.
    According to this code, same memory management performs well
    for me also. but the sound in the unloaded swf is still audible and
    when i load the next swf, these all sounds mix up and i don't hear
    anything properly.
    To avoid the sound problem i added a line
    SoundMixer.stopAll() to getaway the problem, but after i added this
    line memory management got lost and my system gets hanged.
    import fl.controls.List;
    import fl.data.DataProvider;
    var tl:MovieClip = this;
    var loader:Loader = new Loader();
    var myList:List=new List();
    var dp:DataProvider=new DataProvider();
    tl.addChild(loader);
    addChild(myList);
    function loadNext(e:Event) {
    //loader.unload();
    loader.contentLoaderInfo.removeEventListener(Event.INIT,loadNext);
    tl.removeChild(loader);
    loader = null;
    loader = new Loader();
    tl.addChild(loader);
    var o=new Object();
    o.label=String(Math.floor(System.totalMemory/1024));
    dp.addItemAt(o,0);
    myList.dataProvider=dp;
    setTimeout(loadNow,100,null);
    //start loading
    function loadNow(e) {
    loader.contentLoaderInfo.addEventListener(Event.INIT,loadNext,false,0,true);
    loader.load(new URLRequest('img.jpg'));
    loadNow(null);

  • Start and Stop Trigger using PXI-6120 and DigitalSta​rtAndStopT​rigger.vi not working :-(

    Hello,
    I've been trying for a while now to get my PXI unit to capture a waveform between a Start and Stop (Reference) Trigger using the NI example DigitalStartAndStopTrigger.vi downloaded from the NI website. However, whilst the start trigger and stop trigger seem to be working i.e. the VI runs and stops at  the correct times there is never any data read from my DAQmx compatible PXI-6120 card. So I can see the VI is running around the aquisition loop but the Property Node AvailSampPerChan is always returning zero... this has me slightly puzzled. I thought this might just be a driver issue so I've updated my box to the following software versions (see below) and installed the latest drivers e.g. DCDNov07.exe (also from the NI site) but nothing has changed.
    my software as of now.
    Labview 7.1 (with the 7.1.1 upgrade applied)
    Max 4.3.0.49152
    DAQmx 8.6.0f12
    Trad DAQ 7.4.4f7
    before I updated I had the same problem but with the following versions:
    Labview 7.1 (with the 7.1.1 upgrade applied)
    Max 4.2.1.3001
    DAQmx 8.5.0f5
    Trad DAQ 6.9.3f4
    So to cut a long story short I still have the same problem with the triggers... does anybody have any ideas what is going wrong?
    To add insult to injury it the traditional DAQ example ai_start-stop_d-trig.vi was almost working correctly before I did the upgrade. It had the strange behaviour of capturing the AI0 channel but on the wrong edges (e.g. if I set Start on Rise and Stop on Fall it would do the opposite, Start on Fall and Stop on Rise).
    I'm going to leave my box doing a mass compile over night but i'd really like it if someone could suggest a solution or point me in the right direction.
    Many thanks,
    Mike

    Hi Graham
    I'm out of the lab today but I'll try and answer your questions as best I can...
    1) What are the values you have set for Buffer size, Rate, samples per read and post trigger Samples?
    At the moment I have all the values (e.g. sample rate, buffer size etc) unchanged apart from the ones I mentioned in my previous post (see above). I have in the past played around with changing the buffer sizes and rates in the example VI but as this appeared to have no effect on the behaviour I now have them setup as in the download.
    2) Does the program end after the stop trigger is implemented?
    Yep, if I toggle the trigger line high then low I see the program exits the read loop and the VI stops running as expected.
    3) Lastly can you give me the details of triggering method. Are you
    using a digital train of users set digital pulses? how long is the
    program running.I'm using the WriteDigChan.vi to manually toggle the first digital line of the PXI-6733 card which is wired directly to PFI0 of the PXI-6120 card. Generally, I just start the VI running  and then toggle the line high, wait a couple of seconds and then toggle it low.
    To me it all looks like it should be acquiring samples but as I said yesterday it just refuses to fill the buffer with any data (and hence no samples are read).
    Any ideas? and thanks for you help,
    Mike

  • Performance-testing-videos and general questions

    Hey,
    I've been trying to evaluate if it would be reasonable to use the packager for developing commercial products.
    I would like to show you some videos of my results.
    http://www.youtube.com/watch?v=lsprSZY-HEM   --> iPhone/iPod
    http://www.youtube.com/watch?v=HJNcz58690c   --> iPhone/iPod
    http://www.youtube.com/watch?v=5hH3vnhOWcs  --> iPad
    From my prespective this seems the maximum that can be done with the packager concerning performance.
    -There are 3 parallax scrolling background layers.
    -Scrolling is somewhat smooth
    -Performance is ok, gameplay in the demos doesn't feel sticky.
    -no slowdowns for up to max 30 enemy sprites on screen.
    - basic pixel based collision with an image is possible - though only for 2-3 sprites registered for collision at the same time.
    I am not a very profound programmer and i am sure a lot of my code could be optimized.
    What I would like to ask is:
    1) Has somebody been able to squeeze more out of the packager?
    2) Since packager apps have problems with multitasking on iOS and strategies to save and restore the apps state on reload/focus seem buggy - would it be professional to produce apps with the packager?
    3) If you start (and stop) several different packager Apps the device performance (iPhone/iPad) will come to a grinding halt because of memory issues when multitasking. So the question would again be, can you sell software that will only perform under certain circumstances?
    Those of you who have Apps in the store, have there been any negative comments on those issues?
    Please comment freely.
    Thanks,
    Simon

    in my opinion, flash is a viable option only if the application being developped
    1. is not graphic, memory or cpu intensive
    2. is trying to get rapid deployment into ios/android/wm7 market with relative ease
    3. relative easier programming/graphical UI (Flash much more user friendly than xcode)
    then yes flash is your solution.
    However the 1. thing varies greatly on hardware and what your app can achieve. the bottom line is that apps in flash are and will always be slower than native apps merely because it launches a flash player to run your app. hopefully next update can address the issue with performance rather than an API update pack.
    I would rather have better performance.

  • MacBook Pro battery had accumulated more than a 1000 charges, and stopped functioning unexpectedly. Went and got the battery replaced. Just saw that SMC Firmware 1.6 update deals with this. Possible to get my money back?

    MacBook Pro battery had accumulated more than a 1000 charges, and stopped functioning unexpectedly. Went and got the battery replaced. Just saw that SMC Firmware 1.6 update deals with this. Possible to get my money back?

    The firmware update corrects an error that may occur, however the techs would have checked the condition of the battery prior to installing a new one.  If the battery was questionable, the firmware update was really not too important.
    You can check the battery condition by going to the apple, left side of the menu bar, About This Mac, More Info, System Report, Hardware, Power and see what it says about Cycle Count, Condition, Capacity: Condition anything but Normal needs to be checked and may need to be replaced.
    The cycle count of 1,000 charge cycles is the typical life of a Lithium-Ion battery, the point at which the capacity drops to 80% of the as built capacity.

  • I have noticed an issue with utilizing the "stream" function on iOS 7. If you choose to just stream the movie by hitting the play button it seems to actually start downloading (which is fine) but if you are say halfway thru the movie and stop you can clea

    I have noticed an issue with utilizing the “stream” function on iOS 7. If you choose to just stream the movie by hitting the play button it seems to actually start downloading (which is fine) but if you are say halfway thru the movie and stop you can clearly see that storage has been reduced under the usage, yet under the “videos” tab it still states “No Data” the only way to delete what you have partially downloaded is to fully download the video, which is fine but there is no way to tell what videos have been partially downloaded (I.e which occurs a lot when your child switches between movies using the so called “stream” function). This becomes troublesome once the capacity of the ipad is almost met and you have no way to delete this data since you may have several videos that have started to be viewed (hence partially downloaded). Apple needs to somehow make it truly streaming or provide an update so the storage can be managed. The only way I have been able to remove partially downloaded videos is by doing a total software restore. (The video data that is in question when connected to my MacBook shows up in iTunes as “other”) if you have any insight into this issue it would be greatly appreciated. Thanks.

    Here are the screenshots for what it's worth.
    Not sure why I can't post them in the original post.<br>
    <sub><b>Mod edit: See [https://bugzilla.mozilla.org/show_bug.cgi?id=718813 bug 718813]</b></sub>
    '''Again, when I set my DNS server to automatically detect the servers both problems disappear and I have no issues at all.'''
    IMO opendns is either doing this on purpose (unlikely) or they're under some sort of attack/being used to attack the specific torrent sites although I'm open to other explanations. I believe using the automatic setting for DNS is using my own ISP's DNS servers (which again, work fine... but still...)
    I'd rather not use Google's public DNS servers as Google is to commercial these days and I think there's potential privacy issues.
    '''Again I have changed the setting for DNS servers back and forth several times to duplicate/verify the issue(s)... and the issues only happen with the opendns servers.'''

  • Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error, so you can load Firefox again.

    Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error. I have Windows XP (Media Center Edition) and all updates (Firefox, Adobe PDF, Microsoft, virus protection, etc) are installed. This has only been a problem since Firefox 4, and isn't a problem in Internet Explorer.

    Hi David,
    Thank you for your detailed question. It sounds like the real issue is pdf files. Are there any antivirus/firewalls that might be blocking this specific file type? or are there any preferences in your control panel that might be blocking this?
    Do you have any stored preferences for PDF files in Firefox?
    *[[Applications panel - Set how Firefox handles different types of files]]

  • How to Unload and Reload a Composition into the same HTML page?

    TLDR:
    When loading multiple Compositions into a html page via AdobeEdge JavaScript, how do I remove/delete/unload a loaded composition so that it can be added/loaded to the same page again later? I am open to options not mentioned here, but this is done externally, not within Edge's limited code abilities (working with multiple comps on one page).
    *Note: I am making comps in Edge then loading multiple within my own JavaScript/HTML external pages. This programming is NOT done within Edge's code.
    Overview:
    I could have more than 50 compositions to load into my page, but only one is displayed at a time. In order to make this easier on the user, I load 5 into the page in divs with display: none. I set the id of the first one to an id that has my css to show the content properly. When clicking next, that div is set back to an ID that has hidden css values. Going forward and back works the same. This functions properly. This puts all the obvious preloading in the beginning so the user doesn't have to wait again, as comps are preloaded in the background while they are viewing other comps.
    As the user moves farther, I drop the first div and add one on the end with the next comp. This works fine. I can go forward all day, no problem by removing the first div element and adding one to the end. This should make memory not horrible, since theoretically, the comps would be removed as needed...
    Problem:
    The problem is if the user wants to go back. If I drop the last div and add one to the front, the comp (which was loaded and dismissed earlier) cannot be re-loaded. It also cannot be re-added, even if the div is cloned and re-added later.
    This is the code I am using to load the comps:
    $.getScript('comp_' + i + '_edgePreload.js', function() {});
    Options:
    The options I have thought of (and not found a way to make them work) in order of preference:
    Fully unload the comp from memory, that way when I make the call to load the comp, it will act as if it has never been loaded before. (Is there a way to unload a comp completely? I haven't found one, but the API is sorely incomplete) **I want this one to work very much.
    Ok, maybe you can't actually unload a loaded comp. Can you re-add it to a new div? I have printed out every option I could thru AdobeEdge's interface, and cannot find a way to re-make a div the way it was. Heck, I'd be happy to load the content into a non-child element in JS, then append to html when I actually want to display it. I can't find how to re-setup the div, which has the correct Class and is set up the way it was when the comp was loaded the first time. (this option is bad because it seems all of the comps are still in memory, but at least it would work)
    Worst case, I have tried this and ALMOST got it to work. When I removed the old divs from the page, I cloned them and added them to an array of objects in JS. Then, when going back, I pushed them back out, so it was an EXACT copy of the original div, all content was the same, all id, class, style, etc was the same. Unfortunately, AdobeEdge seemed to lose the ability to talk to it. (AdobeEdge.getComposition('EDGE-MyUniqueIdentifier').getStage(); // returns undefined). How do I tell it to re-associate the div with the object that still exists here? And obviously, this is an awful solution, since it appears that all of the comps stay in memory, but I was desperate to simply make it work somehow.
    If you need code examples of any of my attempts at the previous options (I have tried them all extensively, and unsuccessfully), I can provide it. I hope someone has found a way to deal with this or has links to actually useful information. Most posts I have found simply tell you to load all your comps and hide/unhide them as needed. This works for small-scale, but when you have a lot of comps to move between, it becomes less of a viable solution.

    Exactly the same problem here. Could anyone from EDGE TEAM answer to this question?
    How we can UNLOAD and LOAD same or another animation using SAME or DIFFERENT dinamically created DIVS?
    Affter loading the second animation AdobeEdge.getComposition('EDGE-MyUniqueIdentifier').getStage() returns undefined.
    Thanks for ther support.

  • When I click on Creative Cloud logo, indicator for time passing goes for a few seconds and stops, but app not opening (it used to).  Any ideas?

    I've never used this feature to ask a question.  Pardon not knowing etiquette and such.  When I click on Creative Cloud logo/icon on my desktop, the indicator for time passing goes for a few seconds and stops, but CC app not opening. 
    CC app used to work on this same computer a few months ago.  No changes to operating system.  Photoshop is still working.  Just wanted to download Lightroom and perhaps begin learning it, but to no avail.
    Tried to look for a way to reinstall Adobe CC, but it says I already have it.
    Any ideas?
    Thank you in advance,
    Timothy

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

  • TS3376 I had my iphone set up to be tracked as registered with iCloud and it had been using it for a year one day it said no devices registered and stopped working why???

    I had my iphone set up to be tracked as registered with iCloud and it had been using it for a year today it said no devices registered and stopped working even though i tracked the selected iphone 4 device an hour earlier why did it do this???

    So basically the phone I was tracking was working an hour earlier it had no signal at times when it did pick up a signal it located it easily but an hour later the message came up no devices registered when my friend returned home I Checked the device I was tracking to make sure find my iphone was on but it was off and my friend didnt turn it off so my question is why did it turn itself off???
    Confused?

  • Split valuation : 'start and stop'

    Friends,
    My simple question is when can we start and stop SPLIT VALUATION.
    how to stop/deactivate, with which situation of stock / PO etc ?

    HI
    Yes it is possible.
    TCode - OMWC.  &  from menu Goto -global catogory-assignements.-
    You can deactivate the valuation catagory for Plants...
    or with respect to vauation catogory u can deactive the valuation classes.
    Regards
    S B H

  • Flash Security Settings and Random Questions not Displaying

    Hey folks,
    I created a Captivate 4 project with 3 slides and a question pool of about 70 questions in which I am randomly pulling in. I am using IE7 and Flash 10. Publishing in Flash 10. If I publish or view in Preview in a web browser the project launches, plays the first 3 slides, and then goes blank when the first question should appear. Note: previewing the project AND publishing the project as an .exe does launch and display all the questions correctly. It ends up being a flash security issue. I went to the adobe site and via the Adobe Flash Player Security Manager" I entered in the main .SWF captivate-generated file as a trusted file and then re-ran the published captivate project and it ran correctly. Question is ... what do I need to do to set up flash or my project so I don't have to do this for every new project that I deploy? I don't want to have the users have to go in and add whatever I deploy as a trusted file. It's also a little confusing as to why the first three slides played and it stopped at the questions ... seems like if it's not a trusted file, that it wouldn't run at all.
    Thanks for any help!
    Chris

    Hello again
    I think I'd be investigating a temporary web server to host on until things are ready. Here's where it will help.
    By providing files to the end users, if you are copying files over you end up having to explain how to save the files. You then have to walk them through setting the Flash Security so they can properly view. It all just becomes a pain in the kazoo.
    If you can find some server space, you simply upload the content and provide a link for the users to view the content.
    Other than that, if you are insistent that copying is the way to fly, I might suggest you establish a known location where you want everyone to copy their files. Perhaps C:\TestFolder. Then provide some instruction on how to configure the folder with the relaxed Flash Security. From there forward, anything they copy to the folder should need no security adjustment.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • We have 3 locations coming up for our TV listings how do we make one the default and stop others?

    We have 3 locations coming up for our TV listings how do we make one the default and stop others?
    There is Bed Room, Living Room and Family how can we make ONLY FAMILY COME UP?
    When we check the listings or record from the TV Listing the LIVING ROOM comes up and only the Family has the controls to record.
    THANK YOU.
    Solved!
    Go to Solution.

    Please provide more details.
    What equipment do you have?
    Where do you see this listing? On STB? Online? Verizon App?
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

Maybe you are looking for

  • Can't style forms with CSS in DWCS6 / Need to add WYSIWYG menu

    Hello everyone, i put both my "problems" in a single topic: 1) I was trying to add some style to my pages with forms in them, but it seems it doesn't work so well.... i explain: i create a php page, i insert a form with text fields (username and pass

  • Side effects of using catmeta.sql?

    Not exactly sure where to put this, but I've been having problems exporting, mostly around the XMLGEN part. It seems that the solution would be to rebuild all the views and whatnot, but since this is a live database, I'd like to know if there are any

  • Missing zoom level?

    Having upgraded from Firefox 3 to Firefox 8 I am having trouble getting the same zoom levels as before. I used to make the text one level smaller than the default, but when I do that in Firefox 8 it is the same as when I made it two levels smaller in

  • Simple Layout Question

    I need to create an application with the following layout properties: a) It's always in the 4;3 ratio with default size of 800x600 and resizeable from 640x480 to 1024x768 b) It needs to be divided into left side that takes up 20% of space and right s

  • Illustrator cs4 error: Can't open the illustration. Can't print the illustration.

    Disk full error has occurred while it is printing. Has anyone else experienced this? I am running Illustrator CS4 on a Mac Snow Leopard. The error occurs when attemping to open any eps file on my computer, which are ALL of my Illustrator files, sigh.