Stupid JS / Flash issue

Hello,

I’m trying to use ShadowBox with a flash image gallery i made, I have this in my flash file:

onRelease = function(){ getURL("javascript:openSBox('" + link + "')");} 

and this code in my HTML:


<script type="text/javascript" src="src/js/shadowbox.js"></script>
<script type="text/javascript">
window.onload = function(){
    Shadowbox.init();
};
function openSBox(page) {
       Shadowbox.open(page);
};
</script>

if I replace Shadowbox.open(page) with alert(page) it works, but I can’t figure out why shadowbox doesn’t like it’s own code !?

!!UPDATE!!

Today I replaced my button in flash with :


    img_info.imglLink.onRelease = function() {
        if (ExternalInterface.available) {
            ExternalInterface.call("Shadowbox.open({type:'img',content:'"+infostruc[current-1].imglLink+"'});");
        } else {
            getURL("javascript:Shadowbox.open({type:'img',content:'"+infostruc[current-1].imglLink+"'});", "_self");
        }
    };

kept the same javascript … and it STILL doesn’t work, but I did start getting an error from the javascript : ! match has no properties anybody familiar with shadowbox ??

I’m trying to implement some shadowbox code to. Having problems also. Still i have accomplished to make it work with single images, I have not succeded on creating a gallery.,

my html code is:

<link rel="stylesheet" type="text/css" href="css/shadowbox.css">
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/scriptaculous.js?load=effects"></script>
<script type="text/javascript" src="js/shadowbox-prototype.js"></script>
<script type="text/javascript" src="js/shadowbox.js"></script>
<script type="text/javascript">

var name1, title1;
function test1(name1, title1){

    Shadowbox.init();

    Shadowbox.open({
    title: title1,    
    type: 'img', 
    content: '/'+ name1
    });
               };

Flash AS Code:


pictures_btn.onPress = function()
{
   getURL("javascript:test1(\'file.jpg\', \'File Name\')", "");
};

I haven’t done this with ShadowBox, but I have with Lightbox and it shouldn’t be too different. Two things first chaps, in case you don’t know, you have to make sure that the files are uploaded to your server, or else what your trying to accomplish will not work. I have attached a working example (with Lightbox) for you to toy around with, let me know if you have questions.

_aA

thanks action^2

:thumb2:

No problem!

@JChristian: I believe that your specific issue is that you are not calling your JS function which calls the ShadowBox function when you use ExternalInterface. If you are going to use ExternalInterface, you should call the function like this:


//ExternalInterface.call(Function Name [, parameter1, parameter2, parameterN])
ExternalInterface.call("openSBox",link);

ExternalInterface has a hard time with JS functions located in different files, calling your inline function that calls your external js function is a much more reliable way of accomplishing this.

[quote=actionAction;2325097]I haven’t done this with ShadowBox, but I have with Lightbox and it shouldn’t be too different. Two things first chaps, in case you don’t know, you have to make sure that the files are uploaded to your server, or else what your trying to accomplish will not work. I have attached a working example (with Lightbox) for you to toy around with, let me know if you have questions.

_aA[/quote]

Looking more in to flash and lightbox comunication I came up with this site on google.

http://www.bram.us/projects/flashlightboxinjector/

Is a JS that works with the latest LBox package

Hi – I’m trying to implement Shadowbox on my Flash site as well. Just starting to give it a whirl anyway. I’ve got a number of logos of company’s that we’ve done work for and would like to, upon click of each logo, open the respective image, .swf, url, etc. in Shadowbox. Right now, I’ve got a centered pop-up that I believe I got from one of the kirupa tutorials actually :slight_smile: but with pop-up blockers being what they are, it’s not so conducive.

Based on what I see being tried in this thread I’m wondering if anyone has it working properly? I took a look at Bram.us site and that’s primarily for use with lightbox which doesn’t support html or .swf – just images. And the pictureflow that does support Shadowbox I’m having trouble figuring out how to place the application exactly where I want it IN my flash app. So any thoughts on any/all of the above is hugely appreciated! Thanks in advance!

[color=#282827]I agree with you !I support you .[/color]

I found the solution: Lightbox ++

http://www.codefidelity.com/blog/?page_id=7

it doesn’t do HTML, I’m working on hacking it into this code.