[Proto-Scripty] Re: clear event queue ?

2010-04-22 Thread T.J. Crowder
Hi, You can disable the buttons while the morph is in progress; that way not only do you prevent the click event but you give the user feedback that they can't click the buttons right now. Otherwise, you have these nice clickable buttons but the clicks are ignored -- users hate that. ;-) If you d

[Proto-Scripty] Error using Prototype + ModalBox + Intraweb 10.0.23

2010-04-22 Thread Duck
I'm using Modalbox 1.5.5 of Andrey Okonetchnikov, Intraweb 10.0.23(Atozed - VCL for Web), scriptaculous 1.8.3 and prototype 1.7- rc1. I'm using IE 8.0 under Windows Seven 32 bits. When i load the page, i receive the message in the bottom of the internet explorer: Mozilla/4.0 (compatible; MSIE 8.0;

[Proto-Scripty] clear event queue ?

2010-04-22 Thread patrick
Hi, I have something like this (using lowpro): -- ... Event.addBehavior({ 'button:click': function() { if (self.effect_in_progress) { return false; } var new_height = (this.id == 'foo') ? 50 : 100; this.effect_in_progress = true; new Effect.Morph('

Re: [Proto-Scripty] Printing a chart that "appears"

2010-04-22 Thread Walter Lee Davis
You could make a print stylesheet that suppresses the small version and shows the large version, eh? Are both versions in the document at page load, or are you loading the larger one using an Ajax call (lazy loading)? Walter On Apr 22, 2010, at 12:00 PM, Avram wrote: I'm using "appear" a

[Proto-Scripty] Printing a chart that "appears"

2010-04-22 Thread Avram
I'm using "appear" and "fade" to display an expanded version of chart. Is there a way to print the expanded version after it "appears"? Ordinarily I would use window.print, but that's printing the small version of the chart. -- You received this message because you are subscribed to the Google Gr

[Proto-Scripty] Re: Conflicting scripts

2010-04-22 Thread T.J. Crowder
Hi, You'll need to enable jQuery's "no conflict" mode on your page, details here: http://api.jquery.com/jQuery.noConflict/ -- T.J. Crowder Independent Software Consultant tj / crowder software / com www.crowdersoftware.com On Apr 22, 2:05 pm, Mike wrote: > Hi there, > > I'm not really a coder (

[Proto-Scripty] Conflicting scripts

2010-04-22 Thread Mike
Hi there, I'm not really a coder (I can hear you all sigh), but I do use code that some very clever people write, in some of my web sites. My problem is that I seem to have two conflicting scripts. The last called, cancels the previous (I have swapped the order around a few times, this may demon

[Proto-Scripty] Re: Prototype Ajax.Request POST failure in Internet Explorer 8

2010-04-22 Thread T.J. Crowder
Hi, Your posting back is much appreciated! People rarely take the time and just leave things dangling. Thanks! -- T.J. Crowder Independent Software Consultant tj / crowder software / com www.crowdersoftware.com On Apr 22, 9:58 am, epoch wrote: > Hi Again > > I have finally completed my debuggi

[Proto-Scripty] Re: Prototype Ajax.Request POST failure in Internet Explorer 8

2010-04-22 Thread epoch
Hi Again I have finally completed my debugging session and found the problem, the problem was the NTLM authentication, seems like IE needs a handshake from the server when it sends the blank request, as soon as i send the handshake, the original Ajax.Request gets executed again automatically So c