[quoted text, click to view] > 1. Something that has frustrated me for some time is that my "view source"
> option does not work. Notepad is installed on my pc, but whenever I right
> click a web page and then click "view source" nothing happens. No error
> message, no notepad file with the source code. Any ideas what might be wrong?
as in previous reply, the file could be jacked or corrupted.
I personally has been fighting few problems of similar nature .
You can always view the cache folder and big out the HTML and than view the source.
Meantime I'll try to make basic iFrame sample with some dummies html to change from flash buttons.
[quoted text, click to view] > 2. This iframe thing - you said that this is just like loading content from
> flash in html frames. This can be done? I didn't realize this. What script
> would you use to load flash content into an html frame? Something like what
> you provided?
Certainly , there are some restriction tho , i'll explain in a while ...
[quoted text, click to view] > getURL ("flashmovie.swf", "content_htmlframe");
>
> I understand the getURL command for flash, I'm just not sure that I understand
> the second part there. The "content_iframe" part of the code. When doing this
> do you ALWAYS use "content" followed by the html frame's name? Or is "content"
> something that changes each time.
By default the second parameter define window option , _blank , _self etc...
This however can be use to call the frame name. You won't have it listed you just need to key
it manually your self while you setting the get url action.
Let me elaborate some more :
First make sure you give your frames some names , than while setting up
get url type the name in "window" window .....
Sample of naming frames :
<frame name="main_frame_name" src="XX.html">
<frame name="top_frame_name" src="XXX.html">
Sample of calling up pages in predefine frames :
on (release) {
getURL ("page_1.html", "main_frame_name");
}
The restriction which I mentioned above !
try to avoid names like 'window', 'main', 'frame', 'parent' etc...
DO NOT start frame names with underscore , these are reserved words which may cause some of the
action to fail , use unique personal naming conventions
and it will assure across browser and cross OS compatibility.
Iframe is pretty much like normal frame tho it's within one html document.
Inline frames are not well supported and that's the problem if you need to
make site cross OS compatible but they are extremely simple to set up.
All yo need basically is to make some table and place that frame into it using :
<iframe src="some.html" frameborder="0" width="400" height="400" scrolling="auto"
name="content_space"><font face="Verdana" size="1">
Sorry your browser does not support IFRAMES.</font>
</iframe>
Than to load content from flash in that frame, you will use :
getURL ("page_1.html", "content_space");
http://www.flashfugitive.com/ang-zhang/iFRAME/ download source
http://www.flashfugitive.com/ang-zhang/iFRAME/iFRAME.zip --
Regards
urami_*
<no>
http://flashfugitive.com/ </no>