[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Priest, James (NIH/NIEHS) [C]

> -Original Message-
> From: bdee1 [mailto:[EMAIL PROTECTED] 

> i want to set up a photo gallery for a clients site and would 
> like to use the 
> http://leandrovieira.com/projects/jquery/lightbox/ Jquery 
> LightBox plugin 
> or somethign similar.  that par is easy but i would like to 
> be able to use
> images from flickr.  that way the client would be able to 


I'm digging around looking for the same thing:

http://www.projectatomic.com/en/flickr.htm

Still in alpha though...

Jim


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


yea i came across that one too but i don't really care for the style of their
lightbox effect.  i greatly prefer the type of the one i posted above.

really if i were to use the jquery lightbox effect then i guess all i would
need is a jquery plugin or script that would allow me to pull a set of image
thumbnails and full size images from a flicker set and output those
thumbnails and links with a class="lightbox" on them.

i am looking at the flickr api to see if i can just build something but it
would be much easier if i could find a plugin to do this.


Priest, James (NIH/NIEHS) [C] wrote:
> 
> 
>> -Original Message-
>> From: bdee1 [mailto:[EMAIL PROTECTED] 
> 
>> i want to set up a photo gallery for a clients site and would 
>> like to use the 
>> http://leandrovieira.com/projects/jquery/lightbox/ Jquery 
>> LightBox plugin 
>> or somethign similar.  that par is easy but i would like to 
>> be able to use
>> images from flickr.  that way the client would be able to 
> 
> 
> I'm digging around looking for the same thing:
> 
> http://www.projectatomic.com/en/flickr.htm
> 
> Still in alpha though...
> 
> Jim
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14419441.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
Check out my jqAlbumParser plugin, it will allow you to parse out a flickr
album and then execute any additional plugin:
http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/

On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> i want to set up a photo gallery for a clients site and would like to use
> the
> http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox plugin
> or somethign similar.  that par is easy but i would like to be able to use
> images from flickr.  that way the client would be able to update the
> images
> in the gallery whenever he needs to.
>
> has anyone done something like this or can suggest how to go about it?
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


that looks promising but i don't think i need to hook the results into a
plugin - i just want to output the results as links for use with lightbox. 
so if i don't hook into another plugin, how do i access the results?


bdee1 wrote:
> 
> yea i came across that one too but i don't really care for the style of
> their lightbox effect.  i greatly prefer the type of the one i posted
> above.
> 
> really if i were to use the jquery lightbox effect then i guess all i
> would need is a jquery plugin or script that would allow me to pull a set
> of image thumbnails and full size images from a flicker set and output
> those thumbnails and links with a class="lightbox" on them.
> 
> i am looking at the flickr api to see if i can just build something but it
> would be much easier if i could find a plugin to do this.
> 
> 
> Priest, James (NIH/NIEHS) [C] wrote:
>> 
>> 
>>> -Original Message-
>>> From: bdee1 [mailto:[EMAIL PROTECTED] 
>> 
>>> i want to set up a photo gallery for a clients site and would 
>>> like to use the 
>>> http://leandrovieira.com/projects/jquery/lightbox/ Jquery 
>>> LightBox plugin 
>>> or somethign similar.  that par is easy but i would like to 
>>> be able to use
>>> images from flickr.  that way the client would be able to 
>> 
>> 
>> I'm digging around looking for the same thing:
>> 
>> http://www.projectatomic.com/en/flickr.htm
>> 
>> Still in alpha though...
>> 
>> Jim
>> 
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14419914.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
By default, the output will look something like ...

And you can style it how ever you want.  If you want them to click to open
to lightbox, you would do something like:

$(".jqAlbumParser").jqAlbumParser({
pluginExec : function(){
$('a', this).lightBox();// this refers to the list just created
}
});


If you want to the plugin to execute on page load, do:

$(".jqAlbumParser").jqAlbumParser({
pluginExec : function(){
$('a', this).lightBox();// this refers to the list just created
 }
 }).click();

Of course all that is wrapped in the .ready() method.


On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> that looks promising but i don't think i need to hook the results into a
> plugin - i just want to output the results as links for use with lightbox.
> so if i don't hook into another plugin, how do i access the results?
>
>
> bdee1 wrote:
> >
> > yea i came across that one too but i don't really care for the style of
> > their lightbox effect.  i greatly prefer the type of the one i posted
> > above.
> >
> > really if i were to use the jquery lightbox effect then i guess all i
> > would need is a jquery plugin or script that would allow me to pull a
> set
> > of image thumbnails and full size images from a flicker set and output
> > those thumbnails and links with a class="lightbox" on them.
> >
> > i am looking at the flickr api to see if i can just build something but
> it
> > would be much easier if i could find a plugin to do this.
> >
> >
> > Priest, James (NIH/NIEHS) [C] wrote:
> >>
> >>
> >>> -Original Message-
> >>> From: bdee1 [mailto:[EMAIL PROTECTED] ]
> >>
> >>> i want to set up a photo gallery for a clients site and would
> >>> like to use the
> >>> http://leandrovieira.com/projects/jquery/lightbox/ Jquery
> >>> LightBox plugin
> >>> or somethign similar.  that par is easy but i would like to
> >>> be able to use
> >>> images from flickr.  that way the client would be able to
> >>
> >>
> >> I'm digging around looking for the same thing:
> >>
> >> http://www.projectatomic.com/en/flickr.htm
> >>
> >> Still in alpha though...
> >>
> >> Jim
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14419914.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


ok that should work - now one last question... i dont see the download link
for the plugin anywhere.


bmsterling wrote:
> 
> Check out my jqAlbumParser plugin, it will allow you to parse out a flickr
> album and then execute any additional plugin:
> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
> 
> On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> i want to set up a photo gallery for a clients site and would like to use
>> the
>> http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox plugin
>> or somethign similar.  that par is easy but i would like to be able to
>> use
>> images from flickr.  that way the client would be able to update the
>> images
>> in the gallery whenever he needs to.
>>
>> has anyone done something like this or can suggest how to go about it?
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
I guess a download link would have been useful:
http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js

Thanks for catching that.

On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> ok that should work - now one last question... i dont see the download
> link
> for the plugin anywhere.
>
>
> bmsterling wrote:
> >
> > Check out my jqAlbumParser plugin, it will allow you to parse out a
> flickr
> > album and then execute any additional plugin:
> >
> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
> >
> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> i want to set up a photo gallery for a clients site and would like to
> use
> >> the
> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox
> plugin
> >> or somethign similar.  that par is easy but i would like to be able to
> >> use
> >> images from flickr.  that way the client would be able to update the
> >> images
> >> in the gallery whenever he needs to.
> >>
> >> has anyone done something like this or can suggest how to go about it?
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
> >> Sent from the jQuery General Discussion mailing list archive at
> >> Nabble.com
> >> .
> >>
> >>
> >
> >
> > --
> > Benjamin Sterling
> > http://www.KenzoMedia.com
> > http://www.KenzoHosting.com
> > http://www.benjaminsterling.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


ok i got the download link and now i am looking at this code:
i am not sure i follow what you are saying here:
$(".jqAlbumParser").jqAlbumParser({
pluginExec : function(){
  $('a', this).lightBox();// this refers to the list just created
}
});

so is this saying that for each a tag it generates, it calls a lightbox
function?  please explain this further.


bmsterling wrote:
> 
> By default, the output will look something like  pathToFullSize 
> pathtoimage  ...
> 
> And you can style it how ever you want.  If you want them to click to open
> to lightbox, you would do something like:
> 
> $(".jqAlbumParser").jqAlbumParser({
> pluginExec : function(){
> $('a', this).lightBox();// this refers to the list just created
> }
> });
> 
> 
> If you want to the plugin to execute on page load, do:
> 
> $(".jqAlbumParser").jqAlbumParser({
> pluginExec : function(){
> $('a', this).lightBox();// this refers to the list just created
>  }
>  }).click();
> 
> Of course all that is wrapped in the .ready() method.
> 
> 
> On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> that looks promising but i don't think i need to hook the results into a
>> plugin - i just want to output the results as links for use with
>> lightbox.
>> so if i don't hook into another plugin, how do i access the results?
>>
>>
>> bdee1 wrote:
>> >
>> > yea i came across that one too but i don't really care for the style of
>> > their lightbox effect.  i greatly prefer the type of the one i posted
>> > above.
>> >
>> > really if i were to use the jquery lightbox effect then i guess all i
>> > would need is a jquery plugin or script that would allow me to pull a
>> set
>> > of image thumbnails and full size images from a flicker set and output
>> > those thumbnails and links with a class="lightbox" on them.
>> >
>> > i am looking at the flickr api to see if i can just build something but
>> it
>> > would be much easier if i could find a plugin to do this.
>> >
>> >
>> > Priest, James (NIH/NIEHS) [C] wrote:
>> >>
>> >>
>> >>> -Original Message-
>> >>> From: bdee1 [mailto:[EMAIL PROTECTED] ]
>> >>
>> >>> i want to set up a photo gallery for a clients site and would
>> >>> like to use the
>> >>> http://leandrovieira.com/projects/jquery/lightbox/ Jquery
>> >>> LightBox plugin
>> >>> or somethign similar.  that par is easy but i would like to
>> >>> be able to use
>> >>> images from flickr.  that way the client would be able to
>> >>
>> >>
>> >> I'm digging around looking for the same thing:
>> >>
>> >> http://www.projectatomic.com/en/flickr.htm
>> >>
>> >> Still in alpha though...
>> >>
>> >> Jim
>> >>
>> >>
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14419914.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420821.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


nevermind my last post about not understanding yoru code - that was just me
being stupid.  i just looked at the lightbox plugin in more detail and
answered my own questions duh.



bmsterling wrote:
> 
> I guess a download link would have been useful:
> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
> 
> Thanks for catching that.
> 
> On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> ok that should work - now one last question... i dont see the download
>> link
>> for the plugin anywhere.
>>
>>
>> bmsterling wrote:
>> >
>> > Check out my jqAlbumParser plugin, it will allow you to parse out a
>> flickr
>> > album and then execute any additional plugin:
>> >
>> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
>> >
>> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> i want to set up a photo gallery for a clients site and would like to
>> use
>> >> the
>> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox
>> plugin
>> >> or somethign similar.  that par is easy but i would like to be able to
>> >> use
>> >> images from flickr.  that way the client would be able to update the
>> >> images
>> >> in the gallery whenever he needs to.
>> >>
>> >> has anyone done something like this or can suggest how to go about it?
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
>> >> Sent from the jQuery General Discussion mailing list archive at
>> >> Nabble.com
>> >> .
>> >>
>> >>
>> >
>> >
>> > --
>> > Benjamin Sterling
>> > http://www.KenzoMedia.com
>> > http://www.KenzoHosting.com
>> > http://www.benjaminsterling.com
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420823.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
Cool; I have not tested it using the lightbox plugin, can you let me know
how it turns out?

On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> nevermind my last post about not understanding yoru code - that was just
> me
> being stupid.  i just looked at the lightbox plugin in more detail and
> answered my own questions duh.
>
>
>
> bmsterling wrote:
> >
> > I guess a download link would have been useful:
> >
> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
> >
> > Thanks for catching that.
> >
> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> ok that should work - now one last question... i dont see the download
> >> link
> >> for the plugin anywhere.
> >>
> >>
> >> bmsterling wrote:
> >> >
> >> > Check out my jqAlbumParser plugin, it will allow you to parse out a
> >> flickr
> >> > album and then execute any additional plugin:
> >> >
> >>
> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
> >> >
> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >>
> >> >>
> >> >>
> >> >> i want to set up a photo gallery for a clients site and would like
> to
> >> use
> >> >> the
> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox
> >> plugin
> >> >> or somethign similar.  that par is easy but i would like to be able
> to
> >> >> use
> >> >> images from flickr.  that way the client would be able to update the
> >> >> images
> >> >> in the gallery whenever he needs to.
> >> >>
> >> >> has anyone done something like this or can suggest how to go about
> it?
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> Nabble.com
> >> >> .
> >> >>
> >> >>
> >> >
> >> >
> >> > --
> >> > Benjamin Sterling
> >> > http://www.KenzoMedia.com
> >> > http://www.KenzoHosting.com
> >> > http://www.benjaminsterling.com
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
> >> Sent from the jQuery General Discussion mailing list archive at
> >> Nabble.com
> >> .
> >>
> >>
> >
> >
> > --
> > Benjamin Sterling
> > http://www.KenzoMedia.com
> > http://www.KenzoHosting.com
> > http://www.benjaminsterling.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420823.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


this worked out pretty well - i had some trouble gettign the images to load
correctly in the lightbox plugin but that was something in the lightbox
plugin i had to tweak - not yours.

i don't have it posted online yet - i am just playing around locally.  but
in the next few weeks you will see it  at www.asset-guardians.com on the
portfolio page.





bmsterling wrote:
> 
> Cool; I have not tested it using the lightbox plugin, can you let me know
> how it turns out?
> 
> On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> nevermind my last post about not understanding yoru code - that was just
>> me
>> being stupid.  i just looked at the lightbox plugin in more detail and
>> answered my own questions duh.
>>
>>
>>
>> bmsterling wrote:
>> >
>> > I guess a download link would have been useful:
>> >
>> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
>> >
>> > Thanks for catching that.
>> >
>> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> ok that should work - now one last question... i dont see the download
>> >> link
>> >> for the plugin anywhere.
>> >>
>> >>
>> >> bmsterling wrote:
>> >> >
>> >> > Check out my jqAlbumParser plugin, it will allow you to parse out a
>> >> flickr
>> >> > album and then execute any additional plugin:
>> >> >
>> >>
>> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
>> >> >
>> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >> i want to set up a photo gallery for a clients site and would like
>> to
>> >> use
>> >> >> the
>> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox
>> >> plugin
>> >> >> or somethign similar.  that par is easy but i would like to be able
>> to
>> >> >> use
>> >> >> images from flickr.  that way the client would be able to update
>> the
>> >> >> images
>> >> >> in the gallery whenever he needs to.
>> >> >>
>> >> >> has anyone done something like this or can suggest how to go about
>> it?
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
>> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> Nabble.com
>> >> >> .
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >> > --
>> >> > Benjamin Sterling
>> >> > http://www.KenzoMedia.com
>> >> > http://www.KenzoHosting.com
>> >> > http://www.benjaminsterling.com
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
>> >> Sent from the jQuery General Discussion mailing list archive at
>> >> Nabble.com
>> >> .
>> >>
>> >>
>> >
>> >
>> > --
>> > Benjamin Sterling
>> > http://www.KenzoMedia.com
>> > http://www.KenzoHosting.com
>> > http://www.benjaminsterling.com
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420823.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14422607.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


any way i can make the thumbnails larger?  or is that just the size they come
in from flickr?



bmsterling wrote:
> 
> Cool; I have not tested it using the lightbox plugin, can you let me know
> how it turns out?
> 
> On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> nevermind my last post about not understanding yoru code - that was just
>> me
>> being stupid.  i just looked at the lightbox plugin in more detail and
>> answered my own questions duh.
>>
>>
>>
>> bmsterling wrote:
>> >
>> > I guess a download link would have been useful:
>> >
>> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
>> >
>> > Thanks for catching that.
>> >
>> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> ok that should work - now one last question... i dont see the download
>> >> link
>> >> for the plugin anywhere.
>> >>
>> >>
>> >> bmsterling wrote:
>> >> >
>> >> > Check out my jqAlbumParser plugin, it will allow you to parse out a
>> >> flickr
>> >> > album and then execute any additional plugin:
>> >> >
>> >>
>> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
>> >> >
>> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >> i want to set up a photo gallery for a clients site and would like
>> to
>> >> use
>> >> >> the
>> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox
>> >> plugin
>> >> >> or somethign similar.  that par is easy but i would like to be able
>> to
>> >> >> use
>> >> >> images from flickr.  that way the client would be able to update
>> the
>> >> >> images
>> >> >> in the gallery whenever he needs to.
>> >> >>
>> >> >> has anyone done something like this or can suggest how to go about
>> it?
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
>> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> Nabble.com
>> >> >> .
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >> > --
>> >> > Benjamin Sterling
>> >> > http://www.KenzoMedia.com
>> >> > http://www.KenzoHosting.com
>> >> > http://www.benjaminsterling.com
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
>> >> Sent from the jQuery General Discussion mailing list archive at
>> >> Nabble.com
>> >> .
>> >>
>> >>
>> >
>> >
>> > --
>> > Benjamin Sterling
>> > http://www.KenzoMedia.com
>> > http://www.KenzoHosting.com
>> > http://www.benjaminsterling.com
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420823.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14422621.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
Set the tnSize param to 0, 1, 2 for a different size:

 * @param Integer tnSize
 * This param takes in 0, 1,or 2 and will reference one of the
 * thumbnail spots for picasa or flickr
 * picasa: 0 == 72x48, 1 == 144x66, 2 == 288x192
 * flickr: 0 == 75x75 or 1 == 100 on long side or 2 == 240
on long side

You will have to see which one works best for you.

On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> any way i can make the thumbnails larger?  or is that just the size they
> come
> in from flickr?
>
>
>
> bmsterling wrote:
> >
> > Cool; I have not tested it using the lightbox plugin, can you let me
> know
> > how it turns out?
> >
> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> nevermind my last post about not understanding yoru code - that was
> just
> >> me
> >> being stupid.  i just looked at the lightbox plugin in more detail and
> >> answered my own questions duh.
> >>
> >>
> >>
> >> bmsterling wrote:
> >> >
> >> > I guess a download link would have been useful:
> >> >
> >>
> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
> >> >
> >> > Thanks for catching that.
> >> >
> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >>
> >> >>
> >> >>
> >> >> ok that should work - now one last question... i dont see the
> download
> >> >> link
> >> >> for the plugin anywhere.
> >> >>
> >> >>
> >> >> bmsterling wrote:
> >> >> >
> >> >> > Check out my jqAlbumParser plugin, it will allow you to parse out
> a
> >> >> flickr
> >> >> > album and then execute any additional plugin:
> >> >> >
> >> >>
> >>
> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
> >> >> >
> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> i want to set up a photo gallery for a clients site and would
> like
> >> to
> >> >> use
> >> >> >> the
> >> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery
> LightBox
> >> >> plugin
> >> >> >> or somethign similar.  that par is easy but i would like to be
> able
> >> to
> >> >> >> use
> >> >> >> images from flickr.  that way the client would be able to update
> >> the
> >> >> >> images
> >> >> >> in the gallery whenever he needs to.
> >> >> >>
> >> >> >> has anyone done something like this or can suggest how to go
> about
> >> it?
> >> >> >> --
> >> >> >> View this message in context:
> >> >> >>
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
> >> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> >> Nabble.com
> >> >> >> .
> >> >> >>
> >> >> >>
> >> >> >
> >> >> >
> >> >> > --
> >> >> > Benjamin Sterling
> >> >> > http://www.KenzoMedia.com
> >> >> > http://www.KenzoHosting.com
> >> >> > http://www.benjaminsterling.com
> >> >> >
> >> >> >
> >> >>
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> Nabble.com
> >> >> .
> >> >>
> >> >>
> >> >
> >> >
> >> > --
> >> > Benjamin Sterling
> >> > http://www.KenzoMedia.com
> >> > http://www.KenzoHosting.com
> >> > http://www.benjaminsterling.com
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420823.html
> >> Sent from the jQuery General Discussion mailing list archive at
> >> Nabble.com
> >> .
> >>
> >>
> >
> >
> > --
> > Benjamin Sterling
> > http://www.KenzoMedia.com
> > http://www.KenzoHosting.com
> > http://www.benjaminsterling.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14422621.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


where do i find that?  i don't see those lines in the js file.


bmsterling wrote:
> 
> Set the tnSize param to 0, 1, 2 for a different size:
> 
>  * @param Integer tnSize
>  * This param takes in 0, 1,or 2 and will reference one of the
>  * thumbnail spots for picasa or flickr
>  * picasa: 0 == 72x48, 1 == 144x66, 2 == 288x192
>  * flickr: 0 == 75x75 or 1 == 100 on long side or 2 == 240
> on long side
> 
> You will have to see which one works best for you.
> 
> On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> any way i can make the thumbnails larger?  or is that just the size they
>> come
>> in from flickr?
>>
>>
>>
>> bmsterling wrote:
>> >
>> > Cool; I have not tested it using the lightbox plugin, can you let me
>> know
>> > how it turns out?
>> >
>> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> nevermind my last post about not understanding yoru code - that was
>> just
>> >> me
>> >> being stupid.  i just looked at the lightbox plugin in more detail and
>> >> answered my own questions duh.
>> >>
>> >>
>> >>
>> >> bmsterling wrote:
>> >> >
>> >> > I guess a download link would have been useful:
>> >> >
>> >>
>> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
>> >> >
>> >> > Thanks for catching that.
>> >> >
>> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >> ok that should work - now one last question... i dont see the
>> download
>> >> >> link
>> >> >> for the plugin anywhere.
>> >> >>
>> >> >>
>> >> >> bmsterling wrote:
>> >> >> >
>> >> >> > Check out my jqAlbumParser plugin, it will allow you to parse out
>> a
>> >> >> flickr
>> >> >> > album and then execute any additional plugin:
>> >> >> >
>> >> >>
>> >>
>> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
>> >> >> >
>> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >> >> i want to set up a photo gallery for a clients site and would
>> like
>> >> to
>> >> >> use
>> >> >> >> the
>> >> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery
>> LightBox
>> >> >> plugin
>> >> >> >> or somethign similar.  that par is easy but i would like to be
>> able
>> >> to
>> >> >> >> use
>> >> >> >> images from flickr.  that way the client would be able to update
>> >> the
>> >> >> >> images
>> >> >> >> in the gallery whenever he needs to.
>> >> >> >>
>> >> >> >> has anyone done something like this or can suggest how to go
>> about
>> >> it?
>> >> >> >> --
>> >> >> >> View this message in context:
>> >> >> >>
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
>> >> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> >> Nabble.com
>> >> >> >> .
>> >> >> >>
>> >> >> >>
>> >> >> >
>> >> >> >
>> >> >> > --
>> >> >> > Benjamin Sterling
>> >> >> > http://www.KenzoMedia.com
>> >> >> > http://www.KenzoHosting.com
>> >> >> > http://www.benjaminsterling.com
>> >> >> >
>> >> >> >
>> >> >>
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
>> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> Nabble.com
>> >> >> .
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >> > --
>> >> > Benjamin Sterling
>> >> > http://www.KenzoMedia.com
>> >> > http://www.KenzoHosting.com
>> >> > http://www.benjaminsterling.com
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420823.html
>> >> Sent from the jQuery General Discussion mailing list archive at
>> >> Nabble.com
>> >> .
>> >>
>> >>
>> >
>> >
>> > --
>> > Benjamin Sterling
>> > http://www.KenzoMedia.com
>> > http://www.KenzoHosting.com
>> > http://www.benjaminsterling.com
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14422621.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14423425.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


oh ok i see what you mean now.  seems to work.  now of course if i use one of
the other sizes, the pic are no longer uniform in width.  so is there a way
that i could style it so that the li's are always 200px in width with the
image centered inside it?

i tried adding:
$('li', this).css("width","140px");

but it didn't seem to work.


bmsterling wrote:
> 
> You would do something like:
> 
> $('a.jqAlbumParser').jqAlbumParser({
> tnSize:1
> });
> 
> On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> where do i find that?  i don't see those lines in the js file.
>>
>>
>> bmsterling wrote:
>> >
>> > Set the tnSize param to 0, 1, 2 for a different size:
>> >
>> >  * @param Integer tnSize
>> >  * This param takes in 0, 1,or 2 and will reference one of
>> the
>> >  * thumbnail spots for picasa or flickr
>> >  * picasa: 0 == 72x48, 1 == 144x66, 2 == 288x192
>> >  * flickr: 0 == 75x75 or 1 == 100 on long side or 2 ==
>> 240
>> > on long side
>> >
>> > You will have to see which one works best for you.
>> >
>> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> any way i can make the thumbnails larger?  or is that just the size
>> they
>> >> come
>> >> in from flickr?
>> >>
>> >>
>> >>
>> >> bmsterling wrote:
>> >> >
>> >> > Cool; I have not tested it using the lightbox plugin, can you let me
>> >> know
>> >> > how it turns out?
>> >> >
>> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >> nevermind my last post about not understanding yoru code - that was
>> >> just
>> >> >> me
>> >> >> being stupid.  i just looked at the lightbox plugin in more detail
>> and
>> >> >> answered my own questions duh.
>> >> >>
>> >> >>
>> >> >>
>> >> >> bmsterling wrote:
>> >> >> >
>> >> >> > I guess a download link would have been useful:
>> >> >> >
>> >> >>
>> >>
>> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
>> >> >> >
>> >> >> > Thanks for catching that.
>> >> >> >
>> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >> >> ok that should work - now one last question... i dont see the
>> >> download
>> >> >> >> link
>> >> >> >> for the plugin anywhere.
>> >> >> >>
>> >> >> >>
>> >> >> >> bmsterling wrote:
>> >> >> >> >
>> >> >> >> > Check out my jqAlbumParser plugin, it will allow you to parse
>> out
>> >> a
>> >> >> >> flickr
>> >> >> >> > album and then execute any additional plugin:
>> >> >> >> >
>> >> >> >>
>> >> >>
>> >>
>> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
>> >> >> >> >
>> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >> i want to set up a photo gallery for a clients site and would
>> >> like
>> >> >> to
>> >> >> >> use
>> >> >> >> >> the
>> >> >> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery
>> >> LightBox
>> >> >> >> plugin
>> >> >> >> >> or somethign similar.  that par is easy but i would like to
>> be
>> >> able
>> >> >> to
>> >> >> >> >> use
>> >> >> >> >> images from flickr.  that way the client would be able to
>> update
>> >> >> the
>> >> >> >> >> images
>> >> >> >> >> in the gallery whenever he needs to.
>> >> >> >> >>
>> >> >> >> >> has anyone done something like this or can suggest how to go
>> >> about
>> >> >> it?
>> >> >> >> >> --
>> >> >> >> >> View this message in context:
>> >> >> >> >>
>> >> >> >>
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
>> >> >> >> >> Sent from the jQuery General Discussion mailing list archive
>> at
>> >> >> >> >> Nabble.com
>> >> >> >> >> .
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >
>> >> >> >> >
>> >> >> >> > --
>> >> >> >> > Benjamin Sterling
>> >> >> >> > http://www.KenzoMedia.com
>> >> >> >> > http://www.KenzoHosting.com
>> >> >> >> > http://www.benjaminsterling.com
>> >> >> >> >
>> >> >> >> >
>> >> >> >>
>> >> >> >> --
>> >> >> >> View this message in context:
>> >> >> >>
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
>> >> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> >> Nabble.com
>> >> >> >> .
>> >> >> >>
>> >> >> >>
>> >> >> >
>> >> >> >
>> >> >> > --
>> >> >> > Benjamin Sterling
>> >> >> > http://www.KenzoMedia.com
>> >> >> > http://www.KenzoHosting.com
>> >> >> > http://www.benjaminsterling.com
>> >> >> >
>> >> >> >
>> >> >>
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420823.html
>> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> Nabble.com
>> >> >> .
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >> > --
>> >> > Benjamin Sterling
>> >> > http://www.KenzoMedia.com
>> >> > http://www.KenzoHosting.com
>> >> > http://www.benjaminsterling.com
>> >> >

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
You would do something like:

$('a.jqAlbumParser').jqAlbumParser({
tnSize:1
});

On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> where do i find that?  i don't see those lines in the js file.
>
>
> bmsterling wrote:
> >
> > Set the tnSize param to 0, 1, 2 for a different size:
> >
> >  * @param Integer tnSize
> >  * This param takes in 0, 1,or 2 and will reference one of
> the
> >  * thumbnail spots for picasa or flickr
> >  * picasa: 0 == 72x48, 1 == 144x66, 2 == 288x192
> >  * flickr: 0 == 75x75 or 1 == 100 on long side or 2 ==
> 240
> > on long side
> >
> > You will have to see which one works best for you.
> >
> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> any way i can make the thumbnails larger?  or is that just the size
> they
> >> come
> >> in from flickr?
> >>
> >>
> >>
> >> bmsterling wrote:
> >> >
> >> > Cool; I have not tested it using the lightbox plugin, can you let me
> >> know
> >> > how it turns out?
> >> >
> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >>
> >> >>
> >> >>
> >> >> nevermind my last post about not understanding yoru code - that was
> >> just
> >> >> me
> >> >> being stupid.  i just looked at the lightbox plugin in more detail
> and
> >> >> answered my own questions duh.
> >> >>
> >> >>
> >> >>
> >> >> bmsterling wrote:
> >> >> >
> >> >> > I guess a download link would have been useful:
> >> >> >
> >> >>
> >>
> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
> >> >> >
> >> >> > Thanks for catching that.
> >> >> >
> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> ok that should work - now one last question... i dont see the
> >> download
> >> >> >> link
> >> >> >> for the plugin anywhere.
> >> >> >>
> >> >> >>
> >> >> >> bmsterling wrote:
> >> >> >> >
> >> >> >> > Check out my jqAlbumParser plugin, it will allow you to parse
> out
> >> a
> >> >> >> flickr
> >> >> >> > album and then execute any additional plugin:
> >> >> >> >
> >> >> >>
> >> >>
> >>
> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
> >> >> >> >
> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >> >>
> >> >> >> >>
> >> >> >> >>
> >> >> >> >> i want to set up a photo gallery for a clients site and would
> >> like
> >> >> to
> >> >> >> use
> >> >> >> >> the
> >> >> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery
> >> LightBox
> >> >> >> plugin
> >> >> >> >> or somethign similar.  that par is easy but i would like to be
> >> able
> >> >> to
> >> >> >> >> use
> >> >> >> >> images from flickr.  that way the client would be able to
> update
> >> >> the
> >> >> >> >> images
> >> >> >> >> in the gallery whenever he needs to.
> >> >> >> >>
> >> >> >> >> has anyone done something like this or can suggest how to go
> >> about
> >> >> it?
> >> >> >> >> --
> >> >> >> >> View this message in context:
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
> >> >> >> >> Sent from the jQuery General Discussion mailing list archive
> at
> >> >> >> >> Nabble.com
> >> >> >> >> .
> >> >> >> >>
> >> >> >> >>
> >> >> >> >
> >> >> >> >
> >> >> >> > --
> >> >> >> > Benjamin Sterling
> >> >> >> > http://www.KenzoMedia.com
> >> >> >> > http://www.KenzoHosting.com
> >> >> >> > http://www.benjaminsterling.com
> >> >> >> >
> >> >> >> >
> >> >> >>
> >> >> >> --
> >> >> >> View this message in context:
> >> >> >>
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
> >> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> >> Nabble.com
> >> >> >> .
> >> >> >>
> >> >> >>
> >> >> >
> >> >> >
> >> >> > --
> >> >> > Benjamin Sterling
> >> >> > http://www.KenzoMedia.com
> >> >> > http://www.KenzoHosting.com
> >> >> > http://www.benjaminsterling.com
> >> >> >
> >> >> >
> >> >>
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420823.html
> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> Nabble.com
> >> >> .
> >> >>
> >> >>
> >> >
> >> >
> >> > --
> >> > Benjamin Sterling
> >> > http://www.KenzoMedia.com
> >> > http://www.KenzoHosting.com
> >> > http://www.benjaminsterling.com
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14422621.html
> >> Sent from the jQuery General Discussion mailing list archive at
> >> Nabble.com
> >> .
> >>
> >>
> >
> >
> > --
> > Benjamin Sterling
> > http://www.KenzoMedia.com
> > http://www.KenzoHosting.com
> > http://www.benjaminsterling.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14423425.html
> Sent from the

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
No I don't how to center the image in the LI without doing a bunch of math,
but what I normally do in my css is set the width and height of the LI and
set the overflow:hidden.  I am sure there is some other css hackery that can
be done, but I am not an expert.

On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> oh ok i see what you mean now.  seems to work.  now of course if i use one
> of
> the other sizes, the pic are no longer uniform in width.  so is there a
> way
> that i could style it so that the li's are always 200px in width with the
> image centered inside it?
>
> i tried adding:
> $('li', this).css("width","140px");
>
> but it didn't seem to work.
>
>
> bmsterling wrote:
> >
> > You would do something like:
> >
> > $('a.jqAlbumParser').jqAlbumParser({
> > tnSize:1
> > });
> >
> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> where do i find that?  i don't see those lines in the js file.
> >>
> >>
> >> bmsterling wrote:
> >> >
> >> > Set the tnSize param to 0, 1, 2 for a different size:
> >> >
> >> >  * @param Integer tnSize
> >> >  * This param takes in 0, 1,or 2 and will reference one
> of
> >> the
> >> >  * thumbnail spots for picasa or flickr
> >> >  * picasa: 0 == 72x48, 1 == 144x66, 2 == 288x192
> >> >  * flickr: 0 == 75x75 or 1 == 100 on long side or 2
> ==
> >> 240
> >> > on long side
> >> >
> >> > You will have to see which one works best for you.
> >> >
> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >>
> >> >>
> >> >>
> >> >> any way i can make the thumbnails larger?  or is that just the size
> >> they
> >> >> come
> >> >> in from flickr?
> >> >>
> >> >>
> >> >>
> >> >> bmsterling wrote:
> >> >> >
> >> >> > Cool; I have not tested it using the lightbox plugin, can you let
> me
> >> >> know
> >> >> > how it turns out?
> >> >> >
> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> nevermind my last post about not understanding yoru code - that
> was
> >> >> just
> >> >> >> me
> >> >> >> being stupid.  i just looked at the lightbox plugin in more
> detail
> >> and
> >> >> >> answered my own questions duh.
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> bmsterling wrote:
> >> >> >> >
> >> >> >> > I guess a download link would have been useful:
> >> >> >> >
> >> >> >>
> >> >>
> >>
> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
> >> >> >> >
> >> >> >> > Thanks for catching that.
> >> >> >> >
> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >> >>
> >> >> >> >>
> >> >> >> >>
> >> >> >> >> ok that should work - now one last question... i dont see the
> >> >> download
> >> >> >> >> link
> >> >> >> >> for the plugin anywhere.
> >> >> >> >>
> >> >> >> >>
> >> >> >> >> bmsterling wrote:
> >> >> >> >> >
> >> >> >> >> > Check out my jqAlbumParser plugin, it will allow you to
> parse
> >> out
> >> >> a
> >> >> >> >> flickr
> >> >> >> >> > album and then execute any additional plugin:
> >> >> >> >> >
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
> >> >> >> >> >
> >> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >> i want to set up a photo gallery for a clients site and
> would
> >> >> like
> >> >> >> to
> >> >> >> >> use
> >> >> >> >> >> the
> >> >> >> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery
> >> >> LightBox
> >> >> >> >> plugin
> >> >> >> >> >> or somethign similar.  that par is easy but i would like to
> >> be
> >> >> able
> >> >> >> to
> >> >> >> >> >> use
> >> >> >> >> >> images from flickr.  that way the client would be able to
> >> update
> >> >> >> the
> >> >> >> >> >> images
> >> >> >> >> >> in the gallery whenever he needs to.
> >> >> >> >> >>
> >> >> >> >> >> has anyone done something like this or can suggest how to
> go
> >> >> about
> >> >> >> it?
> >> >> >> >> >> --
> >> >> >> >> >> View this message in context:
> >> >> >> >> >>
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
> >> >> >> >> >> Sent from the jQuery General Discussion mailing list
> archive
> >> at
> >> >> >> >> >> Nabble.com
> >> >> >> >> >> .
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >
> >> >> >> >> >
> >> >> >> >> > --
> >> >> >> >> > Benjamin Sterling
> >> >> >> >> > http://www.KenzoMedia.com
> >> >> >> >> > http://www.KenzoHosting.com
> >> >> >> >> > http://www.benjaminsterling.com
> >> >> >> >> >
> >> >> >> >> >
> >> >> >> >>
> >> >> >> >> --
> >> >> >> >> View this message in context:
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14420329.html
> >> >> >> >> Sent from the jQuery General Discussion mailing list archive
> at
> >> >> >> >> Nabble.com
> >> >> >> >> .
> >> >> >> >>
> >> >> >> >>
> >> 

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1


ok thats cool - i can fiddle with that.  one other questions though how
would i go about adding an onmouseover event handler to the images?

by the way - if i didnt say so before -  this is a really slick little
plugin - i just have to work out the styling.

bmsterling wrote:
> 
> No I don't how to center the image in the LI without doing a bunch of
> math,
> but what I normally do in my css is set the width and height of the LI and
> set the overflow:hidden.  I am sure there is some other css hackery that
> can
> be done, but I am not an expert.
> 
> On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> oh ok i see what you mean now.  seems to work.  now of course if i use
>> one
>> of
>> the other sizes, the pic are no longer uniform in width.  so is there a
>> way
>> that i could style it so that the li's are always 200px in width with the
>> image centered inside it?
>>
>> i tried adding:
>> $('li', this).css("width","140px");
>>
>> but it didn't seem to work.
>>
>>
>> bmsterling wrote:
>> >
>> > You would do something like:
>> >
>> > $('a.jqAlbumParser').jqAlbumParser({
>> > tnSize:1
>> > });
>> >
>> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> where do i find that?  i don't see those lines in the js file.
>> >>
>> >>
>> >> bmsterling wrote:
>> >> >
>> >> > Set the tnSize param to 0, 1, 2 for a different size:
>> >> >
>> >> >  * @param Integer tnSize
>> >> >  * This param takes in 0, 1,or 2 and will reference one
>> of
>> >> the
>> >> >  * thumbnail spots for picasa or flickr
>> >> >  * picasa: 0 == 72x48, 1 == 144x66, 2 == 288x192
>> >> >  * flickr: 0 == 75x75 or 1 == 100 on long side or 2
>> ==
>> >> 240
>> >> > on long side
>> >> >
>> >> > You will have to see which one works best for you.
>> >> >
>> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >> any way i can make the thumbnails larger?  or is that just the size
>> >> they
>> >> >> come
>> >> >> in from flickr?
>> >> >>
>> >> >>
>> >> >>
>> >> >> bmsterling wrote:
>> >> >> >
>> >> >> > Cool; I have not tested it using the lightbox plugin, can you let
>> me
>> >> >> know
>> >> >> > how it turns out?
>> >> >> >
>> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >> >> nevermind my last post about not understanding yoru code - that
>> was
>> >> >> just
>> >> >> >> me
>> >> >> >> being stupid.  i just looked at the lightbox plugin in more
>> detail
>> >> and
>> >> >> >> answered my own questions duh.
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >> >> bmsterling wrote:
>> >> >> >> >
>> >> >> >> > I guess a download link would have been useful:
>> >> >> >> >
>> >> >> >>
>> >> >>
>> >>
>> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
>> >> >> >> >
>> >> >> >> > Thanks for catching that.
>> >> >> >> >
>> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >> ok that should work - now one last question... i dont see the
>> >> >> download
>> >> >> >> >> link
>> >> >> >> >> for the plugin anywhere.
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >> bmsterling wrote:
>> >> >> >> >> >
>> >> >> >> >> > Check out my jqAlbumParser plugin, it will allow you to
>> parse
>> >> out
>> >> >> a
>> >> >> >> >> flickr
>> >> >> >> >> > album and then execute any additional plugin:
>> >> >> >> >> >
>> >> >> >> >>
>> >> >> >>
>> >> >>
>> >>
>> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
>> >> >> >> >> >
>> >> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >> >> >> >>
>> >> >> >> >> >>
>> >> >> >> >> >>
>> >> >> >> >> >> i want to set up a photo gallery for a clients site and
>> would
>> >> >> like
>> >> >> >> to
>> >> >> >> >> use
>> >> >> >> >> >> the
>> >> >> >> >> >> http://leandrovieira.com/projects/jquery/lightbox/ Jquery
>> >> >> LightBox
>> >> >> >> >> plugin
>> >> >> >> >> >> or somethign similar.  that par is easy but i would like
>> to
>> >> be
>> >> >> able
>> >> >> >> to
>> >> >> >> >> >> use
>> >> >> >> >> >> images from flickr.  that way the client would be able to
>> >> update
>> >> >> >> the
>> >> >> >> >> >> images
>> >> >> >> >> >> in the gallery whenever he needs to.
>> >> >> >> >> >>
>> >> >> >> >> >> has anyone done something like this or can suggest how to
>> go
>> >> >> about
>> >> >> >> it?
>> >> >> >> >> >> --
>> >> >> >> >> >> View this message in context:
>> >> >> >> >> >>
>> >> >> >> >>
>> >> >> >>
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
>> >> >> >> >> >> Sent from the jQuery General Discussion mailing list
>> archive
>> >> at
>> >> >> >> >> >> Nabble.com
>> >> >> >> >> >> .
>> >> >> >> >> >>
>> >> >> >> >> >>
>> >> >> >> >> >
>> >> >> >> >> >
>> >> >> >> >> > --
>> >> >> >> >> > Benjamin Sterling
>> >> >> >> >> > http://www.KenzoMedia.com
>> >> >> >> >

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
You can set up mouseovers in the param I sent you earlier.

$(".jqAlbumParser").jqAlbumParser({
pluginExec : function(){
//Assuming you want the MO on the A tag
$('a', this)
.mouseover(function(){
// mouse over stuff
})
.lightBox();// this refers to the list just created
}
});


On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> ok thats cool - i can fiddle with that.  one other questions though
> how
> would i go about adding an onmouseover event handler to the images?
>
> by the way - if i didnt say so before -  this is a really slick little
> plugin - i just have to work out the styling.
>
> bmsterling wrote:
> >
> > No I don't how to center the image in the LI without doing a bunch of
> > math,
> > but what I normally do in my css is set the width and height of the LI
> and
> > set the overflow:hidden.  I am sure there is some other css hackery that
> > can
> > be done, but I am not an expert.
> >
> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> oh ok i see what you mean now.  seems to work.  now of course if i use
> >> one
> >> of
> >> the other sizes, the pic are no longer uniform in width.  so is there a
> >> way
> >> that i could style it so that the li's are always 200px in width with
> the
> >> image centered inside it?
> >>
> >> i tried adding:
> >> $('li', this).css("width","140px");
> >>
> >> but it didn't seem to work.
> >>
> >>
> >> bmsterling wrote:
> >> >
> >> > You would do something like:
> >> >
> >> > $('a.jqAlbumParser').jqAlbumParser({
> >> > tnSize:1
> >> > });
> >> >
> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >>
> >> >>
> >> >>
> >> >> where do i find that?  i don't see those lines in the js file.
> >> >>
> >> >>
> >> >> bmsterling wrote:
> >> >> >
> >> >> > Set the tnSize param to 0, 1, 2 for a different size:
> >> >> >
> >> >> >  * @param Integer tnSize
> >> >> >  * This param takes in 0, 1,or 2 and will reference
> one
> >> of
> >> >> the
> >> >> >  * thumbnail spots for picasa or flickr
> >> >> >  * picasa: 0 == 72x48, 1 == 144x66, 2 == 288x192
> >> >> >  * flickr: 0 == 75x75 or 1 == 100 on long side or
> 2
> >> ==
> >> >> 240
> >> >> > on long side
> >> >> >
> >> >> > You will have to see which one works best for you.
> >> >> >
> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> any way i can make the thumbnails larger?  or is that just the
> size
> >> >> they
> >> >> >> come
> >> >> >> in from flickr?
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> bmsterling wrote:
> >> >> >> >
> >> >> >> > Cool; I have not tested it using the lightbox plugin, can you
> let
> >> me
> >> >> >> know
> >> >> >> > how it turns out?
> >> >> >> >
> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >> >>
> >> >> >> >>
> >> >> >> >>
> >> >> >> >> nevermind my last post about not understanding yoru code -
> that
> >> was
> >> >> >> just
> >> >> >> >> me
> >> >> >> >> being stupid.  i just looked at the lightbox plugin in more
> >> detail
> >> >> and
> >> >> >> >> answered my own questions duh.
> >> >> >> >>
> >> >> >> >>
> >> >> >> >>
> >> >> >> >> bmsterling wrote:
> >> >> >> >> >
> >> >> >> >> > I guess a download link would have been useful:
> >> >> >> >> >
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js
> >> >> >> >> >
> >> >> >> >> > Thanks for catching that.
> >> >> >> >> >
> >> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >> ok that should work - now one last question... i dont see
> the
> >> >> >> download
> >> >> >> >> >> link
> >> >> >> >> >> for the plugin anywhere.
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >> bmsterling wrote:
> >> >> >> >> >> >
> >> >> >> >> >> > Check out my jqAlbumParser plugin, it will allow you to
> >> parse
> >> >> out
> >> >> >> a
> >> >> >> >> >> flickr
> >> >> >> >> >> > album and then execute any additional plugin:
> >> >> >> >> >> >
> >> >> >> >> >>
> >> >> >> >>
> >> >> >>
> >> >>
> >>
> http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/
> >> >> >> >> >> >
> >> >> >> >> >> > On 12/19/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >> >> >> >>
> >> >> >> >> >> >>
> >> >> >> >> >> >>
> >> >> >> >> >> >> i want to set up a photo gallery for a clients site and
> >> would
> >> >> >> like
> >> >> >> >> to
> >> >> >> >> >> use
> >> >> >> >> >> >> the
> >> >> >> >> >> >> http://leandrovieira.com/projects/jquery/lightbox/Jquery
> >> >> >> LightBox
> >> >> >> >> >> plugin
> >> >> >> >> >> >> or somethign similar.  that par is easy but i would like
> >> to
> >> >> be
> >> >> >> able
> >> >> >> >> to
> >> >> >> >> >> >> use
> >> >> >> >> >> >> images from flickr.  that way the client would be able
> to
> >> >> update
> >> >> >> >> the
> >> >> >> >> >> >> images
> >> >> >> >> >> >> in the gallery whenever he needs 

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-22 Thread bdee1


ok so i just dropped the code into a site template and it seems to work fine
in IE but in firefox, it displays the gallery over and over again with weird
layout.  can youplease take a look?  the url is 
http://beta.asset-guardians.com/portfolio.html
http://beta.asset-guardians.com/portfolio.html 

you can see all the code by just doign a view source.

any help would be greatly appreciated!
-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-23 Thread Benjamin Sterling
I looks fine to me, can you send me a screen shot of the issue?

On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> ok so i just dropped the code into a site template and it seems to work
> fine
> in IE but in firefox, it displays the gallery over and over again with
> weird
> layout.  can youplease take a look?  the url is
> http://beta.asset-guardians.com/portfolio.html
> http://beta.asset-guardians.com/portfolio.html
>
> you can see all the code by just doign a view source.
>
> any help would be greatly appreciated!
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-23 Thread bdee1


actually i think i just got it working - stupid me forgot to put the   tag.  


bmsterling wrote:
> 
> I looks fine to me, can you send me a screen shot of the issue?
> 
> On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> ok so i just dropped the code into a site template and it seems to work
>> fine
>> in IE but in firefox, it displays the gallery over and over again with
>> weird
>> layout.  can youplease take a look?  the url is
>> http://beta.asset-guardians.com/portfolio.html
>> http://beta.asset-guardians.com/portfolio.html
>>
>> you can see all the code by just doign a view source.
>>
>> any help would be greatly appreciated!
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14481707.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-26 Thread bdee1


ok so it is working well but the client is asking how he can change the order
of the pictures.  it seems like with flickr you can add photos to "sets" and
set a specific order, but there doesnt seem to be an rss feed for "sets",
only for tagged photos.  but there seems to be no way to set the order of
tagged photos.

how can i make this work fro my client?


bmsterling wrote:
> 
> I looks fine to me, can you send me a screen shot of the issue?
> 
> On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> ok so i just dropped the code into a site template and it seems to work
>> fine
>> in IE but in firefox, it displays the gallery over and over again with
>> weird
>> layout.  can youplease take a look?  the url is
>> http://beta.asset-guardians.com/portfolio.html
>> http://beta.asset-guardians.com/portfolio.html
>>
>> you can see all the code by just doign a view source.
>>
>> any help would be greatly appreciated!
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-26 Thread Benjamin Sterling
At best, you can set it to randomize the returned json, but with the current
set up, you can't order it or grab a certain set.

On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> ok so it is working well but the client is asking how he can change the
> order
> of the pictures.  it seems like with flickr you can add photos to "sets"
> and
> set a specific order, but there doesnt seem to be an rss feed for "sets",
> only for tagged photos.  but there seems to be no way to set the order of
> tagged photos.
>
> how can i make this work fro my client?
>
>
> bmsterling wrote:
> >
> > I looks fine to me, can you send me a screen shot of the issue?
> >
> > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> ok so i just dropped the code into a site template and it seems to work
> >> fine
> >> in IE but in firefox, it displays the gallery over and over again with
> >> weird
> >> layout.  can youplease take a look?  the url is
> >> http://beta.asset-guardians.com/portfolio.html
> >> http://beta.asset-guardians.com/portfolio.html
> >>
> >> you can see all the code by just doign a view source.
> >>
> >> any help would be greatly appreciated!
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
> >> Sent from the jQuery General Discussion mailing list archive at
> >> Nabble.com
> >> .
> >>
> >>
> >
> >
> > --
> > Benjamin Sterling
> > http://www.KenzoMedia.com
> > http://www.KenzoHosting.com
> > http://www.benjaminsterling.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-26 Thread bdee1


really?   man that could really be a problem for me then.  he needs them to
be in a specific order.  wish i knew that before i started.


bmsterling wrote:
> 
> At best, you can set it to randomize the returned json, but with the
> current
> set up, you can't order it or grab a certain set.
> 
> On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> ok so it is working well but the client is asking how he can change the
>> order
>> of the pictures.  it seems like with flickr you can add photos to "sets"
>> and
>> set a specific order, but there doesnt seem to be an rss feed for "sets",
>> only for tagged photos.  but there seems to be no way to set the order of
>> tagged photos.
>>
>> how can i make this work fro my client?
>>
>>
>> bmsterling wrote:
>> >
>> > I looks fine to me, can you send me a screen shot of the issue?
>> >
>> > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> ok so i just dropped the code into a site template and it seems to
>> work
>> >> fine
>> >> in IE but in firefox, it displays the gallery over and over again with
>> >> weird
>> >> layout.  can youplease take a look?  the url is
>> >> http://beta.asset-guardians.com/portfolio.html
>> >> http://beta.asset-guardians.com/portfolio.html
>> >>
>> >> you can see all the code by just doign a view source.
>> >>
>> >> any help would be greatly appreciated!
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
>> >> Sent from the jQuery General Discussion mailing list archive at
>> >> Nabble.com
>> >> .
>> >>
>> >>
>> >
>> >
>> > --
>> > Benjamin Sterling
>> > http://www.KenzoMedia.com
>> > http://www.KenzoHosting.com
>> > http://www.benjaminsterling.com
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14509070.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-26 Thread Benjamin Sterling
Well, like I said, as of right now, can do sets, but if he/she is willing to
append a number infront of the file names you can probably do a sort and get
it in order.

The best place in the code to do that is at about line 223, just swap out
the if statement there with your sort code.

On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> really?   man that could really be a problem for me then.  he needs them
> to
> be in a specific order.  wish i knew that before i started.
>
>
> bmsterling wrote:
> >
> > At best, you can set it to randomize the returned json, but with the
> > current
> > set up, you can't order it or grab a certain set.
> >
> > On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> ok so it is working well but the client is asking how he can change the
> >> order
> >> of the pictures.  it seems like with flickr you can add photos to
> "sets"
> >> and
> >> set a specific order, but there doesnt seem to be an rss feed for
> "sets",
> >> only for tagged photos.  but there seems to be no way to set the order
> of
> >> tagged photos.
> >>
> >> how can i make this work fro my client?
> >>
> >>
> >> bmsterling wrote:
> >> >
> >> > I looks fine to me, can you send me a screen shot of the issue?
> >> >
> >> > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >>
> >> >>
> >> >>
> >> >> ok so i just dropped the code into a site template and it seems to
> >> work
> >> >> fine
> >> >> in IE but in firefox, it displays the gallery over and over again
> with
> >> >> weird
> >> >> layout.  can youplease take a look?  the url is
> >> >> http://beta.asset-guardians.com/portfolio.html
> >> >> http://beta.asset-guardians.com/portfolio.html
> >> >>
> >> >> you can see all the code by just doign a view source.
> >> >>
> >> >> any help would be greatly appreciated!
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> Nabble.com
> >> >> .
> >> >>
> >> >>
> >> >
> >> >
> >> > --
> >> > Benjamin Sterling
> >> > http://www.KenzoMedia.com
> >> > http://www.KenzoHosting.com
> >> > http://www.benjaminsterling.com
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
> >> Sent from the jQuery General Discussion mailing list archive at
> >> Nabble.com
> >> .
> >>
> >>
> >
> >
> > --
> > Benjamin Sterling
> > http://www.KenzoMedia.com
> > http://www.KenzoHosting.com
> > http://www.benjaminsterling.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14509070.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-26 Thread bdee1


ok so the other thing the client was requesting was to be able to get
captions into the lightbox effect.  i know that i just need to add the
caption to the title attribute of the a tags.  and it looks like the plugin
pulls the flickr caption as the alt tag for the image but how could i have
it set the title tag for each a tag to the same value as the alt tag for
each image?


bmsterling wrote:
> 
> At best, you can set it to randomize the returned json, but with the
> current
> set up, you can't order it or grab a certain set.
> 
> On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> ok so it is working well but the client is asking how he can change the
>> order
>> of the pictures.  it seems like with flickr you can add photos to "sets"
>> and
>> set a specific order, but there doesnt seem to be an rss feed for "sets",
>> only for tagged photos.  but there seems to be no way to set the order of
>> tagged photos.
>>
>> how can i make this work fro my client?
>>
>>
>> bmsterling wrote:
>> >
>> > I looks fine to me, can you send me a screen shot of the issue?
>> >
>> > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> ok so i just dropped the code into a site template and it seems to
>> work
>> >> fine
>> >> in IE but in firefox, it displays the gallery over and over again with
>> >> weird
>> >> layout.  can youplease take a look?  the url is
>> >> http://beta.asset-guardians.com/portfolio.html
>> >> http://beta.asset-guardians.com/portfolio.html
>> >>
>> >> you can see all the code by just doign a view source.
>> >>
>> >> any help would be greatly appreciated!
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
>> >> Sent from the jQuery General Discussion mailing list archive at
>> >> Nabble.com
>> >> .
>> >>
>> >>
>> >
>> >
>> > --
>> > Benjamin Sterling
>> > http://www.KenzoMedia.com
>> > http://www.KenzoHosting.com
>> > http://www.benjaminsterling.com
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14509107.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-26 Thread Benjamin Sterling
Change line 193 to:

 var $a = $('').attr('href',photos[i]['full']['url']);

On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> ok so the other thing the client was requesting was to be able to get
> captions into the lightbox effect.  i know that i just need to add the
> caption to the title attribute of the a tags.  and it looks like the
> plugin
> pulls the flickr caption as the alt tag for the image but how could i have
> it set the title tag for each a tag to the same value as the alt tag for
> each image?
>
>
> bmsterling wrote:
> >
> > At best, you can set it to randomize the returned json, but with the
> > current
> > set up, you can't order it or grab a certain set.
> >
> > On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> ok so it is working well but the client is asking how he can change the
> >> order
> >> of the pictures.  it seems like with flickr you can add photos to
> "sets"
> >> and
> >> set a specific order, but there doesnt seem to be an rss feed for
> "sets",
> >> only for tagged photos.  but there seems to be no way to set the order
> of
> >> tagged photos.
> >>
> >> how can i make this work fro my client?
> >>
> >>
> >> bmsterling wrote:
> >> >
> >> > I looks fine to me, can you send me a screen shot of the issue?
> >> >
> >> > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >>
> >> >>
> >> >>
> >> >> ok so i just dropped the code into a site template and it seems to
> >> work
> >> >> fine
> >> >> in IE but in firefox, it displays the gallery over and over again
> with
> >> >> weird
> >> >> layout.  can youplease take a look?  the url is
> >> >> http://beta.asset-guardians.com/portfolio.html
> >> >> http://beta.asset-guardians.com/portfolio.html
> >> >>
> >> >> you can see all the code by just doign a view source.
> >> >>
> >> >> any help would be greatly appreciated!
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> Nabble.com
> >> >> .
> >> >>
> >> >>
> >> >
> >> >
> >> > --
> >> > Benjamin Sterling
> >> > http://www.KenzoMedia.com
> >> > http://www.KenzoHosting.com
> >> > http://www.benjaminsterling.com
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
> >> Sent from the jQuery General Discussion mailing list archive at
> >> Nabble.com
> >> .
> >>
> >>
> >
> >
> > --
> > Benjamin Sterling
> > http://www.KenzoMedia.com
> > http://www.KenzoHosting.com
> > http://www.benjaminsterling.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14509107.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-30 Thread bdee1


ok i think i woudl like to do that - have him append a number to the
beginnign of each file.  but i am not sure i follow your code on line 223.

what are o and r in your function?
and what is goign on in this function?



bmsterling wrote:
> 
> Well, like I said, as of right now, can do sets, but if he/she is willing
> to
> append a number infront of the file names you can probably do a sort and
> get
> it in order.
> 
> The best place in the code to do that is at about line 223, just swap out
> the if statement there with your sort code.
> 
> On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> really?   man that could really be a problem for me then.  he needs them
>> to
>> be in a specific order.  wish i knew that before i started.
>>
>>
>> bmsterling wrote:
>> >
>> > At best, you can set it to randomize the returned json, but with the
>> > current
>> > set up, you can't order it or grab a certain set.
>> >
>> > On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> ok so it is working well but the client is asking how he can change
>> the
>> >> order
>> >> of the pictures.  it seems like with flickr you can add photos to
>> "sets"
>> >> and
>> >> set a specific order, but there doesnt seem to be an rss feed for
>> "sets",
>> >> only for tagged photos.  but there seems to be no way to set the order
>> of
>> >> tagged photos.
>> >>
>> >> how can i make this work fro my client?
>> >>
>> >>
>> >> bmsterling wrote:
>> >> >
>> >> > I looks fine to me, can you send me a screen shot of the issue?
>> >> >
>> >> > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >> ok so i just dropped the code into a site template and it seems to
>> >> work
>> >> >> fine
>> >> >> in IE but in firefox, it displays the gallery over and over again
>> with
>> >> >> weird
>> >> >> layout.  can youplease take a look?  the url is
>> >> >> http://beta.asset-guardians.com/portfolio.html
>> >> >> http://beta.asset-guardians.com/portfolio.html
>> >> >>
>> >> >> you can see all the code by just doign a view source.
>> >> >>
>> >> >> any help would be greatly appreciated!
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
>> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> Nabble.com
>> >> >> .
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >> > --
>> >> > Benjamin Sterling
>> >> > http://www.KenzoMedia.com
>> >> > http://www.KenzoHosting.com
>> >> > http://www.benjaminsterling.com
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
>> >> Sent from the jQuery General Discussion mailing list archive at
>> >> Nabble.com
>> >> .
>> >>
>> >>
>> >
>> >
>> > --
>> > Benjamin Sterling
>> > http://www.KenzoMedia.com
>> > http://www.KenzoHosting.com
>> > http://www.benjaminsterling.com
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14509070.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14549408.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-30 Thread Benjamin Sterling
o is the Object/Array
r is for random

If the randomized option is set to true, line 224 will "shuffle" the
Object/Array.

On 12/30/07, bdee1 <[EMAIL PROTECTED]> wrote:
>
>
>
> ok i think i woudl like to do that - have him append a number to the
> beginnign of each file.  but i am not sure i follow your code on line 223.
>
> what are o and r in your function?
> and what is goign on in this function?
>
>
>
> bmsterling wrote:
> >
> > Well, like I said, as of right now, can do sets, but if he/she is
> willing
> > to
> > append a number infront of the file names you can probably do a sort and
> > get
> > it in order.
> >
> > The best place in the code to do that is at about line 223, just swap
> out
> > the if statement there with your sort code.
> >
> > On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >> really?   man that could really be a problem for me then.  he needs
> them
> >> to
> >> be in a specific order.  wish i knew that before i started.
> >>
> >>
> >> bmsterling wrote:
> >> >
> >> > At best, you can set it to randomize the returned json, but with the
> >> > current
> >> > set up, you can't order it or grab a certain set.
> >> >
> >> > On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >>
> >> >>
> >> >>
> >> >> ok so it is working well but the client is asking how he can change
> >> the
> >> >> order
> >> >> of the pictures.  it seems like with flickr you can add photos to
> >> "sets"
> >> >> and
> >> >> set a specific order, but there doesnt seem to be an rss feed for
> >> "sets",
> >> >> only for tagged photos.  but there seems to be no way to set the
> order
> >> of
> >> >> tagged photos.
> >> >>
> >> >> how can i make this work fro my client?
> >> >>
> >> >>
> >> >> bmsterling wrote:
> >> >> >
> >> >> > I looks fine to me, can you send me a screen shot of the issue?
> >> >> >
> >> >> > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> ok so i just dropped the code into a site template and it seems
> to
> >> >> work
> >> >> >> fine
> >> >> >> in IE but in firefox, it displays the gallery over and over again
> >> with
> >> >> >> weird
> >> >> >> layout.  can youplease take a look?  the url is
> >> >> >> http://beta.asset-guardians.com/portfolio.html
> >> >> >> http://beta.asset-guardians.com/portfolio.html
> >> >> >>
> >> >> >> you can see all the code by just doign a view source.
> >> >> >>
> >> >> >> any help would be greatly appreciated!
> >> >> >> --
> >> >> >> View this message in context:
> >> >> >>
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
> >> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> >> Nabble.com
> >> >> >> .
> >> >> >>
> >> >> >>
> >> >> >
> >> >> >
> >> >> > --
> >> >> > Benjamin Sterling
> >> >> > http://www.KenzoMedia.com
> >> >> > http://www.KenzoHosting.com
> >> >> > http://www.benjaminsterling.com
> >> >> >
> >> >> >
> >> >>
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
> >> >> Sent from the jQuery General Discussion mailing list archive at
> >> >> Nabble.com
> >> >> .
> >> >>
> >> >>
> >> >
> >> >
> >> > --
> >> > Benjamin Sterling
> >> > http://www.KenzoMedia.com
> >> > http://www.KenzoHosting.com
> >> > http://www.benjaminsterling.com
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14509070.html
> >> Sent from the jQuery General Discussion mailing list archive at
> >> Nabble.com
> >> .
> >>
> >>
> >
> >
> > --
> > Benjamin Sterling
> > http://www.KenzoMedia.com
> > http://www.KenzoHosting.com
> > http://www.benjaminsterling.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14549408.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com
> .
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
http://www.benjaminsterling.com


[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-31 Thread bdee1


ok so actually i ended up tryign out the picasa web albums and it is really
nice because it allows you to upload up to a gig or so of photos for free
and it lets you change the order of them.  so that solved the ordering
problem.  woo hoo.

only reminign question is how to handle the captions.  the captions seem to
be comign through as the rss item titles.  so how could i make the captions
coem through properly in the captions for lightbox?


bmsterling wrote:
> 
> o is the Object/Array
> r is for random
> 
> If the randomized option is set to true, line 224 will "shuffle" the
> Object/Array.
> 
> On 12/30/07, bdee1 <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> ok i think i woudl like to do that - have him append a number to the
>> beginnign of each file.  but i am not sure i follow your code on line
>> 223.
>>
>> what are o and r in your function?
>> and what is goign on in this function?
>>
>>
>>
>> bmsterling wrote:
>> >
>> > Well, like I said, as of right now, can do sets, but if he/she is
>> willing
>> > to
>> > append a number infront of the file names you can probably do a sort
>> and
>> > get
>> > it in order.
>> >
>> > The best place in the code to do that is at about line 223, just swap
>> out
>> > the if statement there with your sort code.
>> >
>> > On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >> really?   man that could really be a problem for me then.  he needs
>> them
>> >> to
>> >> be in a specific order.  wish i knew that before i started.
>> >>
>> >>
>> >> bmsterling wrote:
>> >> >
>> >> > At best, you can set it to randomize the returned json, but with the
>> >> > current
>> >> > set up, you can't order it or grab a certain set.
>> >> >
>> >> > On 12/26/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >> ok so it is working well but the client is asking how he can change
>> >> the
>> >> >> order
>> >> >> of the pictures.  it seems like with flickr you can add photos to
>> >> "sets"
>> >> >> and
>> >> >> set a specific order, but there doesnt seem to be an rss feed for
>> >> "sets",
>> >> >> only for tagged photos.  but there seems to be no way to set the
>> order
>> >> of
>> >> >> tagged photos.
>> >> >>
>> >> >> how can i make this work fro my client?
>> >> >>
>> >> >>
>> >> >> bmsterling wrote:
>> >> >> >
>> >> >> > I looks fine to me, can you send me a screen shot of the issue?
>> >> >> >
>> >> >> > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote:
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >> >> ok so i just dropped the code into a site template and it seems
>> to
>> >> >> work
>> >> >> >> fine
>> >> >> >> in IE but in firefox, it displays the gallery over and over
>> again
>> >> with
>> >> >> >> weird
>> >> >> >> layout.  can youplease take a look?  the url is
>> >> >> >> http://beta.asset-guardians.com/portfolio.html
>> >> >> >> http://beta.asset-guardians.com/portfolio.html
>> >> >> >>
>> >> >> >> you can see all the code by just doign a view source.
>> >> >> >>
>> >> >> >> any help would be greatly appreciated!
>> >> >> >> --
>> >> >> >> View this message in context:
>> >> >> >>
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14474371.html
>> >> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> >> Nabble.com
>> >> >> >> .
>> >> >> >>
>> >> >> >>
>> >> >> >
>> >> >> >
>> >> >> > --
>> >> >> > Benjamin Sterling
>> >> >> > http://www.KenzoMedia.com
>> >> >> > http://www.KenzoHosting.com
>> >> >> > http://www.benjaminsterling.com
>> >> >> >
>> >> >> >
>> >> >>
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14508959.html
>> >> >> Sent from the jQuery General Discussion mailing list archive at
>> >> >> Nabble.com
>> >> >> .
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >> > --
>> >> > Benjamin Sterling
>> >> > http://www.KenzoMedia.com
>> >> > http://www.KenzoHosting.com
>> >> > http://www.benjaminsterling.com
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14509070.html
>> >> Sent from the jQuery General Discussion mailing list archive at
>> >> Nabble.com
>> >> .
>> >>
>> >>
>> >
>> >
>> > --
>> > Benjamin Sterling
>> > http://www.KenzoMedia.com
>> > http://www.KenzoHosting.com
>> > http://www.benjaminsterling.com
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14549408.html
>> Sent from the jQuery General Discussion mailing list archive at
>> Nabble.com
>> .
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14560017.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.