[Flashcoders] RE: swf behaving differently in different domain and other issues loading swf (Isaac Alves)

2009-09-23 Thread Isaac Alves
update:

in the acoriana website, the flash-menu is now working perfectly in
Firefox, i fixed the problem.

but it still remains the mistery of not loading swf in IE6 .

cheers!


Message: 16
Date: Wed, 23 Sep 2009 11:28:59 -0300
From: Isaac Alves isaacal...@gmail.com
Subject: [Flashcoders] swf behaving differently in different domain
   and other issues loading swf
To: flashcoders@chattyfig.figleaf.com
Message-ID:
   9719fa510909230728x6270b640lc703cc61cf3ad...@mail.gmail.com
Content-Type: text/plain; charset=ISO-8859-1

Good morning,

I´ve been experiencing some problems with swf files.

First one:

http://www.swingebalada.com.br/index.php

In this website, the logo and menu animations work nice when the home
page is loaded (index.php)
But in the internal pages (i.e: index.php?cmd=eventos) the animation
doesn´t happen.

The header swf file doesn´t receive any parameter in the internal pages.
What-s going on?

Second problem:

In this website, the menu works perfectly in the internal server of
our network, and in this case, the swf file receives a parameter to
highlight the menu item of the page that is currently opened.
Unfortunatelly I cannot give you access to it, but I can send the fla
and swf file , just in case.

But on this page it just doesn´t work:

http://clientes.agenciahive.com.br/acoriana/index.php

In Firefox, the swf gets loaded but the links doesn´t work, and the
animations sometimes stuck. In IE6, the swf doesn´t even get loaded
and it throws an error.

Thanks a lot !!
Isaac

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] RE: swf behaving differently in different domain and other issues loading swf (Isaac Alves)

2009-09-23 Thread Keith Reinfeld
That's the third time you've ignored me...

I'm done.



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] RE: swf behaving differently in different domain and other issues loading swf (Isaac Alves)

2009-09-23 Thread Hans Wichman
I fear this might be the 4th, I feel your pain:)

On Wed, Sep 23, 2009 at 8:54 PM, Keith Reinfeld
keithreinf...@comcast.netwrote:

 That's the third time you've ignored me...

 I'm done.



 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] RE: swf behaving differently in different domain and other issues loading swf (Isaac Alves)

2009-09-23 Thread Keith Reinfeld
Thanks Hans, 

I'm not saying a given OP needs to respond to every post in a thread, but
this was so blatant. 

Regards,

Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Hans Wichman
Sent: Wednesday, September 23, 2009 2:37 PM
To: Flash Coders List
Subject: Re: [Flashcoders] RE: swf behaving differently in different domain
and other issues loading swf (Isaac Alves)

I fear this might be the 4th, I feel your pain:)

On Wed, Sep 23, 2009 at 8:54 PM, Keith Reinfeld
keithreinf...@comcast.netwrote:

 That's the third time you've ignored me...

 I'm done.



 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] RE: swf behaving differently in different domain and other issues loading swf (Isaac Alves)

2009-09-23 Thread Isaac Alves
Hi, both problems solved!

The first one was easy, actually there was a conditional that was
stopping the animation whenever the swf file was loaded inside an
internal page, that is, not the home page. ( I didn´t realize it
before cause the code was a bit messy and was made by someone else).

The second problem was tricky. There swf was embedded via jQuery (see
code below) and there were some javascript functions inside the same
file that were stopping the swf file to be loaded inside IE6. So we
had to check the functions one by one to see which ones were stopping
the swf to load.

hope this will help someone else .

Cheers!

var cmdpaginaflash = $('#flashvar_cmd').val();
var langpaginaflash = $('#lang').val();

// Menu
$('.nav').flash({
swf: 'swf/nav.swf',
width: 208,
height: 231,
wmode: 'transparent',
expressInstall: true,
flashvars: {
cmd: cmdpaginaflash,
lang: langpaginaflash
}
});

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders