126

(3 replies, posted in Juicebox-Pro Support)

Hello.
Thank you for purchasing Juicebox-Pro.
I'm sorry you're having such a poor first experience with Juicebox-Pro, though.
I hope my notes below help to clarify a few things.

1. Preview screen freezes

This is a known issue and is due to using a version of AIR without support for WebKit (the embedded browser which JuicboxBuilder-Pro uses for the live preview window on the 'Customize' panel).
The solution is to use the most recent version of AIR with WebKit. This is currently AIR v33.1.1.744 which can be downloaded from the foot of the AIR download page here: https://airsdk.harman.com/runtime
Please see this forum post for more details: https://juicebox.net/forum/viewtopic.php?id=5318

2. Adobe Air is no longer being made

Although Adobe no longer supports AIR themselves, AIR is actually still alive and well. Adobe has passed the development of AIR on to a company called Harman. You can check out their website here: https://airsdk.harman.com/
Also, you can check out the AIR development status over on their GitHub site: https://github.com/airsdk/Adobe-Runtime-Support

3. No response from support email

I'm very sorry about that.
Please let me know what email address you used to contact us and also where you found it (was it in a purchase email or somewhere on our website) so that I can investigate and fix the problem or change the email address if necessary. Thank you.
(We recently had a problem which was noted earlier in the week whereby the support email address on Gumroad receipts was out of date. This was fixed a couple of days ago.)

Once again, I'm sorry that you've had such a rocky start with Juicebox-Pro.
However, Juicebox and AIR are still both supported and using AIR v33.1.1.744 should hopefully resolve your issue with JuiceboxBuilder-Pro. (Just be sure to uninstall any other version of AIR that you might have installed first.)

Please let me know how you get on and if I can be of any further assistance.
Thank you.

127

(3 replies, posted in Juicebox-Pro Support)

I expect the empty space to the right of the Button Bar is due to Juicebox reserving space for the Expand Button but your gallery sets showExpandButton="FALSE". I do not think you'd see the space if your gallery were to set showExpandButton="TRUE" instead.

Setting a Button Bar icon to FALSE should not result in empty space to the right of the Button Bar (this is, indeed, a bug) but, the way Juicebox has been designed, the Expand Button should be displayed (even though your gallery sets showExpandButton="FALSE").
Using the Splash Page to expand the gallery is, internally, no different to using the Expand Button and if either the Splash Page or Expand Button are being used, then the Expand Button (in its Close Gallery state) ought to be present to allow the visitor to close the expanded gallery. (At least, that's how I expect the developers envisioned this functionality.)
There is no way to have the Expand Gallery button present but hide the Close Gallery button. Likewise, if using the Splash Page.

Long story short, it's a bug but it's a known bug which has already been logged and will hopefully be fixed in a future version.
In the meantime, the workaround is to set showExpandButton="TRUE" (which is essentially what the bugfix will likely do anyway).

Also, with regard to your your first note, you could perhaps use JavaScript to add #expanded to your link but only on mobile devices. Maybe something like this:

<a id="link">Link goes here.</a>
<script>
    var isMobile = /Android|BlackBerry|iemobile|iPad|iPhone|iPod|Nexus|Opera Mini|webOS|Windows Phone|WPDesktop/i.test(navigator.agent);
    var linkSrc = 'http://www.example.com/index.html' + (isMobile ? '#expanded' : '');
    document.getElementById('link').setAttribute('href', linkSrc);
</script>

Otherwise, for the Juicebox-Pro API suggestion, something like this might work:

<script src="jbcore/juicebox.js"></script>
<script>
    var jb = new juicebox({
        containerId: "juicebox-container",
        galleryHeight: "400",
        galleryWidth: "600",
        showExpandButton: "TRUE"
    });
    jb.onInitComplete = function() {
        var isMobile = /Android|BlackBerry|iemobile|iPad|iPhone|iPod|Nexus|Opera Mini|webOS|Windows Phone|WPDesktop/i.test(navigator.agent);
        if (isMobile) {
            jb.toggleExpand();
        }
    };
</script>
<div id="juicebox-container"></div>

Whatever mechanism you use to detect a mobile device, it will likely differ slightly from Juicebox's own logic which determines whether to use Small Screen Mode or Large Screen Mode but you should be able to get quite close and catch most cases.

128

(3 replies, posted in Juicebox-Pro Support)

Unfortunately, there's no easy way to force a gallery to go expand automatically. Juicebox was not designed with this in mind.

You could try adding #expanded to the URL you use in your 'Entrer' link to the gallery but I can't guarantee it'll work (or be trouble-free).

Otherwise, you could maybe use the Juicebox-Pro API to trigger a gallery expansion on loading the gallery.
Something like this:

<script src="jbcore/juicebox.js"></script>
<script>
    var jb = new juicebox({
        containerId: "juicebox-container",
        galleryHeight: "400",
        galleryWidth: "600",
        showExpandButton: "TRUE"
    });
    jb.onInitComplete = function() {
        jb.toggleExpand();
    };
</script>
<div id="juicebox-container"></div>

I'm not sure if this will help but I hope that it points you in the right direction.

I presume my suggestions did not help.

Using AIR v33.1.1.744 and opening JuiceboxBuilder-Pro with Rosetta has been known to work for other M1 users on Ventura (see here, for example) so it should work for you, too.

If you are still experiencing problems, try completely uninstalling both AIR and JuiceboxBuilder-Pro (following the procedure noted as #11 here) before reinstalling them.
Just remember to install AIR v33.1.1.744 (and not the very latest version, AIR v33.1.1.932) when you come to install/reinstall AIR.

More information on using Rosetta can be found here.

You're welcome!

I'm glad it works for you.
Thank you for letting me know!

I'm sorry to hear that you've been having so much trouble with JuiceboxBuilder-Pro.
Here are a few notes which should hopefully help.

I added the code in terminal...

the Terminal App lines (noted here) were required to overcome an issue that was present in AIR when Catalina was first introduced.
Harman (the developers of AIR) have since fixed this issue and the Terminal App lines are no longer required with more recent versions of AIR.

Please be sure to use the latest version of AIR with WebKit support. (WebKit is the embedded browser that JuiceboxBuilder-Pro uses for the live preview of the gallery on the 'Customize' panel.)
This is currently AIR v33.1.1.744 which can be downloaded from the foot of the AIR download page here: https://airsdk.harman.com/runtime
Here is a direct link to the Mac version:
Mac: https://airsdk.harman.com/assets/downlo … obeAIR.dmg

(Harman removed WebKit from more recent versions of AIR and if you were to use the very latest version (currently AIR v33.1.1.932), you might run into one of the problems documented here.)

Also, as you have a Mac with M1 hardware, you may need to open JuiceboxBuilder-Pro using Rosetta.
This is noted as a Known Issue on the AIR download page (link above) and it's also mentioned here in our forum.

I hope these notes help you to get JuiceboxBuilder-Pro up and running.

Hi.

Surprised there is no mention about using html symbols in the titles and captions, to change font format and to add links (for example to go to the next gallery).

The use of HTML in image titles and captions is mentioned in this FAQ (admittedly, links aren't mentioned, though):
How do I add HTML formatting to image captions and titles?

There is one problem I cannot solve: the space in the images between title and caption is quite large...

You could try using CSS to change the margin for either the title or the caption.
Try adding something like the following into your embedding page's <head> section.
Either:

<style>
    /* IMAGE TITLE */
    .jb-caption .jb-caption-title {
        margin-bottom: -10px !important;
    }
</style>

... or:

<style>
    /* IMAGE CAPTION */
    .jb-caption .jb-caption-desc {
        margin-top: -10px !important;
    }
</style>

I hope this helps.

The default resize dimensions for medium size images of 1024 x 768 usually give a good compromise between image quality and image size (which has a bearing on speed of loading).

There's certainly no point in increasing the resize dimensions to be larger than the dimensions of the source images. If the source images are smaller (in resolution) than the resize dimensions, then JuiceboxBuilder will just copy the source images across to the output gallery directory (it will not upscale them).

However, you might like to increase the resize dimensions (maybe to 1080 or 1152 wide), especially if your site's target audience is likely to be viewing your images on high resolution or high pixel density monitors.
Juicebox itself will dynamically downsize the images (if necessary and as long as imageScaleMode is set to SCALE_DOWN or SCALE) when the gallery is being displayed/viewed to fit within the gallery's image area so users with smaller monitors will not notice any difference (other than the fact that the images might take a little longer to load) but users with larger monitors will benefit from the higher resolution images.

With internet connections becoming faster and faster these days, the slightly longer loading time for larger images might not be an issue for most users but it is something to keep in mind as not everyone has a fast connection.

Having said that, Juicebox-Pro preloads images (see imagePreloading in the Main Image section of the Config Options page) so any image loading delay for larger images will be minimal and, if noticeable at all, may only be apparent on the first image.

135

(3 replies, posted in Juicebox-Lite Support)

Working now,

That's great! Thank you for letting me know.

Just a couple of notes which might help to clarify things (maybe for other users reading this thread)...

... will try moving stuff to eliminate the configUrl

Just for the record, having looked at your code and site, you should have been able to just eliminate the configUrl entry from your embedding code without having to move any files around (as your gallery's configuration file was named 'config.xml and was located directly inside the baseUrl gallery folder).

Looking at the inspector in Firefox helped, the error was "CORS Missing Allow Origin"

Using relative paths is usually the best way to avoid CORS issues.
If you use an absolute path in your embedding code which starts with https:// and includes the www subdomain (for example), then a visitor to your site would have to use https:// and www for the URL in their browser's address bar. If the visitor used http:// or omitted www, then this could trigger a CORS issue. If relative paths are used, such issues can be avoided.

Also, if you were to use absolute paths in your embedding code, then you'd need to ensure that they all use the same protocol (http:// vs https://) and the same domain/subdomain. If there's a mismatch, then the gallery would likely not be displayed, no matter what a visitor might use for the URL in their browser's address bar.

Incidentally, relative paths can either:
(1) be relative to the web page containing the embedding code.
... or:
(2) start with a leading slash which denotes your root directory (and, in doing so, you can build up the relative path starting from the root, rather than the directory that the embedding page is in).

... have a wonderful Christmas.

Thanks! You, too!

136

(8 replies, posted in Juicebox-Lite Support)

Hi.
I've had a reply from AVG. Here are the relevant quotes from it:

I understand that AVG has detected reported apps as a threat, but I can't reproduce the detection right now.

... the user should adjust AVG settings. He should remove the protected folder from Ransomware Shield or allow the app - https://support.avg.com/SupportArticleV … tType=home. Unfortunately, this is not a false positive, but incorrect settings.

It's a shame that you need to change AVG's settings for JuiceboxBuilder to work correctly but at least we have a workaround.

137

(8 replies, posted in Juicebox-Lite Support)

Thank you for the update.
I've now filed a false positive report with AVG. Hopefully they can resolve the problem in a future database update. Juicebox users should not have to whitelist JuiceboxBuilder in order for it to work correctly.

The first time I got the error I was a bit concerned that Juicebox would replace my original image files.

You don't need to worry about that. JuiceboxBuilder will either copy your original images to the gallery's output folder (if the 'Resize Images' checkbox is deselected) or place resized copies of the original images in the gallery's output folder. Your original images will always remain untouched in their original locations.

138

(3 replies, posted in Juicebox-Lite Support)

Your code looks like it should work online but if you're trying to view it locally, it's possibly failing due to having a mix of file:/// and https:// protocols (file:/// when loading the gallery's embedding page and the use of https:// in the embedding code paths).

When you use a baseUrl and your configuration file is named 'config.xml' and is located directly inside the gallery folder (default name and location), then you don't need to use a configUrl at all. You can remove the configUrl from your embedding code and that'll be one less path to worry about.

Also, you could try using relative paths for your 'juicebox.js' path and baseUrl (relative to the web page containing the embedding code) instead of absolute paths (starting with https://). This should work online and locally (after you've made the necessary Firefox browser tweak noted here).

139

(8 replies, posted in Juicebox-Lite Support)

Thank you for the update.
I'm glad to hear that you've found the cause of the problem (but sorry that you've encountered a problem at all).

I'd be very grateful if you could let me know further details about the problem so that I can file a false positive report with AVG (so that they can clear JuiceboxBulder-Lite's reputation in a future database update).

Please let me know the AVG module that is triggering the error (e.g. real-time detection, ransomware, etc.).
Also please let me know the AVG version number and virus database version number that you currently use.

AVG may also ask for the following:

  • A screenshot of the AVG detection dialog.

  • A screenshot of the AVG virus database (open AVG Antivirus and go to Menu > About).

You could post the screenshots here in the forum, upload them somewhere (e.g. Dropbox or Google Drive) and provide links or email them to me (you'll find my email address in the column to the left of this post).

Thanks for your help.

140

(8 replies, posted in Juicebox-Lite Support)

If all else fails, you could resize your image in a different imaging program (such as Photoshop) prior to using them in JuiceboxBuilder-Lite.
Then, when feeding them to JuiceboxBuilder-Lite, be sure to deselect the 'Resize Images' checkbox (on the 'Images' panel) and JuiceboxBuilder-Lite will just copy the files across to the output gallery folder without processing them.

141

(8 replies, posted in Juicebox-Lite Support)

I'm sorry to hear that you are having trouble resizing your images.
Images of less than 4095 x 4095 should be able to be resized OK.

What resize dimensions have you chosen (Max Width and Max Height)?
If you are not already using the default values (Max Width 1024 and Max Height 768), then please try the default values, at least for troubleshooting purposes, to see if this helps.

Otherwise, the images might somehow be corrupt. Even corrupt metadata (which might not be noticeable when opening the images in other imaging programs) could be enough to cause a problem.
Try opening one of your images in an imaging program (such as Photoshop) and resaving it (without editing it) to see if this makes a difference.

I hope this helps.
However, if you continue to experience difficulties, then perhaps you could upload one of your source images somewhere (e.g. Dropbox, Google Drive) and post a link to it here in the forum so that I can download the image and try to replicate the problem myself.
With access to one of the images that is giving you trouble, I might be able to figure out the cause of the problem.
Thank you.

142

(0 replies, posted in Tricks and Tips)

Please note that JuiceboxBuilder does not read or use the EXIF orientation flags (which may or may not be embedded within source images) and simply displays the images as they are, with no dynamic rotation based on the flags.

If necessary, you can rotate an image in JuiceboxBuilder by selecting its corresponding thumbnail on the Images panel and then clicking the Rotate Button near the bottom-right corner of the panel.

If an image displays in an unexpected orientation in JuiceboxBuilder, then the best thing to do is to remove the EXIF data from the image (in an imaging program such as Photoshop) and then rotate the image until it is visibly correct.

When JuiceboxBuilder resizes images for a gallery, it strips out all metadata, so if an image looks OK in JuiceboxBuilder (where metadata is not used), then it should also look OK in the gallery (where metadata is not present).

143

(3 replies, posted in Tricks and Tips)

Follow-up info regarding M1 Mac/OS 13.0 Ventura: https://juicebox.net/forum/viewtopic.php?id=5338

144

(9 replies, posted in Juicebox-Pro Support)

You're welcome!
I'm glad you've got it working. Thanks for letting me know. It's most appreciated.
Best wishes!

145

(9 replies, posted in Juicebox-Pro Support)

I'm glad you've got the ability to preview your galleries locally working.

The Filezilla problem is probably something that you might need to work out with your web host.
A Juicebox gallery's files are really just regular files that you might find on any web site (HTML, JavaScript, CSS image and font files) and there really shouldn't be any difficulty in uploading them to a web hosting account's web space.
Your web host should be able to help you out with this.

Incidentally, Juicebox galleries do not use a database at all so it'll not have anything to do with any databases that you might have set up on your hosting account.

Does Filezilla give any indication as to the nature of the failure (maybe an error code or a more detailed description of the reason for the failure) that might point us in the right direction?

146

(9 replies, posted in Juicebox-Pro Support)

You're gallery's XML file looks fine (no errors).

The information in the FAQ (https://www.juicebox.net/support/faq/#local) is still relevant and should work OK.
It is important to note that you can only preview galleries locally (from your computer's hard drive) in Firefox or Safari and only after changing the setting noted in the FAQ.
It is not possible to preview galleries locally in any other browser.

Please let me know what browser (and version number) you are using and please confirm that you have changed the relevant setting in your browser's configuration options.

This only applies to previewing galleries locally. There is no issue once the galleries have been uploaded to a web server where they can be viewed in any modern browser without any settings needing to be changed.

If you have uploaded a gallery to a web server and still see the 'Config file not found.' error message, then please post a link to the dysfunctional gallery so that I can see the problem for myself.
Once I can see the problem live on your web server, I should be able to determine the exact cause of the problem and propose a solution.
Thank you.

(The easiest way to upload and view a gallery is to upload the entire gallery folder to your web server (with an FTP program such as Filezilla) and then open the 'index.html' page (inside the gallery folder) in a browser.)

147

(9 replies, posted in Juicebox-Pro Support)

You're welcome. Thanks for the update!
Of course, I should have read back and realised that you were running JuiceboxBulder-Lite so the AIR and Rosetta tips were not required.
I hope all goes well with Juicebox-Pro and your project.

148

(9 replies, posted in Juicebox-Pro Support)

Link sent.
Many apologies for the delay. I hope you get on well with Juicebox-Pro.

Here are a couple of tips in case you encounter any issues out-of-the-gate.

#1 Be sure to use AIR v33.1.1.744. See here for details: https://juicebox.net/forum/viewtopic.php?id=5318

#2 If you have a Mac with M1 or M2 hardware, you may need to run JuiceboxBuilder-Pro with Rosetta: https://juicebox.net/forum/viewtopic.php?id=5289

Sorry, once again, for the delay in processing your purchase.

149

(9 replies, posted in Juicebox-Pro Support)

Loading the AIR v33.1.1.744 version  it worked , I could build my gallery.

That's great! Thank you for letting me know.

I have a grey screen with the message "Juicebox Error: Config file not found".

Please see this FAQ for an explanation and workaround: https://www.juicebox.net/support/faq/#local

I cannot either load it with filezilla  as it says "no file directory found "

I'm not sure what you mean by this. Please explain this problem in more detail and I'll do my best to help you out.
Thank you.

150

(9 replies, posted in Juicebox-Pro Support)

I'm really sorry. I've not heard back from my colleague yet. I emailed him on a personal email address (so he'll definitely receive my message) and he has access to the company PayPal account (so should be able to see your transaction) so when I do hear back, it should be with positive news.
I hope you understand that I can't send out a link at the moment as I have no way of confirming that the payment has reached us.
I know it must be very frustrating for you. It's also frustrating for me. I'd love to help but my hands are tied at the moment. I'm having to rely on someone else to help resolve the problem, just like yourself.
I've sent my colleague another email marked urgent.
Fingers crossed I can resolve this for you soon.
Thanks again for your patience.