Is there a way to work with the desktop application for juicebox builder pro and then when I'm finished with the gallery publish that gallery to wordpress?

Yes.
(1) Create your gallery with JuiceboxBuilder-Pro
(2) Upload your complete gallery folder (not just the contents) to your web server via FTP using a program such as Filezilla
(3) Create a new post and use the baseUrl method to embed your gallery (ensuring that the method of entry in your post is 'HTML' rather than 'Visual')
For example, if your domain name is 'www.example.com' and your gallery folder is named 'my_gallery_folder' and you uploaded your gallery folder to the root of your web space, then the embedding code you would enter would be:

<!--START JUICEBOX EMBED-->
<script src="http://www.example.com/my_gallery_folder/jbcore/juicebox.js"></script>
<script>
  new juicebox({
      containerId : 'juicebox-container',
      baseUrl : 'http://www.example.com/my_gallery_folder/',
      galleryWidth : '100%',
      galleryHeight : '600'
  });
  </script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

Alternatively, you might like to try the dedicated Juicebox plugin for WordPress - WP-Juicebox.

This web page may be of use.
It looks like you would need to sign up to followgram to create your Instagram vanity url and you could then use the script to read the RSS feed and fetch the relevant information (image URLs).
You would then need to format the information (stored in the array created by the getFollowgram() method) into the correct syntax required by Juicebox (replacing the HTML code at the bottom of the script).

5,603

(5 replies, posted in Juicebox-Lite Support)

The Lightroom plugin can be updated from Juicebox-Lite to Juicebox-Pro by following the instructions on this page: http://www.juicebox.net/support/lightroom/
Please note that upgrading the plugin will not change the interface within Lightroom and the 'Upgrade to Juicebox-Pro' button will still be visible.
However, the Juicebox badge (at the bottom-right corner of the live preview window) should be gone, indicating that the plugin is using the Juicebox-Pro files.
You can add Juicebox-Pro Config Options to your gallery created with the Lightroom plugin by either:
(1) Opening and editing the gallery with JuiceboxBuilder-Pro, or...
(2) Opening the gallery's 'config.xml' file in a plain text editor and manually adding the Pro Options as attributes to the opening <juiceboxgallery> tag

On further investigation, the problem is caused by your use of jQuery Mobile.
You will need to add the attribute rel="external" to the link to your 'Weddings.html' page on your 'portfolio.html' page, i.e.:

<li><a href="Weddings.html" rel="external">Weddings</a></li> 

Please see the Link formats documentation for jQuery Mobile for more information.

5,605

(4 replies, posted in Juicebox-Pro Support)

Your audio now plays in Firefox 13.0.1 on my PC.
Try clearing your browser's cache before reloading your gallery.

5,606

(8 replies, posted in Juicebox-Pro Support)

If you wish to use the URL of the actual image itself rather than the URL of the gallery displaying the image, then you can get it using the getImageInfo() method of the Juicebox-Pro API and pass that along to the Facebook Like button instead.

5,607

(4 replies, posted in Juicebox-Pro Support)

Your audioUrlMp3 and audioUrlOgg are currently:

audioUrlMp3="http://www.robertmunozphotography/music/SymphonyNo6Movement5.mp3" audioUrlOgg="http://www.robertmunozphotography/music/SymphonyNo6Movement5.ogg"

They should be:

audioUrlMp3="http://www.robertmunozphotography.net/music/SymphonyNo6Movement5.mp3" audioUrlOgg="http://www.robertmunozphotography.net/music/SymphonyNo6Movement5.ogg"

5,608

(8 replies, posted in Juicebox-Pro Support)

I have not yet been able to implement the Facebook Like button into the caption area but I have been able to display a like button for individual images (whose URL changes each time a new image is selected within the gallery) rather than just for the entire gallery. Please see this post for details.

5,609

(5 replies, posted in Juicebox-Lite Support)

Try launching Lightroom, then go to 'Lightroom -> Preferences', select the 'Presets' tab and click the 'Show Lightroom Presets Folder' button.
The presets folder should open up in a new window. Now go into the 'Lightroom' folder and either go into or create the 'Web Galleries' folder there and then copy 'juicebox.lrwebengine' into the 'Web Galleries' folder.

Try validating the code on your web page with the W3C Markup Validation Service and fix the errors reported.
Once the code validates OK, your web page function correctly.

Your page loads the 'juicebox.js' file twice. Only one instance is required.

Try removing the <p> and </p> tags from around the embedding code. <p> </p> tags should not contain block-level elements such as the gallery's <div> container.

Also, try using folder names that do not contain spaces. As each folder forms part of a URL when it is uploaded to a web server, it would be wise to use only web-safe characters for files and folders.
Please see section 2.3 of this document for details.

Characters that are allowed in a URI but do not have a reserved purpose are called unreserved. These include uppercase and lowercase letters, decimal digits, hyphen, period, underscore, and tilde.

5,611

(5 replies, posted in Juicebox-Lite Support)

the location of the library folder seemed to be in a different location. i did find it, and had to create a 'Web Galleries'

What was the location where you created your 'Web Galleries' folder?
The instructions on this page should be accurate for Lightroom 4 (which is required for the plugin).

5,612

(2 replies, posted in Juicebox-Pro Support)

You can do the same as you currently do with SimpleViewer by using Juicebox's configUrl option to point to a specific XML file.
A description of the configUrl option can be found here.
The embedding code for your first gallery might look something like this:

<!--START JUICEBOX EMBED-->
<script src="./resources/jbcore/js/juicebox.js"></script>
<script>
new juicebox({
containerId : 'juicebox-container',
galleryWidth: '900',
galleryHeight: '900',
backgroundColor: '#222222',
configUrl : 'galleries/1-HAR2-12.xml'
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

5,613

(8 replies, posted in Juicebox-Pro Support)

Juicebox works fine alongside a Facebook Like button.
There are a couple of things to bear in mind, though.

(1) If you are trying to insert a Facebook Like button into the 'index.html' page of a 100% x 100% gallery, the gallery will take up the entire browser window so if you place the button after the embedding code, it will be pushed off the bottom of the browser window and will not be displayed. You would need to either reduce the size of your gallery to accommodate the button or position the button on the page via CSS and give it a high 'z-index' value (so that it is stacked above the gallery layer) in order for the button to be active.
For example, if using the HTML5 implementation of the button, you would change the line:

<div class="fb-like" data-href="http://www.example.com" data-send="false" data-width="450" data-show-faces="true"></div>

... to:

<div class="fb-like" style="position: absolute; top: 50px; left: 10px; z-index: 999;" data-href="http://www.example.com" data-send="false" data-width="450" data-show-faces="true"></div>

(2) The button will be displayed only when your web page has been uploaded to a web server. It will not be displayed when you preview your web page locally in a browser on your computer.

5,614

(7 replies, posted in Juicebox-Pro Support)

Setting enableTouchZoom="TRUE" will allow users to touch zoom within the bounds set by the values in the viewport <meta> tag.
If you set 'initial-scale=1' and 'maximum-scale=1', then the gallery will initially be displayed at the maximum zoom scale.
The user could zoom out but not in. You could, however, set 'initial-scale=1' and 'maximum-scale=2' to allow the user to zoom in beyond the default scale value.
For more information on the viewport <meta> tag, please see this web page.

5,615

(7 replies, posted in Juicebox-Pro Support)

On a regular web page, the 'maximum-scale' setting determines how far the user can zoom into the page.
In a 100% x 100% or expanded Juicebox gallery on a mobile device, this value is automatically set to 1 which is why you see no difference in removing it.

5,616

(7 replies, posted in Juicebox-Pro Support)

Thank you for the screenshots. I now see what you mean.
Try adding the following code to the <head> section of your web page:

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

5,617

(7 replies, posted in Juicebox-Pro Support)

What device and version of iOS are you using, and could you perhaps upload a screenshot somewhere? Thank you.
I have tried Chrome on my iPod Touch 4 iOS 5.1.1 and a standard gallery (such as this one) is truncated at the bottom due to the address bar at the top but it does not sound like the pixel density issue you are experiencing.

5,618

(2 replies, posted in Juicebox-Lite Support)

I generated the gallery simply enough, but wasn't sure why it uses the index.html filename if I want to put it in a secondary page.

If embedding the gallery in an existing web page alongside other content, then the gallery's own 'index.html' file is not required.
This can simply be used to display the gallery on its own page if you like.

Also, I am using Dreamweaver.

Please see the note for Dreamweaver users here.

First I copied and pasted just the code generated into my html document, but nothing happened.

As you have discovered, you also need to upload your gallery files to your web server.

Then I copied the entire folder with all the files generated, images, jbcore, thumbs, config & index to my script folder in the assets panel of DW, but knew that couldn't be right, and again, nothing happened.

Try the following. In this example, the gallery folder will be called 'my_gallery'.
(1) Upload your entire gallery folder (not just the contents) to your webserver via FTP.
It does not matter where on your web server you upload it to as long as you know where it is.
(2) Paste the following code into your page in Dreamweaver.

<!--START JUICEBOX EMBED-->
<script src="http://www.example.com/my_gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : 'juicebox-container',
baseUrl : 'http://www.example.com/my_gallery/'
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

... changing the two URLs in the code above depending on the location of your gallery folder.
This baseUrl method of embedding (which allows you to upload complete gallery folders in their entirety) is documented here.

5,619

(5 replies, posted in Juicebox-Pro Support)

The gallery in your second URL works OK because no elements on the page have been assigned a 'z-index'.
When 'z-index' is assigned to containers on your page (such as the page in your first URL), the only way to ensure that the gallery displays on top of all elements in your gallery in fullscreen mode is to make the gallery's background opacity 1. If the background opacity is less than 1, the main image should still be displayed on top of all other elements but it is not.
I have been able to replicate this problem and have logged a bug report so hopefully it will be fixed in the next version.

5,620

(5 replies, posted in Juicebox-Pro Support)

This seems to be related to the opacity of the gallery and the use of 'z-index' (a CSS property used to specify the stack order of elements) on your web page.
If I remove all instances of 'z-index' from your web page, the expanded gallery displays on top of all elements.
(Leaving all instances of 'z-index' on your web page, positioning the gallery's <div> absolutely and giving it a 'z-index' greater than any other element on your page does not seem to help.)
Alternatively, if I change the opacity of the gallery from 0 to 1, the expanded gallery, once again, displays on top of all elements.
I will log a bug report but hopefully my findings above will allow you to find a suitable workaround in the meantime.

5,621

(2 replies, posted in Juicebox-Pro Support)

Then it switch to fullscreen and starts the music again an parallel to the playing music.

Thank you for reporting. I have now logged a bug report.

The other thing ist, by closing the fullscreenbutton other browserwindows which are opened and using the flash plugin crashes???

I use a OsX plattform and never had any problem with that.

This is a known bug (which seems to affect only Safari on OS X) which should hopefully be fixed in the next version.

The link to your web site does not seem to be correct. It results in an error 404 (file not found).
However, I have been able to replicate the first bug you reported and the second bug has already been logged.

5,622

(7 replies, posted in Juicebox-Pro Support)

So in summary, the MUSE application is generating the error in the app and in browser preview mode.

As suggested, this may be due to a security restriction similar to local previewing issues in Google Chrome and Opera browsers.

the main image doesn't scale down.

The main image does not scale down because the gallery is likely to be embedded in a parent container whose dimensions are expressed as absolute pixel values. Check the CSS of your page to confirm this theory.
Even if the gallery's own dimensions are 100% x 100%, if it is nested inside a <div> with dimensions of, for example, 1024px x 768px, then then gallery will always be displayed at 1024px x 768px regardless of the size of the browser window (as 100% of 1024px = 1024px and 100% of 768px = 768px).
For the gallery to dynamically scale with the size of the browser window, the dimensions of the gallery and all parent containers must be expressed as percentages. Any fixed size up the chain will result in just that - a fixed size.

The slideshow seems to operate but the thumbs don't display
...
The gallery configured to display thumbs is on the PEOPLE page.

The thumbnails are displayed when I view the gallery in browsers on my PC.
If you have made any changes to your gallery recently, you may need to clear your browser's cache before reloading the gallery. Your browser may be hanging onto (and using) an older version of your gallery's XML file.

5,623

(1 replies, posted in Juicebox-Pro Support)

Please post feature requests in this thread. It keeps them all together in one place and ensures that they are not overlooked.
Thank you.

5,624

(7 replies, posted in Juicebox-Pro Support)

Please post the URL to the web page into which you are embedding your gallery so that I can take a look.

5,625

(1 replies, posted in Juicebox-Pro Support)

Thank you, again, for sharing this new script with the Juicebox community.
Hopefully, someone will benefit from your time and effort.