Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








PHP - Flash Interaction


Hello!

I've got a problem: I can't get some variables loaded into my flash movie. It is meant for a login script. The actionscript, which posts the key:

on (release) {
loadVariablesNum("http://localhost/onderzoek-online/site2/dev/Login.php", 0, "GET");
if (access == 1)
{getURL("http://www.onderzoek-online.nl", "_blank", "GET");}
else
{gotoAndStop(15);}
}

The PHP (test) script:

<?PHP
if($HTTP_GET_VARS["key"] == "correct-login")
{
echo "access=1";
}
else
{
echo "access=0";
}
?>

Thanks for helping me.




FlashKit > Flash Help > Flash ActionScript
Posted on: 05-30-2002, 10:27 AM


View Complete Forum Thread with Replies

Sponsored Links:

Flash Interaction?
can flash files interact with each other???

What I mean is if I have a menu...and then I create a display window, can the menu send requests to the display window....so If in the menu I choose FAQ, I would want to tell the display window to list the FAQ links..or list etc...??

Can flash do that?

View Replies !    View Related
Help About Php And Flash Interaction
hi i want to ask you that i want to pick data music files from php database to flash player how can i pick that do you have any solution or know a site about it anything like that...

View Replies !    View Related
Flash / PHP Interaction
Hi Guys,

A friend of mine has produced a flash movie and he wanted me to write some basic shopping cart code to use with it. Now I had read about the 'asfunction' function that allows you to call an ActionScript function from an HTML anchor if it is loaded within the movie.

So the set up was to have a bunch of buttons down the left, and a text area on the right which would have HTML loaded into it. The buttons each make a call to my php script something like this...

myVar = loadVariables('gateway.php?catid=1');
textarea.htmlText = myVar;

In return my script obviously provides some HTML, this html contains one or more 'asfunction' call that will tell the movie to do something useful.

So what we have is say three basic functions, AddToCart, RemoveFromCart and Checkout. There is a function for each IN Actionscript that knows what variables to throw at my script, my script in turn has functions for each to manipulate the session stored cart.

My problem, is that I don't understand the variable/function scopes within flash, amongst other things, so I can't put it together as well as I suggested to him, I'm looking for anyone that's familiar with 'asfunction' and integrating flash/php to lend a hand, for a seasoned pro I imagine this problem will take a few minutes to sort out.

Thanks in advance,
Baris

View Replies !    View Related
The Interaction 3d In Flash
Hello

i am trying to create a easy system, that will create 3d objekt direkly from programing. This system will be able to move the points whit a bone system, that will make it able to get a person walk an jump around, in flash from programing...

I need you help me, specifie the system, so it will be perfeck to be publish thaks

I hope that you will help me, whit this by anwsering some question, for me, at this page, it is only a 7 question

http://www.unrealhuman.dk/skema/default.php

Thanks

View Replies !    View Related
Php And Flash Interaction
Hello all who read this.

I am able to get flash to send variables to php, and to get php to supply flash with variables, but my problem is that I need to be able to do both at once.

I need flash to send a few variables to a php script and then the script return a value to flash indicating the success or failure of the functions it performs with these variables, and I don't know how.

Any help on the subject would be greatly appreciated.

Thank you.

View Replies !    View Related
Interaction With Flash
Hello,

I have been searching for an answer for weeks now, but I can't find any solutions. Maybe I can get help here. How can one interact with flash. For example, how is it possible to operate links, buttons or scrollbars shown within Flash. How can I programmatically, for instance with JavaScript or the InternetExporer ActiveX control, interact with such Flash pages. This MUST! be possible. Here a link to a certain site. => Flash application with buttons, links and scrollbar. I even would pay for an answer of my question, I mean it.

View Replies !    View Related
Flash Interaction Help
Hi, i was just wondering if someone could give me some help!!

Im developing a interaction with movie clip playing on each stage and consists of 3 buttons each going to a different stage.
I need to know is there away of pressing the button that it plays another video (acting like a transition) on the same stage before it it switches to the stage that its designated to? If so what is the scripting behind it?

It would be much appreciated for any help! before i go flash crazeeee!
thanks
JB3

View Replies !    View Related
Interaction Web And AS (Flash)
Hi,

Is it possible :
- from PHP page to pass parameters to Flash (SWF) file ?
- from Flash (SWF) file to retrieve parameter to PHP page ?

i'm asking that because i would like to do the following things :
- in my PHP page, user will select interface language and automatically
the flash should turn all text strings (located inside the flash) into
selected language.
- Flash animation should be able to retrieve variable value from
PHP/HTML in order to use them like : read/save from/to database postgresql.

thanks a lot,

A.

View Replies !    View Related
Interaction Between Flash & Php ?
hey girls and boys,
is it possible to let flash act depending on php-set vars?

e.g. if on my page in php the var $var = "whatever";

then flash acts like this:

if (var = "whatever") {
gotoAndPlay(5);
}

or anything similar to that !?

that would be great

thank you

View Replies !    View Related
Flash And PHP Interaction 1 Way But Not The Other
I've seen this done and tried reading tutorials but im getting no where!

here it is:
I can send variables from flash >> php >> mysql database

problem is i cant do it the other way, dont know if PHP is wrong or the flash. Can any one advise ? to keep simple at this stage, i have 1 column "firstName" in the mysql database, there could be 10 or 100 names but i want flash to do the work of knowing and displaying them all, so always keeping the list up to date! i have been trying now 6hours LOL, no smart comments PLZ but any help is much much much appreciated.

what i tried with failure!
Flash side (field is instance name of text field on stage)

Code:
myLVars = new LoadVars();
myLVars.load("flashScript.php");
myLVars.onLoad = function(ret) {
if (ret) {
trace(this.firstname);
field.text = myLVars.firstname;

}
};
PHP side, just the displaying attempt

Code:
$query = "SELECT * FROM $table";
$result = mysql_query($query, $conn);
while ($row = mysql_fetch_array($result)) {
echo "firstname=".$row["firstname"];}
ALL i get is UNDEFINED in the final text field ! dont even think this will display the entire list of names would it? would it?

thanks guys, plz help a lad in need

View Replies !    View Related
Vb & Flash Interaction
I have created a flash movie with a quit buttion and loading that using vb form. and sendind values from flash to vb using fscommand("quit"), but while i am closing the vb form using unload me it hands , but it works with end command. how to solve this

View Replies !    View Related
PHP - Flash Interaction
Hello!

I've got a problem: I can't get some variables loaded into my flash movie. It is meant for a login script. The actionscript, which posts the key:

on (release) {
loadVariablesNum("http://localhost/onderzoek-online/site2/dev/Login.php", 0, "GET");
if (access == 1)
{getURL("http://www.onderzoek-online.nl", "_blank", "GET");}
else
{gotoAndStop(15);}
}

The PHP (test) script:

<?PHP
if($HTTP_GET_VARS["key"] == "correct-login")
{
echo "access=1";
}
else
{
echo "access=0";
}
?>

Thanks for helping me.

View Replies !    View Related
HTML And Flash Interaction
i need help:

I just need select form in Flash whose show filename choise...

in HTML that lok like this:
<select>
<option>aa
<option>as
....
</select>

maybe is posible send variables to php, whose make select form, and on press submit button send back a choise...

What is the best wey:...

thx

View Replies !    View Related
Flash And HTML Interaction
Hey, i've encountered a problem. I am working on a website, and it is mostly done in html. On the top i have the navigation, which is a drop down menu made in html etc. Below the menu is a flash movie and everytime you mouseover the menu, and it drops down, it drops behind the flash movie, making it impossible to see or make a selection. How do i get it so the html menu drops in front of the flash movie so you can use it. I would greatly greatly appreciate your help, as im trying to get this ASAP. Thanks a million guys - Jeff

View Replies !    View Related
Html And Flash Interaction
hey guys

ive seen numerous posts on this topic before but i honestly couldnt find any or anything in the movies or tutorials.

i want to make it so that my html links can tell the swf file what to do. like rollovers, clicking etc....

thanks all

View Replies !    View Related
Audio Interaction In Flash
hello friends,

This is senthil. I am using flash MX. I want to create a character that speaks in synchronization with the audio file. ie, if the audio file says " hi..................how...................are..... ..............you" the character should animate................animate..................an imate................animate. clearly speaking.if the wave output of the audio file is none, than the character will be silent.if the wave output is raising then the character should also animate.is there any provision? am new to scripting.unfortunately my first project in my office happened to be this one.so guyn n gals whoever know it pls do send me a reply to

senthilarularasu@yahoo.com

thank you

note: pls this is very urgent. am online n refreshing the page again n again for replies.

View Replies !    View Related
Flash/video Interaction?
Question: are there any video formats or methods which would allow controlling a video through Flash? Example: use Flash buttons to jump to different scenes of a video

View Replies !    View Related
Html Interaction With Flash
Greetings,

Here is an example of what I'm trying to accomplish:

When the end user rolls over a .gif on an html page, I would like to send a command to a flash movie located on the same page as the .gif. The command I want to send to the flash movie is a "go to frame and play" command.

I'm sure this is possible, even if there is a "creative" way around the problem.

In case you are wondering 'why not embed the gif inside the swf?' Well... because. Ok? Just because. There's a reason that requires a lengthy explanation with very little payoff.

Thanks in advance for your assistance.

View Replies !    View Related
Interaction Between Two Flash Files
Thnks Bill
but can u explain it how it happen...

View Replies !    View Related
Interaction Between Flash And Html: Is It Possible?
Is it possible to command the content of a flash movie with a html button?

example: in my html page I've got a movie called movie.swf with an empty clip, let's call it img. I want to load other clips or images into that movieclip. Normally I'd use a

on (release) {
loadMovie("imm/1.swf", "_root.img");
}

command; is it possible to do the same with a html link on the same page?

View Replies !    View Related
Interaction Between Two Flash Objects
How to make interaction betwwen two flash objects in a webpage?
Thanks

View Replies !    View Related
Best Way To Approach PHP To Flash Interaction
I am making a multi-user flash program. When one client makes a change, the other clients need to be notified. The simplest way of doing this would be a php file that returns whether or not there has been an update, and then just have the client repeatedly loadVars on it. The problem with this is that tons of unnecessary queries are made, and there is a maximum update time (ie: if the client checks every 10 seconds, it would take 5 seconds on average for an update to go though (disregarding latency), and it could take almost 10 seconds).

Best way would be to have a server, have all the clients connect to it, and then have the server send updates. Big problem with this way is that firewalls can break the game, and getting the server to work. I am not sure whether I’d do better to write the server in PHP (which I have never tried) or whether I should write the server as a C++ daemon, and then have the PHP scripts connect to it to send commands… (I might have answered my own question, typing seems to slow my sleep deprived thought processes enough for my sleep deprived brain to understand them). Plus I could use a hybred arch, where if the game can not connect to the server (due to firewalls, it having crashed), it can refresh through load vars - and players using load vars when the server was known to be working could only be allowed to play on slow settings with other slow players.

What do you experts think the best approach would be?

View Replies !    View Related
JQuery & Flash Interaction...
Hi all,

has anyone had any experience of getting javascript created using jQuery & flash to communicate with each other through the external interface?

I have no experience of JS or jquery but a client has built a site with it & PHP. On a page he has my flash app (a resizable graph with labels) & a multi-column table with information that pertains to the labels. When the label is clicked on the graph, the table needs to highlight/expand the relevant cell. When the table cell is clicked, the flash app needs to move to the relevant position.

In order to quote reasonably I need to know if this requires hand editing of the JS code created by jquery or is it much simpler? My understanding of these things pretty much stops at the external interface call.

Many thanks,

PMF

View Replies !    View Related
Php-flash Interaction Reference
I noticed some php-flash interaction related questions here lately, so just some nice starting references I saw (all from MM devnet)

http://www.macromedia.com/devnet/mx/...ashmx_php.html
http://www.macromedia.com/devnet/mx/...es/amfphp.html

View Replies !    View Related
Cross Flash Interaction
I have a movie looping in one swf which I would like to control from another Flash movie. I want to tell the looping movie on click to stop and start another movie in the same flash

View Replies !    View Related
Flash And HTMl Interaction
Hi every one I wanted to ask this little thingi

can you specify a frame name in an html hyper link to go to that frame in the swf file when clicked

View Replies !    View Related
Flash Interaction Question
Scenario:

I have a menu with 7 items. I have rollovers and rollouts. When you click on a menu item, it loads a MC that displays content.

Problem:

If they click on a different menu item how do i check to see if a MC is loaded in the content area, and then if there is one, it should reverse that MC and replace it with the new one.


Idea:

set a varible (IsMovieLoaded) to true or false whenever a MC is loaded, if the varible is true it will use a prevFrame loop to close it. and then proceed to open the new one.


Is this the best way or is there an easier way?


Case

View Replies !    View Related
ASP Flash Interaction - Too Many Variables
hi,
i created a huge flash application and i need it to interact with an ASP file that interacts wiht a database. But when i loadvars in flash it take a very very long time to load. My guess is that becaus there are sooo many variables, passing them all takes a long time. Is there anyway i can pass only a few variables or speed up the process?

Thanks

View Replies !    View Related
Webcam Interaction And Flash 8
ive been trying to latly get this rather impressive peice of flash coding which can be found here http://www.nastypixel.com/prototype/?page_id=73 where a dot follows the movement that you make on the webcam, My plan is to have some movie clips around the screen like a drum etc and when the red dot hits it, it will play that movie clip sound clip.

Only thing is all the collision detection coding ive found hasnt done the trick playing the movie clips ive placed on the screen, is there anyone that can help me with this problem? any sort of change when that red dot touches another movie clip is progress to me atm.

(the code for the above link is has been placed in scene)

thankyou for any help you can provide!

View Replies !    View Related
[flash 8] Mouse Interaction
Hello im trying to make a game in flash.

I want to make a sort of build up with the mouse, side to side sort of motion and then a release of the mouse button to make say a projectile go further.

I cant seem to find anything on this - mebbie im not looking hard enough, but i would be very gratful for any help given.

View Replies !    View Related
Problem With Php And Flash Interaction
My flash works fine when I run it in the flash player, but does not work in the web browser.... The yourName field is always undefined when I run it in the browser.
this is my AS

// for select query
var select_lv:LoadVars = new LoadVars();

// create a string to show where to access the PHP script
var filepath:String;

if (_url.indexOf("http") != 0) filepath = "http://localhost/tutorial/";
else filepath = "../test/";

select_lv.onLoad = function(ok:Boolean) {
yourName=this["nickname"];
}


select_lv.sendAndLoad(filepath + "getscores.php", select_lv, "GET");


and my php is just

<?php
echo '&nickname=bob&';
?>


When I tried to preview the flash file locally in firefox I get a pop up saying:


adobe flash player has stopped a potentially unsafe operation.

The following local application on your computer or network:

blabla.swf

is trying to communicate with this Internet-enabled location:

my ip address

to let this application communicate with the Internet, click settings.

You must restart the application after changing the settings.

I am going to assume facebook is probably trying to block the same action


Can you guys send me a link or tutorial as to how I can get flash to interact with the variables in php?

View Replies !    View Related
MySQL - Flash Interaction
Is there anyway of getting the two to interact?

Basically I'm creating an SWF which is sort of a slide show type thing, the only thing is that it will hold hundreds of photos which will be loaded externally and each image will have with it a small description.. and to store all this info in a flat file would probably be slow.

If there is a way to do it with mysql/flash/perl that would also be good

Thanks for any tips

View Replies !    View Related
Flash + Browser Interaction
Is it possible for flash to run code based on browser events? I want to run a logoff function if a user hits the logout button OR closes the browser window. Is this possible?

View Replies !    View Related
Flash And HTMl Interaction
Hi every one I wanted to ask this little thingi

can you specify a frame name in an html hyper link to go to that frame in the swf file when clicked

View Replies !    View Related
Flash Interaction Question
Scenario:

I have a menu with 7 items. I have rollovers and rollouts. When you click on a menu item, it loads a MC that displays content.

Problem:

If they click on a different menu item how do i check to see if a MC is loaded in the content area, and then if there is one, it should reverse that MC and replace it with the new one.


Idea:

set a varible (IsMovieLoaded) to true or false whenever a MC is loaded, if the varible is true it will use a prevFrame loop to close it. and then proceed to open the new one.


Is this the best way or is there an easier way?


Case

View Replies !    View Related
Help With Creating This Flash Interaction
hi,

I need to create something similar to this in the following website:

http://www.bu.edu/

Can anyone send me a tutorial?

Thanks!

View Replies !    View Related
Flash And Its Interaction With HTML Layers
I have just embedded a Flash .swf on a webpage with pop-up menus in <div> tags with z-indexes. When I first put the Flash on the page, the pop-up menus which have z-indexes of 10 or so were obscured by the Flash swf/object. I then put the flash in a <div> of its own and gave it a z-index of 1,0 and -2. None of these worked and the Flash was still shown above the pop-up menu layer. It seems that flash has taken control of all of the browser layers.

Does anyone have any thoughts on this?

Thanks.
mike@spdesign.net

View Replies !    View Related
Flash 5 Symbol/Background Interaction
I'm using Flash 5 and I'm wondering how to make a symbol appear above a background. I drew the background with lines on a different layer. The symbols are on a different layer. When I move the symbols onto the background the lines in the background are showing up inside the symbols...

Tell me what should I do...

View Replies !    View Related
<form.. In Flash (Perl Interaction) ?
I have an order to create a new login-page for a chatroom. The chatroom is made in Perl, however the login form should be in Flash. Now here is the question - how do I make Flash interact with the chat-script the same way old <form></form> used to do on "Submit"? Thx.

View Replies !    View Related
Flash & Frames; Interaction Question
I want a flash menu in a frameset-based movie; consider this
1) there are 3 frames: a top one (classic banner with logo, usual stuff ) let's call it 'top'.
2) a left frame where the flash menu will be stored, let's call it 'navigator'
3 the central, main frame where all the pages will be displayed; classic enough, uh? this one will be 'main'.
the problem is that I don't know how to tell to the flash button to open a html page in the MAIN frame and NOT IN THE NAVIGATOR ONE! is it possible?!

View Replies !    View Related
Flash - Javascript Rollover Interaction
Hi all,
Im looking for a basic solution for triggering a html local javascript function (image rollover) from a line of actionscript in a flash movie (when a certain frame is reached). All it would do is tell the image to light up (swap images) then swap back to unlit when the flash file runs to another frame. Im using Dreamweaver MX for my rollover coding.
ex:

Code:

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>


Thanks,
Nathan

View Replies !    View Related
Interaction Between Flash And Html Forms
I posted this question in another section a few days ago, but haven't had any luck so far...Maybe it's just not possible, but I thought i'd give it one more try...

Is it possible to have a series of buttons in a flash movie which will check/uncheck checkboxes within an html form on the same page?

Thanks
G

View Replies !    View Related
Flash 5 Animation/interaction Question
Hey there. I'm relatively new to the realm of flash so i will try my best to phrase this question in understandable terms:

Q: Once i hit a button on my home page an animation on the secondary page linked to runs and appears like a seamless animation. my delima is say i want to link to other pages via secondary pages i don't want an abrupt transitiion to those pages but to continue off from the animation that recently completed. A friend tried to explain that this can be accomplished using a "Boolean Variable" but that conversation went a little over my head. I appreciate any help maybe a link to a tutorial--I looked through pages of them on this site but to no evail. Thanks again

View Replies !    View Related
Situation: Flash And HTML Interaction
Ok...I've a flash file thats embedded in HTML format.

So the HTML page plays the swf animation. The animation is 100 flash frames long. so this is the scene as for 1swf files.

In this same way the swf files are embedded inside html and are linked with next back buttons which are html driven....i.e the buttons are not at all a part of flash. they are independent of flash sitting at the bottom of the screen.

now here is the situation....lets say one swf wih 100 frames long is plaing its animation. Now, i want the next button to be deactive for the entire animation, so that the user does not jump to next frame by clicking next button from middle of animation. When the animation reaches 100 frames the next button must get activated.

So...the query is how can an html page track the frame position inside a swf file???

Help needed.............

View Replies !    View Related
Flash Interaction With Dropdown Menu HELP
www.entellium.com the drop down menus at the top are dropping behind the flash animation so they are unable to be clicked, can anyone help??
thanks

View Replies !    View Related
Flash, MySQL .. Interaction Possibilities?
i have a flash online cart that put stuff into mySQL database.. the prob is ...

i want a user friendly gui or addon to my website that will allow users to tabularly or in anyview view and delete the entries... like the table view in access..

is such stuff possible?

i mean.. something like phpMyAdmin that allows you to view and edit entries rather than database management??


Thanx in advance,
Tariq

View Replies !    View Related
[MX] Flash Interaction With PHP Inside VBulletin
I need some tips on how to do this. I am new to AS but i havea good knowledge of PHP so its easy to catch on.
What i am trying to do is when a user view a certain thread which has attachment in the first post ( a music attachment ) i want to replace that attachment with a flash player.

Now Most of that is done inside the vB theme options which i can do. But how would I do this: upon a user hitting play the player gets the postid from a phpfile then executes another file which retrieves the media file and sends the info back.

I know this is probably a questions to those certain someone's that have knowledge in both AS and vB. Sorry

Anybody can give me any tips?

PS: I did search and look through some code but i was not able to come up with anything that works.

View Replies !    View Related
Flash Menu Interaction With Css Or Javascript
Hi all,

I have to build a website that uses a flash menu (one of those that the button remains "on" until you click another button). I want this menu to stay through the pages instead of having to create a different flash movie for each page as I want button 1 to remain down while it's on page 1 and so on.

I though the best way to do it was to create the main content of each page inside divs then control their visibility with the buttons. Something tells me that this would involve some javascript.

I haven't started making the content area so it may be done using either css or html.

Thank you.

View Replies !    View Related
Flash Interaction With HTML Objects
I'm building a prototype where I use a flash movie to show a user how to do something. For example; I want to show the user how to change a theme on my web app by playing a flash movie on top of the web page. The flash movie shows a big hand that floats across the page and stops on the link the user needs to select.

My question is, is there any way this hand can trigger events on the html page? For example; as the hand floats across the app, it floats over a series of tabs built with HTML on the web app. These tabs have DHTML mouseover effects that change the color when moused over. I want this hand to also trigger that event.

Is this even possible?
Thanks!

View Replies !    View Related
Flash And Html Frame Interaction
I've got a frameset with 2 frames only, one at the left and the second at the right. There is a Flash movie working as a menu at the left frame, from which I load different pages in the right frame.
What I am trying to do is to find a simple solution to the "Flash back button" issue. As most of you probably know, the browser back button does not bring the Flash movie to it's previous state. It only takes the main frame content back to it's previous page leaving the Flash as it was before clicking the Back. That is a big problem for me since the Flash movie and the main frame content are (should be ..) synchronized.

What I did was to create an onLoad > control Shockwave/Flash behaviour on the page at the right, so when the page loads it brings my Flash movie to the appropriated frame as people click on the Back button.
That is when the problems start. Although it actually works (IE only, since I'm sorting one browser at a time)), there is one page I can't make to work at all. What amazes me is that the code is exactly the same on all pages, they all work apart from this single one.

The code:

The function:

function MM_controlShockwave(objStr,x,cmdName,frameNum) { //v3.0
var obj=MM_findObj(objStr);
if (obj && obj[1]) obj=obj[1];
if (obj) eval('obj.'+cmdName+'('+((cmdName=='GotoFrame')?frameNum:'')+')');
}

The body tag with the onLoad trigger on the page that WORKS:

<body bgcolor="#666666" text="#FFFFFF" link="#FFFFFF" vlink="#CCCCCC" alink="#FFFFFF" onLoad="MM_controlShockwave('Menu_left?leftFrame','','GotoFrame','37');MM_preloadImages('../../../images/Jpegs/portfolio/port_top_2.jpg','../../../images/home_02.jpg','../../../images/Jpegs/portfolio/poems_top_2.jpg')">

The body tag with the onLoad trigger on the page that DOES NOT WORK:

<body bgcolor="#666666" text="#FFFFFF" link="#FFFFFF" vlink="#CCCCCC" alink="#FFFFFF" onLoad="MM_controlShockwave('MenuLeft?leftFrame','','GotoFrame','23');MM_preloadImages('../../images/home_02.jpg')" onFocus="MM_controlShockwave('MenuLeft?leftFrame','','GotoFrame','24')">

The address where the pages can be seen:
Since this is only a test page, please make sure you don't click in any other link apart from the flash movie or the back button. That might take you to pages not linked back to the ones I'm trying to fix
http://www.arnoldborgerth.com/Main/framesets/fr_portIE.htm

Any help will be much appreciated

Thank you all in advance





























Edited: 05/23/2007 at 08:08:26 AM by Photo_Arnold

View Replies !    View Related
[MX2004] Flash-HTML Interaction
If you have a URL such as

http://www.somesite.com/page.htm?gallery=1

is there any way for flash to use/detect the gallery=1 value?

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved