Indigo Rose Software
  #1  
Old 06-29-2005
AXXESS's Avatar
AXXESS AXXESS is offline
Forum Member
 
Join Date: Nov 2001
Posts: 498
Star Variables to/from Flash in Dreamweaver

Alright, Flash/Dreamweaver gurus out there...

I am building applications in Dreamweaver using the CourseBuilder extension. A feature of this extension is a frameset with a static nav bar with pages loaded below as they are called from the nav bar or menu.

On each of the html pages there is an swf. Each of the swfs has a text box and buttons to show and hide the text box. What I need to do is globally control the text boxes. For instance, when "hide text" is clicked, ALL text boxes need to be hidden, even on subsequently loaded swfs.

In the past (using a Flash container rather than Dreamweaver) it was easy to set a global variable and accomplish this task. I am beginning to think that I will need JavaScript to control this function within Dreamweaver.

Anybody familiar with how this is accomplished?
Reply With Quote
  #2  
Old 06-30-2005
Corey's Avatar
Corey Corey is offline
Registered User
 
Join Date: Aug 2002
Posts: 9,746
Wish I could help but I'm not familiar with the CourseBuilder extension...
Reply With Quote
  #3  
Old 06-30-2005
AXXESS's Avatar
AXXESS AXXESS is offline
Forum Member
 
Join Date: Nov 2001
Posts: 498
The CourseBuilder info was just given as reference... actually its just a frames setup with the nav bar in the upper frame controlling the pages loaded below that contain the swfs. There is other "eLearning" type stuff with CourseBuilder that is irrelevant to this example and what I am trying to accomplish.

I need the swfs to be able to set a variable for the visibility of the text boxes from any swf. I will also need each page to check this variable as it loads to determine whether or not to show the text box within each swf.

Hmm...
Reply With Quote
  #4  
Old 06-30-2005
Corey's Avatar
Corey Corey is offline
Registered User
 
Join Date: Aug 2002
Posts: 9,746
Well off the top of my head it sounds like a job for FScommands and Javascript.
Reply With Quote
  #5  
Old 06-30-2005
AXXESS's Avatar
AXXESS AXXESS is offline
Forum Member
 
Join Date: Nov 2001
Posts: 498
I will update when I figure this out!
Reply With Quote
  #6  
Old 06-30-2005
Corey's Avatar
Corey Corey is offline
Registered User
 
Join Date: Aug 2002
Posts: 9,746
Sounds cool, I'm timing you. [tick, tick, tick, tick]
Reply With Quote
  #7  
Old 06-30-2005
AXXESS's Avatar
AXXESS AXXESS is offline
Forum Member
 
Join Date: Nov 2001
Posts: 498
Quote:
Sounds cool, I'm timing you. [tick, tick, tick, tick]
**Insert "Jeopardy" theme music here...**
Reply With Quote
  #8  
Old 07-03-2005
AXXESS's Avatar
AXXESS AXXESS is offline
Forum Member
 
Join Date: Nov 2001
Posts: 498
It appears that pulling this one off would take some major Java knowledge and application experience. Especially due to the fact that I am trying to communicate across frames .

Oh well, the global variable function in Flash still works great to hide all of the sequential text boxes on a given page... Methinks maybe I was trying to get a little too fancy .

As Corey once said... "Gotta steamroll these things..."
Reply With Quote
  #9  
Old 07-03-2005
Corey's Avatar
Corey Corey is offline
Registered User
 
Join Date: Aug 2002
Posts: 9,746
Naw, it's pretty easy even with frames, it's just a simple matter of variables. Not sure how your Flash is set up so I just created a simple text example for you here. It's a frameset which holds links and content pages. Just unzip and run "index.html", it's self explanatory. Note that in this case I set it up so that the hide/show links just toggle a variable, so after hiding/showing, you will still have to click on a page link to actually observe the change.
Attached Files
File Type: zip axxess.zip (2.1 KB, 16 views)
Reply With Quote
  #10  
Old 07-03-2005
AXXESS's Avatar
AXXESS AXXESS is offline
Forum Member
 
Join Date: Nov 2001
Posts: 498
Thanks, I see how you are doing that with Java alone...

BUT the huge issue was having a "hide text" flash button on ANY of the Flash pages communicate with the html nav frame, and then upon loading the next swf in the adjacent frame.... have the nav frame communicate the hidden text state to the loaded swf.. until "show text" is clicked again...
Reply With Quote
  #11  
Old 07-03-2005
Corey's Avatar
Corey Corey is offline
Registered User
 
Join Date: Aug 2002
Posts: 9,746
You lost me at "adjacent" but anyhow it's just as easy any way you want to set it up, it's all just client-side variables. The bottom line is that you can set and refer to variables freely between any of your frames/swfs, it's just a matter of scripting it. It's not that hard really, you would just use flag variables. So in other words whenever a "hide" link is clicked, it sets a global variable in the nav frame, i.e. "showText=0;" and then the "show" links reset that global variable, i.e. "showText=1;". Simply set your .swf pages to check that variable onLoad with an if statment and hide/show the text accordingly.

If statements in Javascript are really easy, same as in PHP, i.e.:

if (condition to meet) {
code to run
}

FWIW "Java" and "Javascript" are very different things, this is just Javascript, I have no Java programming skills. Java is significantly more difficult to learn and use than Javascript.

BTW for a better analogy think of your Javascript in terms of your Flash. So you know how in Flash we refer to variables by going _root.myMovieClip.myVariable? Well it's basically the same in Javascript when we go top.frames['left'].showText...

In the case of "top.frames['left'].showText", "top" means top level, "frames" is the name of your frameset (as defined by the <TITLE> tag), "left" is the name of your target frame (as defined in your frameset), and "showText" is the variable name. Almost exactly like Flash as you can see. It's a lot easier than you think for sure, Javascript has a reputation for being a very easy language to learn and use.
Reply With Quote
  #12  
Old 07-03-2005
AXXESS's Avatar
AXXESS AXXESS is offline
Forum Member
 
Join Date: Nov 2001
Posts: 498
Quote:
You lost me at "adjacent"
Sorry . Um, I meant the frame right below the horizontal nav frame on the top of the page. (I should have written that more clearly).

Thanks for the info. Possibly I was trying to read wayyy too far into this... I will keep working on this one...
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
lowest flash version LegoGirl AutoPlay Media Studio 4.0 13 07-31-2003 07:04 AM
Here's an easy-to-use fully configurable general purpose Flash timer for your projects... Corey AutoPlay Media Studio 4.0 14 06-24-2003 05:21 AM
HOWTO: Install the Flash Player from a CD-ROM Support AutoPlay Media Studio 4.0 Examples 0 10-29-2002 05:05 PM
INFO: Setting Environment Variables Support Setup Factory 6.0 Knowledge Base 0 10-10-2002 01:07 PM
INFO: Minimum requirements for the Flash Object, Media Player Object, and Web Browser Object Support AutoPlay Media Studio 4.0 Examples 0 10-04-2002 11:09 AM


All times are GMT -6. The time now is 07:41 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Copyright © 2000 - 2009 Indigo Rose Corporation. All rights reserved.
Indigo Rose Software