Anything wrogn with this dispatchEvent?

Looks like a begginer question bu
t i really don't know wat am i doing wrong. Used to work a lot with eventDispatchers but now it seams not working.
File 1:
private function init():void{
     dispatchEvent(new Event("myEvent_eventDispatcher", true, true))
File2:
private function init():void{
     addEventListener("myEvent_eventDispatcher", myEvent_eventHandler);
private function myEvent_eventHandler(e:Event):void{
     Alert.show("Event dispatched");
Don't know why but the eventListner is not callong the myEvent_eventHandler function. I know that cause i debug the applicaciont with a breakpoint by the function.

Well... If these are two different files then they are two different components right?
Your addEventListener call is listening for an event on 'File2'. If you wish to listen for the myEvent event on a specific instance you need:
   myFile1.addEventListener(...), where myFile1 is the instance of the component you want to listen to.
If you are wanting to just capture 'myEvent' on the DOM, they what you have there is fine, just look up the interface for addEventListener and pass 'true' for 'useCapture'.
Lastly if you are expecting 'myEvent' to "bubble" up the DOM, then make sure both your File1 instance and File2 are actively on the display list, and that File 2 is somehow an ancestor to File1 in the DOM.
Hope that helps,
Corey

Similar Messages

  • Do you see anything wrong with this GL mapping in a cube?

    hi,
    Can you verify if something is wring with this mapping:
    In model 1:
    0fi_gl_4 --> 0figl_O02 --> 0figl_C02
    the standard cube shows the following key figures and I mapped them to the following fields from the datasource:
    DMSOL(in datasource) to 0Debit_LC (in DSO) to 0Debit (in cube)
    DMHAB(in datasource) to 0Credit_LC (in DSO) to 0Credit (in cube)
    In model 2:
    0fi_gl_6 --> 0figl_C01
    the standard cube shows the following key figures and I mapped them to the following fields from the datasource:
    UMSOL(in datasource) to 0Debit (in cube)
    UMHAB(in datasource) to 0Credit (in cube)
    1. Do you see anything wrong with this mapping? And what is the solution?
    2. What is the problem with the mapping if both cubes sit under the same multiprovider, since 0debit and 0credit are from differnt souce fields?
    thnx

    Hi,
    Thanks for the explanation.
    on #1,
    if my goal is to provide a sort of trial balance, credits and debits as two columns, will it be ok to assume that it should be Local Currency or could it be Document Currency, Local Currency 2 or Local Currency 3? If the latter, then how do I decide?
    on #2,
    i. why will there be difficulty creating a union between the two?
    ii. will there also be an inconsistency if I created 2 separate multiproviders for each model, and create a jump query from the 0fi gl_6 model to 0fi gl_c4 model. If not, why not in this case?
    iii. So, is there any advantage in placing a multiprovider on each of these models separately? i.e. instead of directly reporting off the cubes separately?
    3. I am wondering why in the case of gl_6 (the totals) help.sap recomended to go directly from the datasource to the cube i.e. without DSO in between.
    If without the DSO step is an advantage, what are the advantages?
    And why then do we use DSOs in most model instead? I will appreciate any reasons you may think of..
    Thnx.
    Edited by: AmandaBaah on Jul 28, 2009 11:07 AM
    Edited by: AmandaBaah on Jul 29, 2009 2:25 AM

  • Hi I got an email from itunes saying that my pre order was ready and when I click on the link from my ipad it takes me to the itunes store app and then it doesn't do anything help with this please.

    Hi I got an email from itunes saying that my pre order was ready and when I click on the link from my ipad it takes me to the itunes store app and then it doesn't do anything help with this please .
    <Link Edited By Host>

    Thanks for your advice, I went to the apple shop today for a face to face meeting with a tech and he checked everything and could not figure out why I was having this problem so we decided to give up on that account and create a whole new one for me using a different email address.
    Now I can download apps on both my iPhone and ipad2.
    If anyone is reading this in Brisbane Australia go to the Chermside apple shop and ask for Wade. He was fantastic!
    Jan

  • I have purchased a 'adobe font folio 11'. The ci in this font was made. Is there anything wrong with this post copyright if the Web site?

    I have purchased a 'adobe font folio 11'.
    The ci in this font was made.
    Is there anything wrong with this post copyright if the Web site?

    These machines in themselves are usually pretty good, with the occasional aberration. Let's hope you do not have a rogue.
    Looking at the problems there seem to me (as a guess) two problems: incomplete processes and memory. The two may be related. The camera problem I would dismiss as simply that -- batteries run out and the Mac is trying to complete an impossible process: expecting data, data never arrives.
    The Firefox problem may be something external: a badly coded page; something the browser (or Mac) was not equipped to handle (a plug-in for example) and this could put a strain on RAM.
    Maya, I am not familiar with, but it is (if I remember rightly) graphics-oriented and that can be memory intensive).
    Which all comes down to the RAM you bought. Without knowing what it is or where it came from, or your experience in installing it, that in itself could be a problem. You need to make sure that it is properly seated for one thing, that it is the correct type (although the information here suggests that you are on the right track) and that it is OK.
    You might also want to think about posting a crash log here (find these in Console) as someone -- not me -- might be able to pinpoint a cause.

  • Is anything wrong with this part of my code?

    Hi all,
    I am making a program with lots of methods inside the one class
    whenever I call this method it stuffs up... it may be the way I call it or it may be the code is wrong.... could u please tell me if there is an error in the code or if this section is ok?
        public static int seatSearch(String[][] reservation, String target)
            // cycle through the array
            for (int i = 0; i < reservation.length; i++)
                // if the target is found, return the index
                if (reservation[0] == target)
    System.out.println("found at [" + i + "][0]");
    return i;
    // if it finished the loop and still hasn't returned anything
    // then return -1 to signal the data wasn't found
    System.out.println("the data was not found!");
    return -1;
    oh yeh... it compiles but when I call it it always returns -1 even when its meant to return the index...
    Thanks,
    Mike

    do some defensive coding and check for nulls,
    put some printlnwhat do u mean?
    If you have a NullPointer Exception, then your code has a reference variable that does not point to an object.
    If the exception comes from the code you posted, either the target variable, the reference variable, or one of the contents of the reference array must be null. To determine which it is, put a System.out.println(target+"\t"+reservation; at the start of the method and put a System.out.println(i+"\t"+reservation[0]); as the first line in the for loop. When your run the code, it will display null somewhere - and that's what you have to fix.
    My guess is you have null references in the reservation array and you must decide what to do with those in your code. For exampleif (reservation[0] != null && reservation[i][0].equals(target))

  • Anything wrong with this repo?

    following the beginners guide on wiki, doing the rankmirror
    It says my best option is
    mirror.neotuli.net
    second best is
    homes.umflint.edu
    third is
    ftp.archlinux.org
    4th
    mrrors.easynew.com
    I am in USA, Oklahoma
    any suggestions.

    If it's fast for you with rankmirror, generally choose the order that it gives.
    This great website gives status updates on current mirrors.

  • Anybody see anything wrong with this syntax ?

    I tried to compile the following, but tells me there is an else without an if :
    import javax.swing.JOptionPane;
    class Test {
    public static void main (String[] args) {
    String response;
    int togo = 0;
    response = JOptionPane.showInputDialog ("What is your age?");
    if (response == null)
    JOptionPane.showMessageDialog
    (null, "You clicked on the Cancel button");
    else
    if (response.equals (""))
    JOptionPane.showMessageDialog
    (null, "You must make an entry");
    else
    if ((Integer.parseInt(response)) < 65)
    togo = (65 - (Integer.parseInt(response)));
    JOptionPane.showMessageDialog
    (null, "You have " + togo + " years to go until
    retirement");
    else
    JOptionPane.showMessageDialog
    (null, "You are already able to retire");
    System.exit (0);

    import javax.swing.JOptionPane;
    class Test {
    public static void main (String[] args) {
    String response;
    int togo = 0;
    response = JOptionPane.showInputDialog ("What is your age?");
    if (response == null) {   // -- Whenever you have more than one line of commands, you must enclose your statements with braces
    JOptionPane.showMessageDialog
    (null, "You clicked on the Cancel button");
    } else if (response.equals ("")) { // same problem
    JOptionPane.showMessageDialog
    (null, "You must make an entry");
    } else if ((Integer.parseInt(response)) < 65) {// same problem
    togo = (65 - (Integer.parseInt(response)));
    JOptionPane.showMessageDialog
    (null, "You have " + togo + " years to go until
    retirement");
    } else { // same problem
    JOptionPane.showMessageDialog
    (null, "You are already able to retire");
    System.exit (0);
    } // close that last else statement
    when you have more than one statement for your if i.e.
    if ( condition ) {
    statement 1;
    statement 2;
    } else if ( condition2 ) {
    statement 1;
    statement 2;
    } else {
    hope that this helped

  • Is their anything wrong with this stored procedure?

    CREATE PROCEDURE [dbo].[DeleteAllUserReferences]
    @UserName NVARCHAR(256),
    @Id NVARCHAR(128),
    @Role NVARCHAR(256),
    @RowsAffected int OUTPUT
    AS
    BEGIN TRY
    /*Declare @RowsAffected int;*/
    EXEC aspnet_UsersInRoles_RemoveUsersFromRoles "mainwebsite",@UserName,@Role
    EXEC aspnet_Users_DeleteUser "mainwebsite",@UserName,15,@RowsAffected
    DELETE FROM [AspNetUserRoles] WHERE UserId = @Id
    DELETE FROM [AspNetUsers] WHERE UserName = @UserName
    COMMIT TRANSACTION
    END TRY
    BEGIN CATCH
    ROLLBACK TRANSACTION
    END CATCH
    RETURN 0
    I have a stored procedure above which executes fine when I execute it manually but does not when I execute it via asp.net. Only the first statement executes and the rest does not. Is their anything that might not be proper SQL in this code causing it to stop
    functioning properly?
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - "Sherlock holmes" "speak softly and carry a big stick" - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering
    - Yoda. Blog - http://www.computerprofessions.co.nr

    Since I don't know anything about the contents in that procedure I cannot comment on it. But if an error occurred, you would be taken the CATCH block and the error would be reraised.
    Erland Sommarskog, SQL Server MVP, [email protected]
    Here's the code you requested:
    CREATE PROCEDURE [dbo].aspnet_Users_DeleteUser
    @ApplicationName nvarchar(256),
    @UserName nvarchar(256),
    @TablesToDeleteFrom int,
    @NumTablesDeletedFrom int OUTPUT
    AS
    BEGIN
    DECLARE @UserId uniqueidentifier
    SELECT @UserId = NULL
    SELECT @NumTablesDeletedFrom = 0
    DECLARE @TranStarted bit
    SET @TranStarted = 0
    IF( @@TRANCOUNT = 0 )
    BEGIN
    BEGIN TRANSACTION
    SET @TranStarted = 1
    END
    ELSE
    SET @TranStarted = 0
    DECLARE @ErrorCode int
    DECLARE @RowCount int
    SET @ErrorCode = 0
    SET @RowCount = 0
    SELECT @UserId = u.UserId
    FROM dbo.aspnet_Users u, dbo.aspnet_Applications a
    WHERE u.LoweredUserName = LOWER(@UserName)
    AND u.ApplicationId = a.ApplicationId
    AND LOWER(@ApplicationName) = a.LoweredApplicationName
    IF (@UserId IS NULL)
    BEGIN
    GOTO Cleanup
    END
    -- Delete from Membership table if (@TablesToDeleteFrom & 1) is set
    IF ((@TablesToDeleteFrom & 1) <> 0 AND
    (EXISTS (SELECT name FROM sysobjects WHERE (name = N'vw_aspnet_MembershipUsers') AND (type = 'V'))))
    BEGIN
    DELETE FROM dbo.aspnet_Membership WHERE @UserId = UserId
    SELECT @ErrorCode = @@ERROR,
    @RowCount = @@ROWCOUNT
    IF( @ErrorCode <> 0 )
    GOTO Cleanup
    IF (@RowCount <> 0)
    SELECT @NumTablesDeletedFrom = @NumTablesDeletedFrom + 1
    END
    -- Delete from aspnet_UsersInRoles table if (@TablesToDeleteFrom & 2) is set
    IF ((@TablesToDeleteFrom & 2) <> 0 AND
    (EXISTS (SELECT name FROM sysobjects WHERE (name = N'vw_aspnet_UsersInRoles') AND (type = 'V'))) )
    BEGIN
    DELETE FROM dbo.aspnet_UsersInRoles WHERE @UserId = UserId
    SELECT @ErrorCode = @@ERROR,
    @RowCount = @@ROWCOUNT
    IF( @ErrorCode <> 0 )
    GOTO Cleanup
    IF (@RowCount <> 0)
    SELECT @NumTablesDeletedFrom = @NumTablesDeletedFrom + 1
    END
    -- Delete from aspnet_Profile table if (@TablesToDeleteFrom & 4) is set
    IF ((@TablesToDeleteFrom & 4) <> 0 AND
    (EXISTS (SELECT name FROM sysobjects WHERE (name = N'vw_aspnet_Profiles') AND (type = 'V'))) )
    BEGIN
    DELETE FROM dbo.aspnet_Profile WHERE @UserId = UserId
    SELECT @ErrorCode = @@ERROR,
    @RowCount = @@ROWCOUNT
    IF( @ErrorCode <> 0 )
    GOTO Cleanup
    IF (@RowCount <> 0)
    SELECT @NumTablesDeletedFrom = @NumTablesDeletedFrom + 1
    END
    -- Delete from aspnet_PersonalizationPerUser table if (@TablesToDeleteFrom & 8) is set
    IF ((@TablesToDeleteFrom & 8) <> 0 AND
    (EXISTS (SELECT name FROM sysobjects WHERE (name = N'vw_aspnet_WebPartState_User') AND (type = 'V'))) )
    BEGIN
    DELETE FROM dbo.aspnet_PersonalizationPerUser WHERE @UserId = UserId
    SELECT @ErrorCode = @@ERROR,
    @RowCount = @@ROWCOUNT
    IF( @ErrorCode <> 0 )
    GOTO Cleanup
    IF (@RowCount <> 0)
    SELECT @NumTablesDeletedFrom = @NumTablesDeletedFrom + 1
    END
    -- Delete from aspnet_Users table if (@TablesToDeleteFrom & 1,2,4 & 8) are all set
    IF ((@TablesToDeleteFrom & 1) <> 0 AND
    (@TablesToDeleteFrom & 2) <> 0 AND
    (@TablesToDeleteFrom & 4) <> 0 AND
    (@TablesToDeleteFrom & 8) <> 0 AND
    (EXISTS (SELECT UserId FROM dbo.aspnet_Users WHERE @UserId = UserId)))
    BEGIN
    DELETE FROM dbo.aspnet_Users WHERE @UserId = UserId
    SELECT @ErrorCode = @@ERROR,
    @RowCount = @@ROWCOUNT
    IF( @ErrorCode <> 0 )
    GOTO Cleanup
    IF (@RowCount <> 0)
    SELECT @NumTablesDeletedFrom = @NumTablesDeletedFrom + 1
    END
    IF( @TranStarted = 1 )
    BEGIN
    SET @TranStarted = 0
    COMMIT TRANSACTION
    END
    RETURN 0
    Cleanup:
    SET @NumTablesDeletedFrom = 0
    IF( @TranStarted = 1 )
    BEGIN
    SET @TranStarted = 0
    ROLLBACK TRANSACTION
    END
    RETURN @ErrorCode
    END
    Sorry, about the delay. If you think this helps then I will finally be able to finish my stored procedure and move on.
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - "Sherlock holmes" "speak softly and carry a big stick" - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to
    suffering - Yoda. Blog - http://www.computerprofessions.co.nr

  • Help: Anything wrong with this spatial query?

    The error messages are as follows:
    SELECT * FROM M_RGSERVERDB1 WHERE sdo_relate(M_RGSERVERDB1.geometry, mdsys.sdo_geometry(2003,NULL,NULL,mdsys.sdo_elem_info_array 1,1003,3),mdsys.sdo_ordinate_array(-97.3 ,35.1 , -97.1 , 35.3)),'mask=COVERS querytype=window') = 'TRUE'
    java.sql.SQLException: ORA-06509: PL/SQL: ICD vector missing for this package
    ORA-06512: at "JZHANG.MD", line 1723
    ORA-06512: at "JZHANG.MDERR", line 8
    ORA-06512: at "JZHANG.SDO_3GL", line 57
    ORA-06512: at line 1
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1405)
    at oracle.jdbc.ttc7.TTC7Protocol.fetch(TTC7Protocol.java:889)
    at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.jav
    a:1681)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStateme
    nt.java:1870)
    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:
    538)
    at
    TestSpatial.main(TestSpatial.java:60)
    null

    Hi, Jean-Marc:
    Thanks very much for your help. However, I don't think I missed the parenthesis after I double-checked it-- maybe due to copy/paste.
    In fact, SQLPLUS will remind me if I miss a parenthesis. The following is the SQL that casuse the problem.
    SELECT * FROM M_RGSERVERDB1 WHERE sdo_relate(M_RGSERVERDB1.geometry, mdsys.sdo_geometry(2003,NULL,NULL,mdsys.sdo_elem_info_array (1,1003,3),mdsys.sdo_ordinate_array(-97.3 ,35.1 , -97.1 , 35.3)),'mask=COVERS querytype=window') = 'TRUE';
    Do you have any ideas on version compatibility of 8.1.7 and 8.1.6 which might casue the problem?
    Thanks.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jean-Marc Prevost ([email protected]):
    You have a missing opening parenthesis just after mdsys.sdo_elem_info_array.
    You have:
    mdsys.sdo_elem_info_array 1,1003,3)
    You should have:
    mdsys.sdo_elem_info_array (1,1003,3)
    Hope this helps!<HR></BLOCKQUOTE>
    null

  • Anything Wrong with this query?

    I have been trying to create a report based on this query:
    SELECT call_type.call_type_detail,
    code_city.code_city_detail, area_code.area_code_detail,
    call_reason.call_reason_detail, cform.cform_phone_number_body,
    call_outcome.call_outcome_detail,
    outcome_reason.outcome_reason_detail, cform.cform_date_time ,
    cform.cform_comments
    FROM call_type, code_city, area_code, call_reason, cform,
    call_outcome, outcome_reason
    I have verified all fields to make sure they match and when I
    try to test it CFR crashes...any idea as to why this may be
    happening? Thanks!

    The funny thing is I WAS using inner join already, but didn't
    know it was called that and didn't add it to the post since I have
    quite a few variables as criteria and thought it would make it
    difficult to understand. In the end it was stalling because of an
    error in a table I had not properly specified.
    This is what I had from the start!
    SELECT call_type.call_type_detail,
    code_city.code_city_detail, area_code.area_code_detail,
    call_reason.call_reason_detail, cform.cform_phone_number_body,
    call_outcome.call_outcome_detail,
    outcome_reason.outcome_reason_detail, cform.cform_date_time ,
    cform.cform_comments
    FROM call_type, code_city, area_code, call_reason, cform,
    call_outcome, outcome_reason
    WHERE cform.cform_date_time BETWEEN
    #CreateODBCDateTime(param.CustomFullStartDate)# AND
    #CreateODBCDateTime(param.CustomFullEndDate)# AND
    cform.cform_call_product=#param.GetCustomProduct# AND
    cform.call_service= #param.GetCustomService# AND
    cform.cform_call_reason=#param.GetCustomCallReason# AND
    cform.cform_call_outcome=#param.GetCustomCallOutcome# AND
    cform.cform_call_outcome_reason=#param.GetCustomReason# AND
    call_type.call_type_id=cform.cform_call_type AND
    call_city.call_city_id=cform.cform_call_city AND
    area_code.area_code_id=cform.cform_area_code AND
    call_reason.call_reason_id=cform.cform_call_reason AND
    call_outcome.call_outcome_id=cform.cform_call_outcome AND
    outcome_reason.outcome_reason_id=cform.cform_outcome_reason AND
    cform.cform_date_time

  • I'm confused...think the MBA had anything to do with this?

    Hiya,
    All righty...well, it's been about a week since I've had my MBA, and I have to say, this computer is awesome. However, I've had this very odd Internet problem and I'm not sure if it's the MBA'S fault--or, rather, my fault, given the way I used the MBA at home, in this case--that this happened. I don't know if anyone here would have any idea of what happened, regardless of whether it was actually connected to the MBA and what I did with it to get it online, but here goes....
    I currently don't have working wi-fi so I'm stuck with one computer that can go online via ethernet and the DSL modem at home. When I went online with my MBA for the first time this week, I just unplugged the Ethernet from the home PC and plugged it into the MBA with the usb-to-ethernet dongle. The Internet worked fine on the MBA. And for a few hours, the Internet also worked fine on the regular home PC as well. But the next time I turned the PC on, something strange happened: Almost no Internet pages would load on Firefox or IE. Oddly enough, MSN worked, and YouTube worked, of all websites, but neither browser wanted to load up any other kind of webpage.
    At first I figured that spyware/adware must've had something to do with this, so I started running my usual virus/spyware/adware checks to see if they would find anything. In the meantime, I plugged the Ethernet cable into the MBA and assumed the Internet would work just fine on it. It didn't--it had the exact same problem as the home PC! It was very odd--I was having the same problem across two different computers and two different platforms.
    Long story short, my spyware/adware/virus checks on the PC came up clean. I was able to get one of my more computer-savvy friends to come over to my house and help fix the problem. We worked with the home PC and tweaked the firewall slightly. Oddly enough, after we tweaked the firewall on the home PC and got the Internet to work properly on it, the Internet also started working fine on the MBA as well when we tried plugging it in. My friend was left as confused as I was about all this--we really don't know what caused this problem to start with, since I hadn't encountered this problem at all until I plugged the MBA into the DSL modem. My friend's best guess is that perhaps, something in my PC had "told" the modem to not allow either computer to properly access the Web after I plugged in the MBA, but he really wasn't sure because he'd never encountered a problem like this.
    All in all, I've had an exciting but very strange week. For anyone more computer savvy out there--anyone encounter this kind of problem before? I'll be happy to provide other details on the kind of PC I'm using, along with security programs and my current Internet setup. If needed, I'll get more specific about what me and my friend had done to attempt fixing the problem too.

    Hiya!
    Thanks for the suggestions, Sagesse and Brian. Um...actually, on the day this had happened, my DSL modem got restarted at least three times--twice in my own attempt to fix it and once when I brought in my neighbor to help me fix the computer. I think I've got quite a bit more time to explain specifically what I and my neighbor did, so here goes....
    First, as I said earlier, I plugged the MBA into my DSL modem and the Internet worked great. It worked great for a day or so before the Internet went wonky on me last Monday.
    When I plugged the modem into my PC and booted up last Monday, then saw the Internet wasn't working right at all, the first thing I did was turn off and unplug my modem from my PC and from the wall for about five minutes. (Overkill, I know now--the neighbor who helped me fix my connection told me that all I needed was a minute and I didn't necessarily need to unplug it.) That didn't work. So I did the following in the next day or so till I could get ahold of my neighbor:
    --ran spyware/adware scans using Spybot, Ad-Aware, Spyware Doctor. I found two cookies, all in all, and quarantining them both didn't solve the problem.
    --ran McAfee's virus scan, which came up clean
    --launched Windows Live Messenger--when it didn't log me on and launched its troubleshooting utility instead, I tried letting that run so it could try telling me what the problem was. It kept saying there was a problem with my hosts file, and I clicked on "Repair" several times to get the utility to fix the problem, but no dice--it just didn't work.
    --I checked my network connections in Windows and found my Ethernet connection, then clicked on "Repair" and tried to have Windows attempt to fix the problem for me. It sort of helped--I could log onto Windows Live Messenger, but my Internet browsers (IE and Firefox) were acting very strangely. Basically, only one of the two browsers would semi-work. For example...after having Windows attempt to repair my connection, I opened up Firefox and it didn't work at all--nothing would load properly on it. Then, out of curiosity, I opened IE and tried going to a variety of sites--a couple of banking websites that require login information to access personal banking info, cnn.com, consumerist.com, gizmodo.com, youtube.com--and out of all of those, only youtube loaded properly. IE definitely didn't like anything requiring a login. It didn't like "complicated" sites like CNN's or AOL's site either--when I tried loading either page, what I got were really simple-looking sites that resembled the kinds of pages I'd see on my BlackBerry when I'd load the mobile versions of either site on it. And it got weirder after a few hours of just leaving the computer alone--after a while, IE didn't want to work properly, but Firefox would suddenly start working somewhat, but it would act the same way IE did when it was working.
    --When none of this stuff worked, I finally tried resetting my firewall back to its default settings. This didn't improve things for me either.
    After trying all this out on Monday and some of Tuesday, I finally got ahold of my neighbor. After hearing how freaked out I was at all of this, he suggested that we go out and get some lunch in the neighborhood so we could talk, I could calm down, and I could tell him all about what had happened. We settled on a place with a wi-fi hotspot and I brought the MBA along--we both agreed that if the MBA worked perfectly fine at this restaurant we went to, then the problem I was having was most likely isolated to my house. Lo and behold, the MBA worked just fine outside of my home, so we were more certain now: The problem was at my home.
    After lunch, my neighbor went back to his house and brought me a spare modem and a spare Internet cable in case there really was a problem with my own modem. And then he got a look at my PC and did some of the same things I already did. He turned my modem off and on, and that didn't work. He tried taking advantage of Windows Messenger Live's troubleshooting utility to have it attempt to fix my problem. (No dice--didn't work.) He tried repairing my Network connection. (Didn't work either.) And then he went into my firewall and started tinkering around with it. We learned one big thing about McAfee's free firewall that AOL provides: It is COMPLICATED. And no wonder, we both figured, as we stumbled through screen after screen, trying to figure out what might've been wrong: We figured that McAfee probably made things really hard to understand on purpose so that I'd be forced to go talk to them--and to talk to them, I'd have to pay for it.
    My neighbor accidentally fixed the problem in an attempt to turn off my firewall, actually. He clicked this one checkbox in a list of "ignored problems" and assumed he had turned off the firewall. But he didn't--he fixed the problem instead. We don't actually understand how the item he had checked ("Firewall protection is disabled," which was originally not checkmarked and was not an ignored problem until we checkmarked it...) had solved anything. But the Internet just started working fine on either browser, and we don't understand how that fixed anything at all, but okay...that's for McAfee to answer, not the folks here. As my neighbor and I tested out IE and Firefox, loading up various sites, he said that the only thing he could guess in terms of what happened was, maybe my PC had "told" the DSL modem to not let any computer go online after I plugged in my MBA. And even that was a pretty wild guess for him--he admitted it readily--but he couldn't understand how that could have really been the problem here.
    And...for now, that's all that's happened with my Internet connection. I got my connection fixed Tuesday night, after about two hours of me and my neighbor stumbling through Windows and, in particular, McAfee's security suite. I haven't had any problems with the Internet since then, but I'm still baffled at what had happened to start with. At this point, I still don't think this happened because of the MBA specifically, but I don't know what did happen to cause this problem. I do know that I had never had this kind of problem before until I plugged the MBA in, though. So in a vague way, I think the MBA had something to do with all this. I don't know what, though. :S
    Message was edited by: Sayuri Nitta

  • I recently upgraded to IOS 10.9.5 and now I can't export anything from final cut Pro X. Could somebody please help me with this?

    I recently upgraded to IOS 10.9.5 and now I can't export anything from final cut Pro X. Could somebody please help me with this?

    SSign in to the App Store using the Apple ID that was used to purchase the software.

  • With this computer I am unable to purchase anything at the iTunes store. The message is: We could not complete your iTunes store request. An unknown error occurred (-1202).  There was an error in the iTunes store. please try again later.

    I am unable to purchase anything at the iTunes store with this computer. The message is:
    "We could not complete your iTunes store request. An unknown error occurred (-1202).
    There was an error in the iTunes store. please try again later."
    I always need to go back to my older laptop to purchase anything.
    Can anyone help?

    I get the error
    we could not complete your itunes store request unknown error occurred 50
    I use Win 7 ultimate with a fresh install of itunes. My Win 7 has never had a installation of itunes before.
    I have tried disabling my firewall, but nothing changes.

  • Setting geo.enabled to false does not turn it off. Would my Proxy have anything to do with this?

    ''Duplicate post, continue here - [https://support.mozilla.com/en-US/questions/793677]''
    Setting geo.enabled to false does not turn it off. Would my Proxy have anything to do with this?

    ''Duplicate post, continue here - [https://support.mozilla.com/en-US/questions/793677]''
    Setting geo.enabled to false does not turn it off. Would my Proxy have anything to do with this?

  • I have € 0.09 in my account and I can not buy anything with this value. I want to undo (give up) this value. What do I do?

    I have € 0.09 in my account and I can not buy anything with this value. I want to undo (give up) this value. What do I do?

    Click here and request assistance.
    (68968)

Maybe you are looking for

  • Actual YTD & MTD value is not showing in BEx report....

    Dear Experts, Thank you all for the suggestions and support in solving the issues. I need your help once again in one of the complicated issues I am facing. Details : We are using one report Dealer Target. This report uses YTD and MTD. It shows the T

  • Copies window printing in VF02/VF03 through output type

    Dear Experts, I have copied the standard smartform of the Invoice into YLB_BIL_INVOICE and i did the modification according to the client's requirement. In YLB_BIL_INVOICE, i have taken one window type as Copies Window and i have chosen the radio but

  • Passing Parameters to RDF Reports with Parameter_list in Forms9i

    Hi, I am trying the Oracle 9iDS, and I encounter a problem. When passing parameters to my reports, if my parameter contains the space or other special char, I cannot run the report. It give me the REP-56033. For example, it's my code: add_parameter(p

  • How to look a data segment

    hi all i have a data seegment name, i wann to look at it how can i thanks suresh

  • Image capture and send with post

    Ok, like the title suggests, I have a lil paint function drawing on a canvas in flex 2. What I need is to get that image all captured and bundled up to send to asp.net VB. The site is here: we are UNLIMITED .com Click on start, then Draw, and you wil