New to action script 3 and am really confused

Hello and thank you in advance for helping if you can. I have a website banner that I made in flash. Everything works great and the last thing I need to do is add some script to it. One code is simple the stop action. So I added a new layer, called it actions and then clicked on the last frame inserted a blank keyframe and then opened the action window and typed in stop(); It worked great the banner cycled through once then stopped.
Now here comes the part that has me stumped. I need to make this banner link to an external website. so this is what I did. On the actions layer I clicked the first frame and opened the actions window, Oh first I have a block of text converted to symbol (movie clip) and named the instance click_mc, then in the actions script window this is what I typed
var link:URLRequest = new URLRequest("http://www.mojaveampworks.com/dirtyboy/DirtyBoy/Dirty_Boy.html");
click_mc.addEventListener(MouseEvent.CLICK, onClick);
function onClick(event:MouseEvent):void
navigateToURL(link);
click_mc.buttonMode = true;
Now when I run the movie it doesn't run at all. Any help with this would be greatly appreciated as I'm ready to through this whole project out the window. Sorry if this question is redundant but I am new with action script.
thanks

Hi Ned and thank you for responding.
I am not getting a compiler error but in the output I am getting this error: TypeError: Error #1009: Cannot access a property or method of a null object reference.
at dirtyboybnr2_fla::MainTimeline/frame1()

Similar Messages

  • I am new to Action Scripting

    Hi to all,
    I am new to action scripting.. i would like to know how to
    start programming in flash.. what are all basic things need to
    know..What is the Object Oriented Programming... is there any good
    tutorials to understand.. i am having basic knowledge please any
    one help me on this..
    Thank you all
    Satish Kumar Rajula
    Text

    you can start by reading the flash help files which include
    many examples of oop.

  • New to action script and getting: TypeError: Error #1009: Cannot access a property or method of a nu

    I am getting this message in the output tab for buttons that I am trying to create.  Here's the code:
    import flash.events.MouseEvent;
    stop();
    function goHome(myEvent:MouseEvent):void {
    gotoAndStop("home");
    SoundMixer.stopAll();
    function goAbout(myEvent:MouseEvent):void {
    gotoAndStop("about");
    SoundMixer.stopAll();
    function goBusiness(myEvent:MouseEvent):void {
    gotoAndStop("business");
    SoundMixer.stopAll();
    function goContact(myEvent:MouseEvent):void {
    gotoAndStop("contact");
    SoundMixer.stopAll();
    function goArchives(myEvent:MouseEvent):void {
    gotoAndStop("archives");
    SoundMixer.stopAll();
    function goBioTech(myEvent:MouseEvent):void {
    gotoAndStop("bioTech");
    SoundMixer.stopAll();
    function goRealEstate(myEvent:MouseEvent):void {
    gotoAndStop("realEstate");
    SoundMixer.stopAll();
    function goTechnology(myEvent:MouseEvent):void {
    gotoAndStop("technology");
    SoundMixer.stopAll();
    function goEnergy(myEvent:MouseEvent):void {
    gotoAndStop("energy");
    SoundMixer.stopAll();
    home_btn.addEventListener(MouseEvent.CLICK, goHome);
    about_btn.addEventListener(MouseEvent.CLICK, goAbout);
    business_btn.addEventListener(MouseEvent.CLICK, goBusiness);
    contact_btn.addEventListener(MouseEvent.CLICK, goContact);
    archives_btn.addEventListener(MouseEvent.CLICK, goArchives);
    bioTech_btn.addEventListener(MouseEvent.CLICK, goBioTech);
    realEstate_btn.addEventListener(MouseEvent.CLICK, goRealEstate);
    technology_btn.addEventListener(MouseEvent.CLICK, goTechnology);
    energy_btn.addEventListener(MouseEvent.CLICK, goEnergy);
    I ran the debugger and got this:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at peakInsights_fla::MainTimeline/frame1()[peakInsights_fla.MainTimeline::frame1:48]
    I guess it's telling me there's a problem with line 48 but what?
    The home, about, business, contact, and archives button works. On the business page there are the remaining buttons biotech, technology, real estate, and energy. when i test it; i get the finger but the buttons don't work. this is my first flash site so I'am new, new.

    I followed the steps and read some of your comments on the same top topic in another thread. When I put it on the first frame it was okay but the next button on that page had the same problem.  So what I am guessing is that I have to either create a document class or put the actions where the buttons are.  Am I understanding that correctly?  In the other thread in which you helped someone else; there was so comments about document class.  I found a tutorial on it and the way I understand it is that it you can put you actions in an external document.  But you have to include in the event listener the frame in which you want that action to happen.
    Thaks for your help.  And patience.

  • Action script 3 and adding code to buttons

    When I open a new doc and selct action script 3 it won't
    allow me to insert code by selcting the button on the stage. It
    does if I select action script 2. All my old pages update ok but if
    I make new buttons it wont take the code. CAn someone tell me what
    is going on???
    Thanks a lot

    If your in a bind at the moment, I would suggest not
    attempting to learn AS3. The system is very different, good, but
    different, the syntax structure is much more strict and most things
    have been revised to use a listener/broadcaster (or event
    dispatcher) model, as well as most coding being class oriented,
    additionally the graphic display structure is quite different.
    Now did you change your publish settings back to AS2? If so,
    you should still be able to apply the above code to a button
    instance. However, as Dave stated, even in AS2 the code is best
    used from the timeline, to do so with the code above (which the on
    handler above is meant for Object attachment) you need to write it
    like this:
    my_btn.onPress = function() {
    _root.loadMovie("graphic_arts/graphic_arts.swf");
    I would also consider using a MovieClipLoader and the
    loadClip method forloading swf files, as it gives you more control
    over the load targeting, progress reporting, and event
    notifications.
    All this said, to use a button and load a file in AS3, you
    need to add an event listener to the button instance and construct
    a responding function to the event, in this case the loading of a
    swf file. Additionally, in AS3 the MovieClipLoader class, as well
    as the loadMovie methods have been replaced by the Loader classes
    and must be used to load swf files. So construct a button in AS3
    you must write something like the following:

  • Action Script 3 and button instances

    Surprise suprise, got the new CS3 Flash, but still has both
    earlier ***, nevertheless, I did something, don't know what, didn't
    mean to switch to AS3 (maybe), and somehow the stop actions don't
    work anymore. I still published in AS2 for Flash 8 as before, but
    it is still screwed up and I don't know how to fix this mess.
    I read about it, did my research, but because I am not a
    programmer, just a designer, I don't understand what you mean by
    events won't work on button instances anymore and to put action on
    a keyframe??
    I have several buttons in my movie, so how do I put them on a
    keyframe and where???? And how is this keyframe going to know which
    button it belongs to??
    Am I missing something?

    If your in a bind at the moment, I would suggest not
    attempting to learn AS3. The system is very different, good, but
    different, the syntax structure is much more strict and most things
    have been revised to use a listener/broadcaster (or event
    dispatcher) model, as well as most coding being class oriented,
    additionally the graphic display structure is quite different.
    Now did you change your publish settings back to AS2? If so,
    you should still be able to apply the above code to a button
    instance. However, as Dave stated, even in AS2 the code is best
    used from the timeline, to do so with the code above (which the on
    handler above is meant for Object attachment) you need to write it
    like this:
    my_btn.onPress = function() {
    _root.loadMovie("graphic_arts/graphic_arts.swf");
    I would also consider using a MovieClipLoader and the
    loadClip method forloading swf files, as it gives you more control
    over the load targeting, progress reporting, and event
    notifications.
    All this said, to use a button and load a file in AS3, you
    need to add an event listener to the button instance and construct
    a responding function to the event, in this case the loading of a
    swf file. Additionally, in AS3 the MovieClipLoader class, as well
    as the loadMovie methods have been replaced by the Loader classes
    and must be used to load swf files. So construct a button in AS3
    you must write something like the following:

  • Action Script 3 and Color Management on PowerPC macs - Bug

    Dear Adobe,
    Recently I re-skinned my website and incorporated Actionscript 3 & Flash 10 so that I could incorporate Color Management for my images. I used sRGB as the image colorspace. On Intel CPU PC's (Mac and Windows) the website and images look good - as expected - on any browser (safari, firefox, ie). But, on PowerPC based Macs the website looks AWFUL. There is a blue/green tint across the whole webpage and the images look super saturated and whacky, regardless of browser (firefox / safari). Both powerPC macs I tested with are running OSX 10.5.7 and have Flash Player 10 installed.
    Can you explain why this is happening? See for yourself - http://www.stoqq.com
    Regards
    Nik.

    Dear Adobe,
    Recently I re-skinned my website and incorporated Actionscript 3 & Flash 10 so that I could incorporate Color Management for my images. I used sRGB as the image colorspace. On Intel CPU PC's (Mac and Windows) the website and images look good - as expected - on any browser (safari, firefox, ie). But, on PowerPC based Macs the website looks AWFUL. There is a blue/green tint across the whole webpage and the images look super saturated and whacky, regardless of browser (firefox / safari). Both powerPC macs I tested with are running OSX 10.5.7 and have Flash Player 10 installed.
    Can you explain why this is happening? See for yourself - http://www.stoqq.com
    Regards
    Nik.

  • Buttons and Action script 3

    I have purchased Flash CS3 and have created a small
    animation. I would like the user to press the button in order for
    the animation to play. With the previouse version of flash I would
    drag the button onto the stage open the action script window and
    start entering the script e.g. on(release){gotoandPlay(5);}
    However with the new version I cannot write scripts for the
    buttons.... I am confused or am I missing something? Please help me
    out.

    you're missing actionscript3. and if you don't care to learn
    and use it, just use the actionscript2 publish settings and use
    actionscript2 coding in your projects.

  • Action Script Import

    Hey Guys I love the idea and I know it is a daunting task to convert .fla into html5. I am working on removing any action script in any of my .fla files so that, 1: they may convert, but in doing so I realized that It may be possible to create a seperate stand alone action script...place it in the server, and the import said script into html5 the similar way you would when calling an image href, but the problem is... How if at all would I be able to import script into html5, and/or java for each individual scene related to a large .fla? My thoughts are I would need to create a new individual (Java class's) related to each individual action script scene and then import those into the html5 code! I am on track with the thought, or am I just crazy...
    In order to accheive this I would need to import the action script standalone into the root folder any recommendations?
    For example: stop(); frame 10 scene 1 layer Bck_Ground
    Then file name would be: layer 1 Bck_Ground.AS
    Java class  1Bckground. js
    .requires(
    bck_ground.as
    This only as an eample of thought not real code!
    and or the ssame ideal in HTML5?
    Could this work?
    Thanks James

    Then no offense to Adobe, but this to me is an intermediate way of creating an animated gif...Granted if I wanted to create a animated gif from.swf I have to go through several steps, but at least I don't get the annoyance of ".fla not supported"! My input to Adobe in your Wallaby creation is this...Please consider the creation of a re-write enging for pre-existing action script that will interpelate the data of each scene, and layer directly from the .fla, and then import it into several native languages that the user can select such as java, html5, possibly C, xml, and be compatible for Mobile Web, IOS, SDK, and Stand-Alone Java!, and export all media assets into a seperate file folder with the a fore mentioned extensions placed and housed with coresponding media...After-all none of us Flash Heads really want to re-write code the hours of code we spent developing for a product that can't or won't be seen by mobile applicatioins. If you can do that I would pay my top dollar for it...and I would think everybody else would agree with me! Thanks for your hard work...keep plugging along!
    James

  • Video Gallery Action Script 3

    I am creating a video gallery off of the demo action script
    3, video gallery, that is shown on this site. I have updated the
    XML file that contains the link to the thumbnails and videos to the
    appropriate url. When I test the project out, I get the following
    error:
    TypeError: Error #1085: The element type "video" must be
    terminated by the matching end-tag "</video>".
    at
    fvg::FlashVideoGallery/fvg:FlashVideoGallery::onDataHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    I am fairly new to Action Scripts and would really appreciate
    overcoming this hurdle.
    Thanks
    Ari

    arikanoa wrote:
    > I am creating a video gallery off of the demo action
    script 3, video gallery,
    > that is shown on this site. I have updated the XML file
    that contains the link
    > to the thumbnails and videos to the appropriate url.
    When I test the project
    > out, I get the following error:
    >
    > TypeError: Error #1085: The element type "video" must be
    terminated by the
    > matching end-tag "</video>".
    > at
    fvg::FlashVideoGallery/fvg:FlashVideoGallery::onDataHandler()
    > at
    >
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio
    > n()
    > at flash.events::EventDispatcher/dispatchEvent()
    > at
    flash.net::URLLoader/flash.net:URLLoader::onComplete()
    >
    > I am fairly new to Action Scripts and would really
    appreciate overcoming this
    > hurdle.
    >
    > Thanks
    >
    > Ari
    >
    > <?xml version="1.0" encoding="utf-8"?>
    > <!--
    > ***************************************
    > Settings.xml
    > Provides a configurable data source for the Flash Video
    > Gallery application.
    >
    > Configurable Settings:
    > - labels: exposes labels for localization.
    > - links: configure main screen links and resulting urls.
    > - filters(1): creates a list for filtering (up to 4
    filters).
    > - filters(2): creates an alternate list for filtering
    (up to 4 filters).
    > - videos: creates a list of video display information.
    >
    > Note: Text nodes are for localization and node
    attributes
    > are not. The exception is the 'url' attributes...
    >
    > Last Modified: March 2, 2007
    > ***************************************
    > -->
    > <flashvideogallery>
    >
    > <!-- Labels for localization -->
    > <labels>
    > <label name="title"><![CDATA[ActionScript 3.0
    Flash Video Gallery]]></label>
    > <label name="welcome"><![CDATA[<b>Click
    on a thumbnail to view
    > details</b>]]></label>
    > <label name="videoPreview"><![CDATA[Webvideo
    Preview]]></label>
    > </labels>
    >
    > <!-- Links for the main screen (up to 8 sidebar
    links) -->
    > <links>
    > <link name="textLink1"
    > url="
    http://www.adobe.com/products/flash/video/"><![CDATA[Learn
    more about
    > Flash video >]]></link>
    > <link name="textLink2"
    > url="
    http://www.adobe.com/devnet/flash/"><![CDATA[Visit
    the Flash Developer
    > Center >]]></link>
    > <link name="textLink3"
    > url="
    http://www.adobe.com/devnet/flash/articles/video_gallery.html"><![CDATA[Exa
    > mine the gallery source files >]]></link>
    > <link name="textLink4" url="
    http://www.adobe.com"><![CDATA[View
    more
    > examples of Flash video >]]></link>
    > <link name="textLink5"
    > url="
    http://www.adobe.com/products/flash/"><![CDATA[Learn
    about Flash CS3
    > Professional >]]></link>
    > <link name="textLink6" url=""/>
    > <link name="textLink7" url=""/>
    > <link name="textLink8" url=""/>
    > </links>
    >
    > <!-- Filter by list #1 (category radio button and up
    to 4 checkbox filters)
    > -->
    > <filters>
    > <filter name="radio1" view="1"><![CDATA[Filter
    videos by industry]]></filter>
    > <filter name="checkbox1" id="i0"
    view="1"><![CDATA[Content]]></filter>
    > <filter name="checkbox2" id="i1"
    view="1"><![CDATA[Entertainment]]></filter>
    > <filter name="checkbox3" id="i2"
    view="1"><![CDATA[Marketing]]></filter>
    > <filter name="checkbox4" id="i3" view="0"/>
    > </filters>
    >
    > <!-- Filter by list #2 (category radio button and up
    to 4 checkbox filters)
    > -->
    > <filters>
    > <filter name="radio2" view="0"><![CDATA[Filter
    videos by region]]></filter>
    > <filter name="checkbox5" id="r0"
    view="1"><![CDATA[Europe]]></filter>
    > <filter name="checkbox6" id="r1"
    view="1"><![CDATA[North America]]></filter>
    > <filter name="checkbox7" id="r2" view="0"/>
    > <filter name="checkbox8" id="r3" view="0"/>
    > </filters>
    >
    > <!-- List up to 36 videos for display in the gallery
    -->
    > <videos>
    > <video
    preview="thumbnails/Qlippit_3_Adam3_pix_to_grandP-26May07-0523PM.flv"
    >
    flv="video/Qlippit_3_Adam3_pix_to_grandP-26May07-0523PM.flv"
    filter2="r1"
    > filter1="i2">
    > <title><![CDATA[Creative
    Bubble]]></title>
    > <description><![CDATA[Creative Bubble needed a
    way to show their demo reels
    > to the largest audience possible with the best
    experience. Their solution is a
    > Flash-based UI that instantly streams video to their
    home page.]]></description>
    > <moreInfo url="
    http://www.adobe.com"><![CDATA[More
    info...]]></moreInfo>
    > </video>
    > </flashvideogallery>
    >
    1st. If you haven't already, get a nice xml editor such as
    http://www.wmhelp.com/download.htm
    free xmlpad editor for windows. Why? because it supports
    editing the
    dating in 3 different ways: Source <which has syntax/tag
    hilighting ,
    Grid , Table.. the grid is easiest to use and helps avoid
    deleting tags
    by mistake, which is what it sounds like you did based on the
    error
    message. If the above was a straight cut and paste of your
    xml file then
    you are missing
    the </videos> tag that belongs between
    </video> and </flashvideogallery>
    I have personally spent the last week playing with the
    example and
    modifying it to have a scrollbar so that i can show more than
    36 videos,
    and have edited the xml files to add more entries.

  • How to use fscommand or equivilant in action script 3

    Hello every one,
    I am new to action script 3, I want to burn my flash
    projector file on a CD so that when it plays it opens in full
    screen mode with movie size set to 100% and no scaling allowed. I
    use to do it with FScommand in previous versions but it doesn't
    work in flashcs3. Can someone help this poor soul how to use it in
    actionscript3.
    Thanks in advance.

    do a search for fscommand in the Flash CS3 help and look for
    a file heading called AS2.0 Migration Once you find that file, do a
    search for fscommand again inside the document.

  • Is somebody developing in Action Script under Arch?

    Hi!
    Not sure it's the right place to post this, but at work I had all the pain in the world to set up an Action Script development under Debian (that's the distro I am using at work) and finally had to work under Windows. There was no free IDE and it was impossible at least for me to install a debug version of flash.
    Now I am finding the possibilities of Action Script interesting, and would like to use it for some personal projects at home (where I run Arch). I am curious to know if someone else is using Action Script under Arch, and in which case, what are their setups and if they had any problem to install everything they need.
    Thanks!

    I used to code in ActionSrcipt.
    I never had any real problems with it and I have workded for over 15 years in Linux only OSes.
    I always used my prefered editor ( at the time it was vim I  think ) and then did all my testing in the browser by running the flash movie.
    The question you have to ask yourself is: Is it really worth for me to spend time with it?
    ActionScript is tyied to Flash ... and Flash is in it's "way out". Sure it will not disappear tomorrow but it's just a matter of time. Heck even Adobe acknolledge that...
    To me, if you just like coding ActionScript, then go to JavaScript. AS is just JS with adaptations to the movie playing engine of Flash.
    Hope this helps.

  • How do I Action Script buttons, so the objects lay on the prior object clicked on, in Flash?

    Here's my idea but having problems with the actions scripting:
    Accessories and build your car application in Flash.
    I'm new to the Action Script 3 and I am trying to Action Script my custom graphics for a “build your own car”. Something similar to the Harley Davidson motorcycle builder https://www.harley-davidson.com/en_US/Content/Pages/H-D1/Bike-Builder.html#/locale__en_US/ model__FLD/year__2013
    I have all the graphics (multiple photos, photoshopped and cut out for the different car body colors. I'm doing the same with the car rim choices, etc) All the graphics are sized so they will lay on top of one another seamlessly but I don't know how to Action Script 3 the buttons so you can click on (ex: rim1, or rim2 , etc and see how it looks on car by pulling up the photo on top of the existing background car photo) .
    How would I Action Scrip my "color button" to come up with 10 color swatches I’ve designed and then when you click on the color swatch (ex: red). It will then put the graphic red of the car body that I have already made on top of the existing background photo of the car and so on for each color button?
    Thanks for the help in advance!

    I'm not sure if I do know how to correctly create the Wheels classes and use action scripting. Are the classes you're referring to the parts I labeled btn1, btn2 below? Here's what I have under the main Timeline labeled actions:
    stop() ;
    // Color button code //
    colorbtn.addEventListener(MouseEvent.CLICK, btn1);
    function btn1 (event:MouseEvent) :void{
        gotoAndStop (2);
    // Rims button code //
    rimsbtn.addEventListener(MouseEvent.CLICK, btn2);
    function btn2 (event:MouseEvent) :void{
        gotoAndStop (3);
    //rim1 button code //
    rim1.addEventListener(MouseEvent.CLICK, btn3);
    function btn3 (event:MouseEvent) :void{
        gotoAndStop (4);
    I'm not sure how to fit your code in that you said in your first comment. The //rim1 button code // doesn't currently work.
    I think if I had a sequence of the action script 3 with a button/movie clip layed out for me, I could organize accordingly for my buttons and movie clips. Since they would work the same just would have to have different labels.

  • Transfer Action Script/Flash animation to DVD question

    I have created a countdown clock using ActionScript/Flash that counts down to a specific date when the .swf runs.
    My client has asked  if we can take  the Flash/Action Script clock and transfer it to a traditional DVD and have it work the same as if it were still flash on the desktop.
    Is this possible?

    No serverside script needed.
    If it helps (and you have the patience) here is the code:
    //onEnterFrame allows for a function to be called every tick this.onEnterFrame = function() { //Stores the current date var today:Date = new Date(); //Stores the Current Year var currentYear = today.getFullYear(); //Stores the Current Time var currentTime = today.getTime(); //Creates and stores the target date var targetDate:Date = new Date(currentYear,10,13); var targetTime = targetDate.getTime(); //Determines how much time is left.  Note: Leaves time in milliseconds var timeLeft = targetTime - currentTime; var sec = Math.floor(timeLeft/1000); var min = Math.floor(sec/60); var hours = Math.floor(min/60); var days = Math.floor(hours/24); //Takes results of var remaining value.  Also converts "sec" into a string sec = String(sec % 60); //Once a string, you can check the values length and see whether it has been reduced below 2. //If so, add a "0" for visual purposes. if(sec.length < 2){ sec = "0" + sec; } min = String(min % 60); if(min.length < 2){ min = "0" + min; } hours = String(hours % 24); if(hours.length < 2){ hours = "0" + hours; } days = String(days);  if(timeLeft > 0 ){ //Joins all values into one string value var counter:String = days + ":" + hours + ":" + min + ":" + sec; time_txt.text = counter; }else{ trace("TIME'S UP"); var newTime:String = "00:00:00:00"; time_txt.text = newTime; delete (this.onEnterFrame); } }
    It works by syncing the clock animation to the clock/time on the local computer and then beginning a countdown.
    Not sure why the clients want to have it work on a DVD but I am tasked with finding out if it's possible.
    Many thanks

  • Mapping action script object to mx:model object

    Hi all,
    I am having an action script class and an mx:model element
    with same elements. I want to assign an action script object to
    this mx:model. How can I do that one?
    Let me state it clearly.
    Say, my action script class contains two elements - user and
    rollno with required getter and setter methods.
    And I am having an mx:model element with the following
    format.
    <mx:model id="data">
    <data>
    <user/>
    <rollno/>
    </data>
    </mx:model>
    I want to assign an instance of action script class to this
    model object.
    I tried extending action action script class from Objectproxy
    and used data=actionscriptinstance.
    But it's not working properly.
    Is there anyway I can do this one?
    Thanks in advance

    The quick answer:
    <mx:model id="data">
    <data>
    <user>{ myASObj.user }</user>
    <rollno>{ myASObj.rollNo}</rollno>
    </data>
    </mx:model>
    The bigger question might be, "Why have the mx:Model?"
    The Model tag is all Strings, so you lose data typing.
    Why not just create a value object (VO) for your user data
    and pass that around?
    package samples.user {
    [Bindable]
    [RemoteClass(alias="samples.user.User")]
    public class User {
    public var user:String;
    public var rollNo:int;
    Then when the result data returns, cast to the VO.
    public var user:User = (eventObj.result as User)

  • Constant action script errors

    Please help me it will be much appreciated if you do. I have been having numerous amounts of action script errors and its becoming a very tedious process to dismiss them everytime an ad changes.  Please help me fix this I am getting tired of this been happening for a long time. I have everything up to date, flash, skype, chrome, windows, ie, and anything else is fully up to date so I am not sure at ALL what is going on.  

    It's very possible that you are on the upgrade track for the Flash debugger.  Try the following: Uninstall the current version of flash you have installed:http://download.macromedia.com/get/flashplayer/current/support/uninstall_flash_player.exe
    Download and install the latest version of Adobe Flash for IE:https://admdownload.adobe.com/bin/live/flashplayer18ax_ha_install.exe 

Maybe you are looking for

  • Printing to shared printer over VPN link

    We have been using the cisco VPN client connected to a 3020 concentrator for a while with no issues. I have a user that wishes to print through the VPN tunnel to a remote printer from a system on the LAN. He is trying to use a program called Easy Lab

  • Missing Find capability in Numbers 3.0?

    How do I search/find in a spreadsheet in Numbers 3.0?

  • (SOLVED) hot plug notifications in gnome 3.2

    when a drive or media is inserted into the system there is a notification asking for us to either choose its menu or click on its borders to make it go away,while we are busy working at something else. It doesnt automatically slide down with the rout

  • Prototype Constant pattern

    Hi all, I have problem compiling the following prototype constant pattern. The strange thing is that it compiles with JBuilder but not with the command line. I am using JDK1.4.1. Thanks for any advice, Vincent package com.ascom.teamphone.MediaWrapper

  • SQL for fragmented tables

    Hello, Can someone give me the sql to determine what tables and or tablespaces are say 15% fragmented? I'm on Oracle 9i. thanks...