Btns & mcs

I just upgraded from CS2. I am creating drop nav menu for
html site because spry is too generic looking, and no one in DW
forum answered my question regarding customization.
My problem is that in CS3, flash is telling me that I cannot
add an action to a movie clip or a button. What's with that? What
good is a movie clip if you can't add an action to it? I opened
some of my old .fla's and there's no problem with them. It's just
when starting a fresh animation.
It's similar to js pop-ups created with DW 8. CS3 will
support them, but not let you create them. Can anyone help please?

@Brandon: although you should not really post to someone
else's topic, and instead make your own, I'll throw you a bone
since it's your first post.
many things about AS3 are based on a Listener/Broadcaster
Event model (to put it loosely) so in order to recieve event
notification from a button, you must create a listener and an event
response function.
In AS2 we would write the code using 'on' handlers, as in:
my_btn.onPress = function() {
//do somthing here
In AS3 we now write a responing function and add an event
listener to the button instance:
function doSomething(event:MouseEvent) {
//doing something here
my_btn.addEventListener(MouseEvent.CLICK, doSomething);
All of this information is documented in the Flash Help (F1)
manual, there's more info there than you will probably ever get
through, and is a great resource for starting your learning, also
use the Forum, and ask question, just like you did and soon you'll
be programming away. good luck, see ya around :)
@dz: thanks for havin' my back man :)

Similar Messages

  • Array to control MCs on the root timeline

    HI - - - a continuing saga
    I have a main timeline thats about 900 frames long. During
    the course of this 900 frames I bring in short MCs (subA, subB,
    subC, etc) on their own layer which play their duration - (a 90
    frame sub MC gets 90 frames on the main timeline).
    Using a mc I made into a play/pause btn, I can pause and
    resume play of the main timeline by targeting “_root”.
    I can also use the same button to pause/play the sub_mcs IF I
    list each one at the pause and play commands. I thought an array
    would help me avoid that code repetition but it doesn't work.
    Can someone look at my code and let me know what's missing
    and/or what I did wrong?
    TIA
    JL

    Hi --
    Try this:
    obj = allSubMCs[0]
    obj.play();
    etc..
    You have to define the index of the array. If you want the
    pause/play button
    to work for all MCs in the array then just loop through the
    array.
    Rich
    "jlucchesi" <[email protected]> wrote in
    message
    news:ghun7u$pjn$[email protected]..
    > HI - - - a continuing saga
    >
    > I have a main timeline thats about 900 frames long.
    During the course of
    > this
    > 900 frames I bring in short MCs (subA, subB, subC, etc)
    on their own layer
    > which play their duration - (a 90 frame sub MC gets 90
    frames on the main
    > timeline).
    >
    > Using a mc I made into a play/pause btn, I can pause and
    resume play of
    > the
    > main timeline by targeting ?_root?.
    > I can also use the same button to pause/play the sub_mcs
    IF I list each
    > one at
    > the pause and play commands. I thought an array would
    help me avoid that
    > code
    > repetition but it doesn't work.
    >
    > Can someone look at my code and let me know what's
    missing and/or what I
    > did
    > wrong?
    >
    > TIA
    >
    > JL
    >
    > var allSubMCs:Array = new Array("sub1_mc", "sub2_mc",
    "sub3_mc");
    >
    >
    > playPause_btn.onRollOver = function() {
    >
    > if(this._currentframe == 1) {
    > this.gotoAndStop("pauseOver");
    > }
    >
    > else {
    > this.gotoAndStop("playOver");
    > }
    >
    > }
    >
    >
    > playPause_btn.onRollOut = function() {
    >
    > if(this._currentframe == 10) {
    > this.gotoAndStop("pause");
    > }
    >
    > else {
    > this.gotoAndStop("play");
    > }
    >
    > }
    >
    >
    > playPause_btn.onRelease = function() {
    >
    > if(this._currentframe == 10) {
    > this.gotoAndStop("playOver");
    > _root.sub1_mc.stop(); // naming each sub mc does
    > //_root.allSubMCs.stop(); // the array doesn't work
    > _root.stop();
    > }
    >
    > else {
    > this.gotoAndStop("pauseOver");
    > //_root.allSubMCs.play(); // the array doesn't work
    > _root.sub1_mc.play(); // naming each sub mc does
    > _root.play();
    > }
    >
    > }
    > //------END PlayPause TOGGLE--------
    >

  • Passing movieClip names to different buttons/MCs

    I have 5 MCs on stage, acting as buttons (ChoiceA_mc to
    ChoiceE_mc) - referred to in a loop (instead of individually naming
    them). I have to disable all these MCs when one has been pressed
    & reactivate them when the 'Next Question' button is pressed.
    My script works but I think there is a much more efficient way of
    doing it - so I don't have to repeat the 'for' loop 3 times.
    I'd be grateful if anyone can show me a more efficient way of
    doing this. Script is :
    next_btn._alpha = 20;
    next_btn.enabled = false;
    // define content and actions for each answer button:
    var choice:String;
    for (var i = 65; i<=69; i++) {
    choice = "choice"+String.fromCharCode(i)+"_mc";
    this[choice].letter_txt.text = String.fromCharCode(i);
    this[choice].id = String.fromCharCode(i);
    // when this answer is chosen:
    _root[choice].onRelease = function() {
    for (i=65; i<=69; i++) {
    var allButts:MovieClip =
    this._parent["choice"+String.fromCharCode(i)+"_mc"];
    allButts.enabled = false;
    allButts.gotoAndStop("_up");
    next_btn._alpha = 100;
    next_btn.enabled = true;
    next_btn.onRelease = function() {
    this._alpha = 20;
    this.enabled = false;
    //show all 5 answer btns again:
    for (i=65; i<=69; i++) {
    allButts =
    this._parent["choice"+String.fromCharCode(i)+"_mc"];
    allButts.enabled = true;
    };

    you can do something like that:
    public someClass {
    someOtherClass obj;
    public someclass (someOtherClass object) {
    this.obj = object;
    public void someMethod () {
    if (condition) { obj.someOtherMethod();  }
    public someOtherClass {
    //constructor here
    public void someOtherMethod () { //do Stuff }
    like this you could pass values between your classes A, B and C

  • How to target main timeline from within 3 mcs in a slidemenu?

    Hello there,
    I am trying to modify a slidemenu script but don't really
    know how to accomplish it. I have a series of buttons within three
    mcs. (this is necessary for the sliding script to work). In the
    original script, the button name is targeted to a label with the
    same name in a new scene.
    The code on the button is:
    on (release) {
    gotoAndStop("/:" add eval("..:text"));
    // THIS goes to the FRAME with the name of the button you
    just clicked on.
    The MC code is:
    // tmi=total menu items
    // dup=new movie duplicates
    // butn=original movie button
    // FIX original Button:
    butn:text = /:Menu0;
    while (Number(n)<Number((/:tmi*2)-1)) {
    n = Number(n)+1;
    dup = "butn" add n;
    duplicateMovieClip("butn", dup, n);
    setProperty(dup, _x, Number(getProperty(dup,
    _x))+Number(n*getProperty(dup, _width)));
    setProperty(dup add "/b", _x, getProperty (dup add "/b", _x)
    + (1));
    set(dup add ":n", n);
    // assign button name from variables
    if (Number(n)<Number(..:tmi)) {
    set(dup add ":text", eval("/:Menu" add n));
    } else {
    set(dup add ":text", eval("/:Menu" add (n-/:tmi)));
    The problem I am having is that I don't want to go to a new
    scene ( because I am only loading photos) but would like to target
    a label on the main menu. I have tried many ways including (my
    label is named "one"):
    on (release) {
    _root.gotoAndStop("Main" "one");
    on (release) {
    _root.gotoAndStop("one");
    on (release) {
    gotoAndStop("Main" "one");
    on (release) {
    _level0.gotoAndStop("one");
    But none of these work. There must be a way to do this no?
    Please someone enlighten me! I need all the help I can get.
    Thanks very much for your support,
    Niki

    Hi,
    i don't where you got this code but it looks like Ascript
    used in flash 4...
    and it's full of syntax errors...
    don't know if this is what you want want but why not try
    something like:
    nrOfBtns = 4;
    //position for each button
    // make button on the root like : myBtn. (mClip or Btn clip )
    buttonStep = myBtn._width+10 // or_height
    // for each button make click tag i.e. in an array is allways
    nice
    clickTag = new Array();
    clickTag[0] = "labelName 0";
    clickTag[1] = "labelName 1";
    clickTag[2] = "labelName 2";
    // create loop
    for (i=0; i<nrOfBtns; i++) {
    // gives you myBtn_0 _1 ,etc.
    duplicateMovieClip("myBtn", "myBtn_"+i, i);
    // places each button 0X150 = 0, 1X150 = 150 position etc.
    _root["myBtn_"+i]._x = i*_root.buttonStep;
    // add other things like click commands:
    // like wich label in the root to goto coming from the array
    _root["myBtn_"+i].clickTag = _root.clickTag
    _root["myBtn_"+i].onRelease = function() {
    _root.gotoAndPlay(this.clickTag);
    trace(this.clickTag);
    hope i could help
    ML

  • Lock-ups on MCS-7825 after after OS Upgrade to 2000.4.4aSR6

    About 3 weeks ago, I upgraded some MCS-7825 & MCS-7835 servers to 2000.4.4aSR6. Since then, one of the 7825's has been rebooting on its own almost twice a day. The other 7825 and 7835s are operating fine.
    Anybody else encountering a problem with this? I see in the release notes, some BIOS and firmware updates are included for the 7825, and am suspecting this is the problem.

    My problems actually turned out to be hardware, I think. I reviewed the logs and found out it had been happening for several months.

  • Cisco OS 2000.2.7 does not support MCS 7825I1 ?

    Hi Pros,
    I have a new installation coming up of CCM 4.1.3 & Unity 4.0.5
    Seems Cisco has sent wrong set of OS Cds for CCM. The Server is a IBM make (MCS 7825I1) with Prescott 3.4 CPU & 2GB RAM alongwith 2 * SATA 80GB HDD.
    When I insert Hardware Detection CD for 2000.2.7 it says "This OS version does not support the detected server. Remove the disk and press any key to reboot.
    My BoM says:
    CM4.1-K9-7825= SW CallMgr 4.1, MCS-7825 2
    MCS-7825-I1-IPC1 HW Only MCS-7825-I1 with 2GB RAM
    and SATA RAID
    2
    Can I install like this - Run IBM ServeRaid, Prep server, Insert Win2k cd, then after install run OS Upgrade 2000.2.7
    Will this work?
    Regards,
    Pratik

    i am not sure why the CPU speed should matter.......
    I don't know what to say, if you have the "a" hardware detection disk, this should work. I have never had a problem once i had the right media so i will step aside and wait to see if someone else can help.
    Steve

  • License Issue from MCS 6.1.3 to UCS 9.0

    Hello all,
    We are upgarding CUCM from 6.1.3 MCS to 9.1 UCS. Our plan is to jump from 6.1.3 to 6.1.5 to 9.1.
    We took backup of 6.1.3 MCS via Disaster Backup Recovery & restore it at UCS after new installation of 6.1.3.
    We contacted cisco licensing team to issue us temporaray license for 6.1.3 for UCS so that we can proceed to upgrade process. Cisco issued us license but we are not able to install it successfully. Its giving attached mac-address mismatch error.
    We contacted back to license team again & they confirmed there is no issue in license file, its some thing with the system.
    Can any one advise what could be wrong with system. I am sending the output from system, screen shot of error & license file.
    Please advise.
    admin:show status
    Host Name    : MOSD-PUB
    Date         : Sun Oct 20, 2013 10:45:15
    Time Zone    : Asia/Bahrain
    Locale       : en_US.UTF-8
    Product Ver  : 6.1.3.3000-1
    Platform Ver : 2.0.0.1-1
    Uptime:
    10:45:16  up 6 days, 22:41,  2 users,  load average: 0.05, 0.02, 0.00
    CPU Idle:                          %  System:  00.00%    User:   00.00%
      IOWAIT:  00.00%     IRQ:  00.00%    Soft:  00.00%   Intr/sec: 107.00
    Memory Total:        6154152K
            Free:        1160032K
            Used:        4994120K
          Cached:        3307852K
          Shared:              0K
         Buffers:         109412K
                            Total             Free            Used
    Disk/active         20303712K        8864384K       11233056K (56%)
    Disk/inactive       20303744K       19239544K          32828K (1%)
    Disk/logging        70643356K       50605548K       16449292K (25%)
    admin:
    admin:show network eth0 detail
    Ethernet 0
    DHCP         : disabled            Status     : up
    IP Address   : 10.30.35.2         IP Mask    : 255.255.255.000
    Link Detected: yes                Mode       : Auto disabled, full, 100 Mbits/s
    Duplicate IP : no
    Queue Length : 1000               MTU        : 1500
    MAC Address  : 00:0c:29:6b:f8:ec
    RX stats:
      bytes   :      9299290   packets :       102331   errors :            0
      dropped :            0   overrun  :            0   mcast  :            0
    TX stats:
      bytes   :     36462086   packets :       386068   errors :            0
      dropped :            0   carrier :            0   colsns :            0
    DNS
    Not configured.
    Gateway      : 10.30.35.254 on Ethernet 0
    admin:
    admin:show hardware
    HW  Platform       : VMware Virtual Machine (Unsupported Platform)
    Processors        : 2
    Type              : Intel(R) Xeon(R) CPU E5-2609 0 @ 2.40GHz
    CPU Speed         : 2400
    Memory            : 6144 MBytes
    Object ID         :
    OS Version        : UCOS 3.0.0.0-73
    Serial Number     : VMware-56 4d aa 54 3b ee 93 c2-c4 91 ac eb be 6b f8 ec
    RAID Version      :
    Firmware version not known
    BIOS Information  :
    Vendor: Phoenix Technologies LTD
    Version: 6.00
    Release Date: 09/21/2011
    RAID Details      :
    RAID not  configured
    admin:

    Hi Anis
    Can you take a look on the below document , please?.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/elmuserguide/9_1_1/license_migration/CUCM_BK_CBF8B56A_00_cucm-license-upgrade-guide_chapter_010.html
    1) Perform a DRS backup of the entire cluster
    2) Install refresh upgrade Cisco Options Package (COP) file
    3) Upgrade to Release 9.1(1)
    4) Perform a DRS backup of the entire cluster
    5) Create new virtual machines with Release 9.0 OVAs
    6) Install Release 9.1(1) using the same hostnames and IP addresses as the physical cluster
    7) Restore DRS backup on the entire cluster
    8) Verify database replication and consistency
    9) Migrate previous licenses into Enterprise License Manager
    Thank you
    please rate all useful information

  • Problem with installing CUCM on MCS-7816-I5

    Hi to all.
    I have a problem with installing CUCM 8.6.1 on new MCS-7816-I5  (IBM) hardware. The problem is that installation loops in restart after upgrading MCS firmware. Actualy, installation does not sucessfully upgrade firmware, so every time it detects old firmware and trying to upgrade it.
    I also tried update MCS firmware with downloaded Firmware Update Utility 3.6.5 CD from Cisco downloads, but it also fails.
    Does anyone have idea what's going on? Is this a Cisco failure or IBM server failure?
    Here is some details from log file generated with this Firmware Update Utility 3.6.5:
    ==============
    Initial Selection
    Machine Type: 4251 OS: SLES 10 Arch: 64 bit
    IsPartition: 0
    Update:   IBM System x uEFI update for x3200 M3 /3250 M3
    Severity: Critical
    Reboot:   Reboot Required to take effect
    UpdateID: ibm_fw_uefi_gye142a_linux_32-64 Requisite:None
    Version:  1.08 (GYE142A)
    Install:  1.06 (GYE135A)
    Select:    Yes
    Update:   IBM Dynamic System Analysis
    Severity: Recommended
    Reboot:   Reboot Required to take effect
    UpdateID: ibm_fw_dsa_3.20_dsyt75x_linux_32_64
    Requisite:None
    Version:  3.20 (DSYT75X)
    Install:  3.01 (DSYT60K)
    Select:    Yes
    Update:   IBM Online SAS/SATA Hard Disk Drive Update Program
    Severity: Critical
    Reboot:   Not Required
    UpdateID: ibm_fw_hdd_sas-1.08.01_linux_32-64
    Requisite:None
    Name:     WD2502ABYS-23B7A0 (/dev/sg0)
    Version:  02.03B07
    Install:  02.0
    Select:    Yes
    Update:   Integrated Management Module Update
    Severity: Critical
    Reboot:   Not Required
    UpdateID: ibm_fw_imm_yuoo84c_linux_32-64 Requisite:None
    Version:  1.22 (YUOO84C)
    Install:  1.10 (YUOO57H)
    Select:    Yes
    IBM Command Line IMM Flash Update Utility v1.05.03 Licensed Materials - Property of IBM
    (C) Copyright IBM Corp. 2009,2010  All Rights Reserved.
    LAN-over-USB device not configured.
    Error connecting to IMM using IP address 169.254.95.118.
    Please verify the LAN over USB interface is configured properly and active.
    Error flashing firmware: 3
    IBM Command Line IMM Flash Update Utility v1.10.11 Licensed Materials - Property of IBM
    (C) Copyright IBM Corp. 2009,2010  All Rights Reserved.
    Refreshing LAN-over-USB IP address.  This may take several minutes.
    Attempting to discover the IMM(s) via SLP.
    Error connecting to IMM using IP address 169.254.95.118.
    Please verify the LAN over USB interface is configured properly and active.
    Error flashing firmware: 10
    (C) Copyright IBM Corp.2010. All Rights Reserved.
    FdrvWL -- Flash Drive(s)                                     3.10.08.19
       1 Ada:0 SID:0   PN:44E9172:42C0463 SN:1J242783 FW:02.03B07              T:13 FW:Ok
    AdaNbr(Type)      DevFnd Flashed(SAS SATA) NbrFailed
      0(onBoard)           1       0   0    0          0
                           1       0   0    0          0 Error(s)
    Update completed successfully.  <-- THIS SUCCESS, BUT EVERY TIME IT UPGRADEING AGAIN FROM OLD VERSION, LIKE NEVER REALY UPGRADED TO NEWER VERSION
    IBM Command Line IMM Flash Update Utility v1.10.11 Licensed Materials - Property of IBM
    (C) Copyright IBM Corp. 2009,2010  All Rights Reserved.
    Refreshing LAN-over-USB IP address.  This may take several minutes.
    Attempting to discover the IMM(s) via SLP.
    Error connecting to IMM using IP address 169.254.95.118.
    Please verify the LAN over USB interface is configured properly and active.
    Error flashing firmware: 10
    ===========================
    Thanks,
    Sinisa.

    Hi Sinisa,
    It almost sounds like this bug;
    CSCtn81201
    Incorrect "Hardware Configuration Error" due to hardware setup errors
    Symptom:
    Refresh upgrade stops with IMM device detection, and then server being reported as unsupported
    Conditions:
    in-band USB interface was disabled, which is configurable via IBM system X or IMM (browser) interfaces.
    Workaround:
    change the in-band usb interface settings to enabled.
    Related Bug
    Status
    Fixed
    Severity
    4 - minor
    Last Modified
    Aug 17,2011
    Product
    Cisco Unified Communications Manager (CallManager)
    Platform
    Dependent
    Technology
    nav
    1st Found-in
    8.6(0.99081.3)
    Fixed-in
    8.6(1.96000.1), 9.0(0.95070.38), 9.0(0.95070.39), 8.6(1.99989.1), 8.6(1.95050.1), 9.0(0.96000.1), 8.6(1.97011.2), 8.6(1.95190.40), 8.6(1.97011.1), 8.6(0.95180.9), 9.0(0.95010.1), 8.6(1.95020.1), 8.6(1.95040.1), 8.6(0.98000.50), 8.6(0.98000.17), 8.6(0.99981.2), 8.6(1.10000.1), 8.6(1.99986.1), 8.6(1.95020.58), 8.6(1.96000.51), 8.6(1.10000.43)
    Cheers!
    Rob

  • I need to confirm this: Can the UCS servers be used instead of MCS servers for Voice applications?

    hello friends,
    The question is the same as in another discussion,  so I ask you to help me confirm it, the UCS servers Can be used instead of MCS  servers in Cisco `s Applications like: CUCM, Cisco Unified Presence, Meeting  Place, etc?
    I could show someone a link that you mention it  and show its own applications?
    Regards,

    need upgrade ccm version  to 8.0

  • How can I see my SONY MCS-8M's operation hours?

    Hi, I'm Mike.
    I got a SONY MCS-8M but don't know how long has it been used before. (user manual was missing)
    So, can anybody tell me how to find out my operation hours?

    Offline can mean a number of things.  Battery could be dead, device is turned off or airplane mode is on, user has reset it, etc. 

  • Question about the number of ERS instances in a dual-stack MCS environment

    Hello to the group.
    I have a simple question for those running a NetWeaver 7.0 (i.e. 2004s) dual stack (ABAP/JAVA) setup in an MCS environment. On each individual node, do you have two separate ERS processes running on the node (as seen in Task Manager) that is opposite to the system running the ASCS/SCS instances? If so, do you have a set of profiles for each of these ERS processes (I am guessing that is true)?
    Thanks in advance for your help.
    J. Haynes

    Has anyone found a good description of the process that runs after one node fails over to another one? help.sap.com mentions that the ASCS will restart and run the command enstatus.cmd but I cannot find what is supposed to happen after that. Is the ERS service itself stopped?
    Thanks
    J. Haynes

  • Upgrade Unity Conn from 8.0.(2) to 9.1(2) and migrate from MCS to UCS...

    Hello Ladies and Gents .
    Currently I have a cluster of Unity Conn. 8.0.2 on MCS.
    MCS have an arrangement of two disk. the cluster is supporting 2.5K users.
    My doubt is about the OVF for UCS.
    I've made the upgrade to 9.1.2 but I used the ovf template of 10K users (4vCPU / 6GB RAM / two 146GB vDisk)
    Now I got the DRS backup and I will do the last step. a fresh install of 9.1.2. and restore the DRS backup in the fresh install.
    Can I use the DRS backup ( 2vDisk setup) with the OVF template of 5Kusers (2vCPU / 6GB RAM / one 200GB vDisk)?
    Thanks
    AM

    Hi Jaime,
    Thanks for your prompt response.
    So there is no problem if I restore a DRS backup of a CUC with 2vDisk, into a fresh install with1vDisk?
    I just want to be sure that my question was clear.
    Thanks Again
    AM

  • Raid Configuration MCS 7845 (best practice)

    I'm wondering what is the best practice for RAID configuration. Looking for examples of a 4 disk and 6 disk setups. Also, which drives to pull when breaking the mirror.
    Is it possible to have a RAID 1+0 for 4/6 drives and have the mirroring set so that you would pull the top or bottom drives on a MCS 7835/7845?
    I'm also confused that using the SmartStart Array Configuration I seem to be able to create one logical drive using raid 1+0 with only having 2 drives, how is that possible?
    And links to dirrections would be appreicated.

    ICM 7.0, CVP 4.x, CCM 4.2.3, unity, and the collaboration server 5.0 and e-mail manager options for ICM.
    But to keep it simple let's look at a Roger set-up.
    Sorry for the delayed response.

  • Making a btn in Fash CS3

    so im trying to make a btn (which i have done before but cant work out what in doing wrong)
    i have a text box with text in it
    i create a button symbol and name it appropriatly. hit ok and it takes me through to the btn time line but there is nothing on my stage and the keyframe is empty.
    how do i get the text box into the btn time line?
    i have tried making it a dynamic text box and i have tried creating a btn in a  new file with a simple rectangle but the same thing is happening
    PLEASE HELP its driving me insane!!

    I don't think you can with AS3. A Button component like you're making above differs from a Button symbol. The only real benefit of the button symbol type is it's easy for designers to make off/over/press/hitarea states easily. There's a library of premade button symbols in Window->Common Libraries->Button incase anything in there suits you. If there is, export for actionscript and generate them from the library like you want.
    The way you'd programmatically create a button yourself is just make a Sprite, set the buttonMode = true, mouseEnabled = true, useHandCursor = true properties. Then draw the button using the Sprites graphics class along with loading any textures you need inside the button using other standard classes like Loader or embedded bitmaps directly from the library.
    Then it's up to you to programmatically handle the MOUSE_OVER, MOUSE_OUT states and all the code necessary to alter the look of the button. You're saying this will be on devices so use the Touch events (check if you're in the begin or ending phase).
    You're probably just better off using the IDE to create your button, use 3 or 9 slice so you can resize the button to match the text and instantiate that button via the actionscript link rather than coding it up. It's just fast and easy. Make sure you name all your instances inside the button so you can access them (TextField, the graphics, etc).

  • FF 4.0.1 can only minimize or maximize. When maximized, press maximize btn will minimize it, i.e. cannot resize FF

    I have Vista. When I start FF, it is minimized in task bar. When right click on FF icon -> Maximize, it will maximize. Then when I press the maximize btn on FF, it will minimize to task bar. When right click on FF icon again -> Move, my cursor goes to top left corner.

    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the 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 other users who have the same problem.''
    Please report back soon.

Maybe you are looking for

  • The no of character in alv top of page

    i have to display k: Share\MM_SCUBCode_PDAtxt_Upload\OUT-1090000017-200903171823 - LY 2.txt in the alv top of page but it is taking k: Share\MM_SCUBCode_PDAtxt_Upload\OUT-1090000017-200903171823. any idea how to do it please check my code form top_of

  • Applying/Clearing filters in Oracle SQL Developer

    Is there a way to temporarily clear the filter for Other Users (Schemas)/Tables/Views etc. in Oracle SQL Developer? I have a large number of Other Users and sometimes I want to see them all but usually I want a selected list. I don't want to have to

  • Influence the RRI

    Hello together, i've defined 2 queries in 2 different webtemplates. In Webtemplate A the user can select a year and the query A uses the year as a variable. THe Query shows data for the selected year and the previous year. Now i've defined a RRI from

  • How to handle an execption occured in a particular activity

    Hello All, How can I handle the exception occured in a particular activity...so that I should be able to proceede with the rest of the activities in the bpel process. For eg: if an exception occured in an invoke activity..process should not terminate

  • Create train with router and manged bean

    I have a 3 level Master/detail view and I need create insert in 3 forms in each stop of train in first stop I have a entry form for master view and in second stop an entry form for first detail and in third stop a entry form for second detail... I ne