Tried it in both IE and Firefox.  Not having any other network issues
either.

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










>>-----Original Message-----
>>From: [EMAIL PROTECTED] [mailto:flashcoders-
>>[EMAIL PROTECTED] On Behalf Of tech
>>Sent: Friday, December 23, 2005 1:28 PM
>>To: 'Flashcoders mailing list'
>>Subject: RE: [Flashcoders] Scrollpain Overlap Issues
>>
>>That's weird. I've sent the link to people here at work and offsite,
and
>>they could view it. Let me republish and upload after lunch. Thanks
for the
>>heads up.
>>
>>-----Original Message-----
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf Of
Merrill,
>>Jason
>>Sent: Friday, December 23, 2005 12:25 PM
>>To: Flashcoders mailing list
>>Subject: RE: [Flashcoders] Scrollpain Overlap Issues
>>
>>Yeah, still get a page cannot be displayed error.  I don't think its
>>your detection script, it's the location of your HTML file.
>>
>>Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>>>-----Original Message-----
>>>>From: [EMAIL PROTECTED] [mailto:flashcoders-
>>>>[EMAIL PROTECTED] On Behalf Of tech
>>>>Sent: Friday, December 23, 2005 1:05 PM
>>>>To: 'Flashcoders mailing list'
>>>>Subject: RE: [Flashcoders] Scrollpain Overlap Issues
>>>>
>>>>Try it again, I've added the default flash 8 detection script.
>>>>http://mike.randm.org/flash/scrollpain/index.html
>>>>
>>>>You should see three buttons located at the top left of the screen.
>>>>
>>>>Thanks,
>>>>Mike
>>>>
>>>>
>>>>-----Original Message-----
>>>>From: [EMAIL PROTECTED]
>>>>[mailto:[EMAIL PROTECTED] On Behalf Of
>>Merrill,
>>>>Jason
>>>>Sent: Friday, December 23, 2005 11:30 AM
>>>>To: Flashcoders mailing list
>>>>Subject: RE: [Flashcoders] Scrollpain Overlap Issues
>>>>
>>>>That URL you sent doesn't seem to be working.
>>>>
>>>>http://mike.randm.org/flash/scrollpain/ ?
>>>>
>>>>Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>>>-----Original Message-----
>>>>>>From: [EMAIL PROTECTED]
[mailto:flashcoders-
>>>>>>[EMAIL PROTECTED] On Behalf Of tech
>>>>>>Sent: Friday, December 23, 2005 12:19 PM
>>>>>>To: 'Flashcoders mailing list'
>>>>>>Subject: [Flashcoders] Scrollpain Overlap Issues
>>>>>>
>>>>>>Hello,
>>>>>>
>>>>>>
>>>>>>
>>>>>>I'm running into some problems with the scrollpane component.
Here's
>>a
>>>>quick
>>>>>>breakdown of what's happening:
>>>>>>
>>>>>>
>>>>>>
>>>>>>1. I'm using the v2 scrollPane component to build a menu list
>>>>>>
>>>>>>2. I attach movieClips from the library into a container
movieclip,
>>>>each
>>>>>>attached clip contains different v2 components
>>>>>>
>>>>>>3. When I attach the clip with the scrollPane menu, it works fine
>>>>>>
>>>>>>4. However, if a prior component contains a comboBox component,
the
>>>>>>scrollPane menu loses it's mask
>>>>>>
>>>>>>
>>>>>>
>>>>>>I have uploaded a swf, so you can check it out at:
>>>>>>http://mike.randm.org/flash/scrollpain/
>>>>>>
>>>>>>1. To view the menu, click "one"
>>>>>>
>>>>>>2. To view the error, click "two" then "one"
>>>>>>
>>>>>>
>>>>>>
>>>>>>Thanks for any help in advance,
>>>>>>
>>>>>>Mike
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>Here is the code I used to build the menu:
>>>>>>
>>>>>>
>>>>>>
>>>>>>//SETUP QUSTIONS SCROLLPANE - NO HORIZONTAL SCROLLING ALLOWED
>>>>>>
>>>>>>questions_sp.hScrollPolicy="off";
>>>>>>
>>>>>>questions_sp.vScrollPolicy="on";
>>>>>>
>>>>>>
>>>>>>
>>>>>>//SET UP BLANK HOLDER TO BUILD QUESTION LIST IN SCROLLPANE
>>>>>>
>>>>>>questions_sp.contentPath = "blank"; //"blank" movie clip from
>>library
>>>>>>
>>>>>>var paneContent = questions_sp.content;
>>>>>>
>>>>>>
>>>>>>
>>>>>>//TEMPORARY TEST VARIABLES
>>>>>>
>>>>>>qLen = 10;
>>>>>>
>>>>>>
>>>>>>
>>>>>>function setUpQuestionList(){
>>>>>>
>>>>>>            for (var i =0; i<qLen; i++){
>>>>>>
>>>>>>                        var tp = paneContent.attachMovie("menu",
>>>>"menu" + i,
>>>>>>i, {_y: i *20});
>>>>>>
>>>>>>
>>>>>>
>>>>>>                        //QUESTION LIST DISPLAY TEXT - ADD
QUESTION
>>>>TEXT TO
>>>>>>THIS TEXTFIELD
>>>>>>
>>>>>>                        tp.ID = i + 1;
>>>>>>
>>>>>>                        tp.dsp_txt.text = "Menu Item " + tp.ID;
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>                        //QUESTION LIST BUTTON - PUSH TO LOAD
>>QUESTION
>>>>TEXT
>>>>>>AND ANSWER TEXT
>>>>>>
>>>>>>                        tp.button_mc.onRelease = function(){
>>>>>>
>>>>>>                                    trace(this);
>>>>>>
>>>>>>
>>displayQuestion(this._parent.ID);
>>>>>>
>>>>>>                        }
>>>>>>
>>>>>>                        tp.button_mc.onRollOver = function(){
>>>>>>
>>>>>>                                    new
>>>>>>Color(this._parent.menuBg_mc).setRGB(0xCCCCCC);
>>>>>>
>>>>>>                        }
>>>>>>
>>>>>>                        tp.button_mc.onRollOut = function(){
>>>>>>
>>>>>>                                    new
>>>>>>Color(this._parent.menuBg_mc).setRGB(0xF0F0EF);
>>>>>>
>>>>>>                        }
>>>>>>
>>>>>>
>>>>>>
>>>>>>                        //QUESTION LIST MOVE UP BUTTON - PUSH TO
>>MOVE
>>>>>>QUESTION UP
>>>>>>
>>>>>>                        tp.menuUp_mc.onRelease = function(){
>>>>>>
>>>>>>                                    trace(this);
>>>>>>
>>>>>>                        }
>>>>>>
>>>>>>
>>>>>>
>>>>>>                        //QUESTION LIST MOVE DOWN BUTTON - PUSH TO
>>>>MOVE
>>>>>>QUESTION DOWN
>>>>>>
>>>>>>                        tp.menuDown_mc.onRelease = function(){
>>>>>>
>>>>>>                                    trace(this);
>>>>>>
>>>>>>                        }
>>>>>>
>>>>>>            }
>>>>>>
>>>>>>
>>>>>>
>>>>>>            //REDRAW QUESTIONS SCROLL PANE TO INSURE CONTENT
>>DISPLAYS
>>>>>>CORRECTLY
>>>>>>
>>>>>>            questions_sp.redraw(true);
>>>>>>
>>>>>>}
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>_______________________________________________
>>>>>>Flashcoders mailing list
>>>>>>Flashcoders@chattyfig.figleaf.com
>>>>>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>>NOTICE:
>>>>This message is for the designated recipient only and may contain
>>privileged
>>>>or confidential information. If you have received it in error,
please
>>notify
>>>>the sender immediately and delete the original. Any other use of
this
>>e-mail
>>>>by you is prohibited.
>>>>_______________________________________________
>>>>Flashcoders mailing list
>>>>Flashcoders@chattyfig.figleaf.com
>>>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>>
>>>>
>>>>
>>>>
>>>>_______________________________________________
>>>>Flashcoders mailing list
>>>>Flashcoders@chattyfig.figleaf.com
>>>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>_______________________________________________
>>Flashcoders mailing list
>>Flashcoders@chattyfig.figleaf.com
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>
>>
>>
>>_______________________________________________
>>Flashcoders mailing list
>>Flashcoders@chattyfig.figleaf.com
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to