[jQuery] Re: Vexed with SuckerFish Flash

2007-11-27 Thread bbuchs
I just finished up a site that used SuperFish and swfObject (and Cycle and idTabs and Accordion...), although I'm using jQuery 1.1.4 still. You don't need to re-output the SWF to get the transparent background, you just need to add a paramater to the swfObject setup code: so.addParam(wmode,

[jQuery] Re: Transparencys and Overlays

2007-10-26 Thread bbuchs
Take a look at BlockUI: http://jquery.com/plugins/project/blockUI It will apply an overlay to either the whole page or a specific element. Might not be exactly what you need, but it's a good starting point. - b On Oct 26, 11:02 am, Glen Lipka [EMAIL PROTECTED] wrote: CSS is used by the

[jQuery] Re: New Plugin: SimpleModal

2007-10-25 Thread bbuchs
I think he's referring to the queuing and duration of the fade effects. First the overlay fades in, the the modal fades in... start to finish it's more than a full second from the moment the trigger was clicked. Your fade durations are set to 'slow'. I haven't played with it yet, but from what I

[jQuery] Re: datePicker plugin inline

2007-07-26 Thread bbuchs
Give this a shot: http://tedserbinski.com/jcalendar/index.html Inline calendar that ties to 3 select elements (m/d/y), with paging. On Jul 26, 10:45 am, Kelvin Luck [EMAIL PROTECTED] wrote: Hi, I'm afraid I haven't got any alternative suggestions... If you only need one calendar on

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-11 Thread bbuchs
It's a very impressive app, but I'd feel better about it if the interface wasn't a blatant rip from Basecamp! On Jun 8, 5:04 pm, Rey Bango [EMAIL PROTECTED] wrote: Hmm. Looks like Joe's site is having trouble. I'll let him know about it and give you all a heads up when its up and running.

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread bbuchs
What version is the FLA file in the source package? I'm using Flash8 Professional, and getting an unexpected file format error message when trying to open the file. On Jun 8, 8:39 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Thanks :) apparently there is a need for an installation guide,

[jQuery] Re: Validate() and TinyMCE problem

2007-06-07 Thread bbuchs
In simple terms, you need to move the content from the TinyMCE control to the textarea for validation. $('button.save').click(function(){ if (tinyMCE) tinyMCE.triggerSave(); }); http://wiki.moxiecode.com/index.php/TinyMCE:Functions#tinyMCE.triggerSave On Jun 7, 7:36 am, Jörn