Web Card Link Goes To A Specific Part Of A Flash Web Page?...possible?
Hello,
I'm building a web card/CD-ROM with six links. When the user has this card/CD-ROM in his/her computer, I want these links to link to a specific scene of a Flash movie within a web page. Any idea how to do this?
Any help is greatly appreciated! THANKS!
FlashKit > Flash Help > Flash ActionScript
Posted on: 08-14-2002, 05:59 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
A Link To A Specific Part Of Flash Site, Not Just Home Page
Hi,
I'm trying to make a link from one flash site to another, but not just to the home page of it, but to a specific part of it. For example, I run jumpgallery.com and am wanting to make the direct links from the websites of the seven artists involved (mostly flash sites) to their specific page on the jumpgallery.com site... does that make sense?
I guess it depends on how I have structered my site, but does anyone have a starting point?
Any help would be very cool...
Can Flash Link To Specific Page In Pdf?
If anyone can help I'd appreciate it. I'm working on a piece that uses code to open acrobat from a button within flash. Works fine except I'd like to open it to a specific page if possible and I'm wondering if there is some sort of command line I could add in or something to that extent.
Flash Jester and Adobe Acrobat forum seem to say it's not possible but I wondered if any Flashers out there may have beat the system.
Thanks!
Link To Specific Page In PDF W/ Flash
I need a solution for linking to a specific page or location within a PDF from Flash. I have used the following code:
on (release){
getURL("myfile.pdf#page=4 ","_blank");
}
Is this even possible and can anyone suggest a solution on how it might work?
Thanks,
John
Flash Link To Specific Place, On An Html Page
i have a flash button and by pressing it i want it to link me to a specific place on an html page, not just the page but say link me to the text in the middle of the page, is that possible and how?
What Part Of This Code Must I Change....to Steer Users To A Link Page.
I used the detect flashplayer 6 template in the publish settings.
BUt if someone doesn't have the player, it just shows a little box....
instead, I'd rather direct them to a simple html page that has a link to macromedia.com/downloads.
How do I do this?
What part of this code do I have to change?
Thanks.
<HTML>
<HEAD>
<center>
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<TITLE>Delightfulboy</TITLE>
</HEAD>
<BODY bgcolor="#A8D0D8">
<!-- URL's used in the movie-->
<!-- text used in the movie-->
<!-- image map -->
<MAP NAME="Delightfulboy"></MAP><SCRIPT LANGUAGE=JavaScript1.1>
<!--
var MM_contentVersion = 6;
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if ( plugin ) {
var words = navigator.plugins["Shockwave Flash"].description.split(" ");
for (var i = 0; i < words.length; ++i)
{
if (isNaN(parseInt(words[i])))
continue;
var MM_PluginVersion = words[i];
}
var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0
&& (navigator.appVersion.indexOf("Win") != -1)) {
document.write('<SCR' + 'IPT LANGUAGE=VBScript>
'); //FS hide this from IE4.5 Mac by splitting the tag
document.write('on error resume next
');
document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFla sh." & MM_contentVersion)))
');
document.write('</SCR' + 'IPT>
');
}
if ( MM_FlashCanPlay ) {
document.write('<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
document.write(' ID="Delightfulboy" WIDTH="800" HEIGHT="600" ALIGN="">');
document.write(' <PARAM NAME=movie VALUE="Delightfulboy.swf"> <PARAM NAME=menu VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=wmode VALUE=transparent> <PARAM NAME=bgcolor VALUE=#A8D0D8> ');
document.write(' <EMBED src="Delightfulboy.swf" menu=false quality=high wmode=transparent bgcolor=#A8D0D8 ');
document.write(' swLiveConnect=FALSE WIDTH="800" HEIGHT="600" NAME="Delightfulboy" ALIGN=""');
document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
document.write(' </EMBED>');
document.write(' </OBJECT>');
} else{
document.write('<IMG SRC="Delightfulboy.gif" WIDTH="800" HEIGHT="600" usemap="#Delightfulboy" BORDER=0>');
}
//-->
</SCRIPT><NOSCRIPT><IMG SRC="Delightfulboy.gif" WIDTH="800" HEIGHT="600" usemap="#Delightfulboy" BORDER=0></NOSCRIPT>
</center>
</BODY>
</HTML>
What Part Of This Code Must I Change....to Steer Users To A Link Page.
Okay, here is the story. I have the 'detect for flash 6' template selected in my publish settings, and the following code is what it gave me.
NOw, I want to direct the user to an html page if they don't have it. What part of this code must I change to make this happen?
It looks like it is currently directing people to delightfulboy.gif.
Delightfulboy is the name of the site. But there is no gif on the site. Is it assuming that I would put one there?
Is this the part of the code that I would change?
Instead of delightfulboy.gif, I could put, newhtmlpage.html
or whatever, right?
Thanks.
<HTML>
<HEAD>
<center>
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<TITLE>Delightfulboy</TITLE>
</HEAD>
<BODY bgcolor="#A8D0D8">
<!-- URL's used in the movie-->
<!-- text used in the movie-->
<!-- image map -->
<MAP NAME="Delightfulboy"></MAP><SCRIPT LANGUAGE=JavaScript1.1>
<!--
var MM_contentVersion = 6;
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if ( plugin ) {
var words = navigator.plugins["Shockwave Flash"].description.split(" ");
for (var i = 0; i < words.length; ++i)
{
if (isNaN(parseInt(words)))
continue;
var MM_PluginVersion = words;
}
var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0
&& (navigator.appVersion.indexOf("Win") != -1)) {
document.write('<SCR' + 'IPT LANGUAGE=VBScript>
'); //FS hide this from IE4.5 Mac by splitting the tag
document.write('on error resume next
');
document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))
');
document.write('</SCR' + 'IPT>
');
}
if ( MM_FlashCanPlay ) {
document.write('<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
document.write(' ID="Delightfulboy" WIDTH="800" HEIGHT="600" ALIGN="">');
document.write(' <PARAM NAME=movie VALUE="Delightfulboy.swf"> <PARAM NAME=menu VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=wmode VALUE=transparent> <PARAM NAME=bgcolor VALUE=#A8D0D8> ');
document.write(' <EMBED src="Delightfulboy.swf" menu=false quality=high wmode=transparent bgcolor=#A8D0D8 ');
document.write(' swLiveConnect=FALSE WIDTH="800" HEIGHT="600" NAME="Delightfulboy" ALIGN=""');
document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
document.write(' </EMBED>');
document.write(' </OBJECT>');
} else{
document.write('<IMG SRC="Delightfulboy.gif" WIDTH="800" HEIGHT="600" usemap="#Delightfulboy" BORDER=0>');
}
//-->
</SCRIPT><NOSCRIPT><IMG SRC="Delightfulboy.gif" WIDTH="800" HEIGHT="600" usemap="#Delightfulboy" BORDER=0></NOSCRIPT>
</center>
</BODY>
</HTML>
Link To Specific Frame From Html Page
Hello cortex:
I'm trying to figure out how it is possible to link into a flash movie - from a regular html link.
i have five images, representing five steps. image one is fine because it links to an html page with the swf file on it and the movie opens and plays starting at step one.
but my second image needs to go the the swf file step2 (frame label) and not to the beginning of the movie to play.
is this at all possible?
i have posted the working files:
http://6MonthsinCleveland.com/webmathematica/
thank you
thank you
h
LInk To Specific Frame From HTML Page
Hello. Does anyone know how to link to an html page with an swf file on it and have the swf open up to a certain frame number or frame label? as oppossed to opening at the beginning.
I divided my swf into five parts and i'm representing those parts on an html page and i have to have each part open to its corresponding section in the flash movie instead of just opening up the flash movie at the beginning.
i've posted a working example of this at:
http://6MonthsinCleveland.com/webmathematica/
oh thank you
h
Specific Html Page Triggers Specific Frame Of The Flash Movie
I have been playing with flash and html and wonder if any of you have a bright idea on how to do this.
I have a flash movie, which I call from html but depending on which part of the html page I call it from I want to start it at a particular frame and not always from the beginning.
I have created a variable within the movie in action script and given it a different value for each of the frames I want to start the movie at, and want now to designate the value I give to that within html so that the movie “jumps” to the correct frame. Is this possible or am I totally crazy??
Contact Link In Flash Movie (part 2)
for example, go to the contact link in this movie, and then lower in the page on the right you can click on the email to: info@immigrant..... which opens up a new message automatically. How do you do that link to an email program.
Many thanks again
Microsoft IE 5 Zooms In To Part Of My Flash Page
I never noticed this earlier but it seems that IE 5 takes my flash page and zooms/resizes are particular area of my flash page. It enlarges it a great deal, making it useless to view. This doesn't happen at all in Safari or Firefox. How is this happening? Thank you.
Make A Button Load A Part Of The Flash Page
I am planing on making my entire page in flash and I have now finished all by buttons on the menu and some effects with the logo I have made. Now I am making the different parts of the page that I want to load once I press on the button it goes with, I know how to do this if I am just link to an iframe. But what do I need to do to make these parts of the page load when the corresonding buttons are pressed if I want it to be part of the same flash movie? thanx,
-Dave
Access Bottom Part Of Html Page (anchor) From Flash
Hi everyone..
Is it possible to have a button INSIDE a flash movie to access Anchor point (lower part/sections) of the html page the flash movie nested on?
If it is possible, how do i do that?
Anyone has the A.S for it?
or know any Tuts or past threads or anything at all related to it?
Please kindly let me know Thanks.
Oh.. Do i need Javascript to do that?
If i do, can anyone please help me with it as well?
Cos honestly.. i have NO knowledge at all about J.S.
Thank you.
Oh.. and HAPPY NEW YEAR 2007
(since this is my 1st login to AS.ORG in 2007)
Linking To Specific Part Of HTML
Im wanting to link to a specific part of a long html page, using the "#thelink" addition to the link.
I'm doing this by just putting "/thehtml.html#thelink" into the "geturl" field of the flash actions... it isn't working, what do I need to do to get it to work?
thanks guys
Creating A Flash Movie That Overlaps Part Of The Rest Of The Web Page When You Rollov
I am fairly new to flash and was wondering if someone could help me to find a tutorial or tell me how to design a flash movie that gets bigger and looks like it is coming off the stage. It overlaps some of the rest of the web page that is done in something other than flash. A lot of the movie trailers that are done in flash have this effect when you mouse over them. Any help would be greatly appreciated and I hope you can understand what i am asking in my question.
Thank you
Html Link And Flash Link On Intro Page
I've noticed that a lot of Flash sites have some kind of detector to see if you have the flash plug in. Is that scripting?
Plus, I see that the intro page of ones site will have an HTML and a FLASH option to choose from to enter the site. Would that be enabled in the publish settings of Flash 5? I am curious to know how that is done because I am designing this young lady's site and she wants the viewers to have the options of HTML or Flash.
Thanks!
HTML Linking To Specific Part Of A Swf.movie
Can anyone help me with this problem!
What I want to do is to <href>link from a HTMLpage to a specific label in an external swf movie. The movie should then be downloaded into this same window.
The flashmovie is an introduction to(and in between)all
different pages, and therefore should display a different title everytime.I want to link to this specific part of the movie from the HTML page.
Maybe something like
<href .... loadmovie.... ,label blabla> in the HTML otherwise a JS-script with a function.
Example can be found at http://www.opdemuuren.nl.
The running train should be the introduction to all other pages which are flash now but will be HTML soon.
Plz Help, I'm Trying To Get Buttons To Activate Specific Part Of Movie
Hi, i have my movie, its a website, i have put all the pages on one scene, it looks like this:
The first scene is the home page, and the first few layers are the ones with the buttons on.
Please could somebody tell me how to make it so that when i click a button it jumps straight to, say, frame 95 (the next page).
Also is could somebody plz tell me how i get the scene to loop until sombody pushes a button.
Thank you so much if you can help, i really appreciate it.
Ignore Xml Part - Or Specific String Out Of An Xml File
Hi there,
I whas wondering: Is there a possibility to tell flash, that he should ignore a piece of code out of an xml file.
I'm asking this becouse our programmer generates dynamicly xml's.
these contain a piece of code that makes that flash doesnt want to read our xml.
Our programmer cant get rit of it.
Maybe I could tell flash to ignore this specific string?
thanx everyone...
HTML Link To Specific Frame In Flash?
Is it possible to link from a html page to a specific frame in a flash movie?
I'm doing a simple photo album, and would like to be able to enter it at different points at different photos, depending on what the user selects...
I know I can do it using all html, but I wanna do it in flash...
Thanks,
Joe
HTML Link To Specific Flash Frame
Hello,
I'm trying to have an HTML link on one site, that leads to a specific flash frame on another site.
I've done a search and found a number of confusing answers. I thought I would ask someone to spell it out clearly so I could understand.
All help is immensly appreciated!!!
Thanks in advance!
-Daniel
Flash Link To Open In Specific Place
Hello, I'm working here at my school on a new website design. So far i made a top menu that has categories that drop down on over, etc. So there is a top menu and there are menu's that drop down from that. I need to link the buttons in the menu to open in a box below the menu. I have tried to place the whole thing in flash and have the links somehow open in a dynamic text box or anything i could think of that was placed over the specific window. I also tried seperating the flash part and then having the rest be images and tables, but the flash file is tall, so that the menus have room to fall down, and it has a transparant background so if i seperate the swf and the pics int tables i end up with
|-----------------| the menu
|-----------------|
|
| a bunch of blank space
|-----------------|
| | - then the box i want the links to open in, with some trim, etc.
I have also tried to use Adobe image ready to slice the image up, and have that box be a seperate slice. I ended up actually cutting up the image into slices so i could make that box a table in itself. I then uploaded the .psa onto flash and made the whole menu and box one flash file. This made it so i had a Text "I" cursor whenever i went over that box, with the flash links merely opening new pages. The "I" suggested i seperated that section to a table.. but i wasn't clear on how to name it so i could target it.
SO the actionscript i'm using for the buttons is:
on(press) {
getURL("Link","_mainframe");
}
on (rollOut) {
gotoAndPlay(1);
}
The target is a page called _mainframe. That's what i tried to name the box image slice able.
Can anyone help me?
thanks very much.
Html Link To Specific Point In Flash
My FLASH site is set up by having 4 sections each with a IF TRUE PLAY FORWARD, if not PLAY BACKWARD.
I want an HTML link to open this site and play the "WORK" section that doesnt play from the beginning. The "ABOUT" section does.
How would I make this link in HTML that would make workSec="true" so that flash would play this section out instead of aboutSec?
THANKS A MILLION IN ADVANCE,
-manny
Go To A Specific Page In A Pdf From Flash?
Is it possible to go directly to a specific page in a pdf file? The getURL command is fine to go to the first page, but from there the viewer would have to scroll thru the document.
Anybody got a fix? How about a clue?
HTML Login Link To Specific Frame Within FLash
I have read numerous posts about jumping frames using html. But here is my dilemna. I have a multi frame html site and I need to allow the user to click on a "Login" link, which is on the navigation frame, and have the Flash, which is on the maincontent frame to jump to another frame. Can anyone help me here.
Linking To A Specific Frame In Flash From A Html Link?
Is is possible to have an html link - link to a specific frame of a flash movie embedded in an html page?
I have a web site that is mostly flash. However - I am also using mambo for content management for non-flash pages that are part of the same site. I can click a link in the flash movie that will take my browser to the specific html page, no problem - but is it possible to do the reverse - have the html link goto the flash?
For instance: I would like in the html page a link that goes specifically to 'frame 100' of the flash movie that loads the 'contact' flash form. Is it possible to link to a html page that contains the flash movie and have it goto that specific frame?
I would like this to be seamless in the same browser. Right now I have the flash popup the html pages for those specific links.
thanks!
Html Link To Specific Section Of Flash Movie?
Curious....my client asked if he could email out a link that would send the viewers directly to our "Press" section of our all Flash site. Is this possible, and if so, how?
Thanks for any input!!!
Goto Specific Flash Page
I want to send my clients a newletter link. I want this email link to start the flash website and goto the newsletter part of the flash website. Can this be done.
How To Time The Starting Of An Exteranlly Loaded Movie After A Specific Part Of Main
Plz help with this...
how to time the starting of an exteranlly loaded movie after a specific part of main movie has loaded...
I have a movie called mywork.swf, which is loading thumbnails and display (the display of main clip/ image when u click on any thumbnail) externally from a movie called thumbnail_loaded.swf
Now that is working fine...
But the problem is here... in mywork.swf , I am also loading a movie called tbn_detail.swf whihc has the detail of the work displayed (from thumbnail_loaded.swf) and the serial number of the project page (like in www.albertocerriteno.com , in exhibition link click on any thumbnails and see the numbers with detail on top- thats exactly wat i want) but dont knw how to get it working...if some1 has a similar file or knws how i shd go about it plzzz help ...im working on a deadline so any urgent help wld be much appreciated...
Thanks a ton
How To Time The Starting Of An Externally Loaded Movie After A Specific Part Of Main.
Plz help with this...
how to time the starting of an exteranlly loaded movie after a specific part of main movie has loaded...
I have a movie called mywork.swf, which is loading thumbnails and display (the display of main clip/ image when u click on any thumbnail) externally from a movie called thumbnail_loaded.swf
Now that is working fine...
But the problem is here... in mywork.swf , I am also loading a movie called tbn_detail.swf whihc has the detail of the work displayed (from thumbnail_loaded.swf) and the serial number of the project page (like in www.albertocerriteno.com , in exhibition link click on any thumbnails and see the numbers with detail on top- thats exactly wat i want) but dont knw how to get it working...if some1 has a similar file or knws how i shd go about it plzzz help ...im working on a deadline so any urgent help wld be much appreciated...
Thanks a ton
[F8] Open A PDF To Specific Page In Reader From Flash
I have a LOCAL Flash presentation which contains links to various PDFs. However, in some cases, I have a link in the Flash presentation that needs to open to a specific page (or destination) within a certain PDF.
Now, Adobe has provided parameters which can be used in a URL to accomplish this. For Example, typing the following into your browser would open the PDF in the browser to page 4:
Code:
http://www.MyWebsite.com/MyPdf.pdf#page=4
A list of all the parameters you can add to a URL can be found here:
http://partners.adobe.com/public/dev...Parameters.pdf
However, this only works for "non-local" files.
If I try to use this method to open a LOCAL PDF which resides in the same folder as my projector file:
Code:
on(release){
getURL("C:/MyPresentation/MyPdf.pdf#page=4", "_blank", "GET");
}
1 of 2 things will happen when the link is clicked:
1) If Internet Explorer is the user's default browser, the PDF will open in a new browser window and display page 1 (instead of page 4) of MyPdf.pdf
2) If FireFox is the user's default browser, it actually WILL open MyPdf.pdf in a new browser window and go straight to page 4 like I want it to.
However, instructing the user to download, and set FireFox to be their default browser is not an option. Hence, using the getURL(); method is also not an option.
The only option I'm left with is to try an open the PDF in Adobe Reader instead of an internet browser. If there is a way to do this using getURL(); I'd love to hear it. However; from my travels in the forums, I think the only way I can accomplish this is by writing a BAT file.
What I haven't been able to determine is if there is a way, by using a combination of "fscommand" and BAT files and Proxies, etc. to launch a PDF in Reader from Flash and have that PDF open to a specific page?
[F8] Open A PDF To Specific Page In Reader From Flash
I have a LOCAL Flash presentation which contains links to various PDFs. However, in some cases, I have a link in the Flash presentation that needs to open to a specific page (or destination) within a certain PDF.
Now, Adobe has provided parameters which can be used in a URL to accomplish this. For Example, typing the following into your browser would open the PDF in the browser to page 4:
Code:
http://www.MyWebsite.com/MyPdf.pdf#page=4
A list of all the parameters you can add to a URL can be found here:
http://partners.adobe.com/public/dev...Parameters.pdf
However, this only works for "non-local" files.
If I try to use this method to open a LOCAL PDF which resides in the same folder as my projector file:
Code:
on(release){
getURL("C:/MyPresentation/MyPdf.pdf#page=4", "_blank", "GET");
}
1 of 2 things will happen when the link is clicked:
1) If Internet Explorer is the user's default browser, the PDF will open in a new browser window and display page 1 (instead of page 4) of MyPdf.pdf
2) If FireFox is the user's default browser, it actually WILL open MyPdf.pdf in a new browser window and go straight to page 4 like I want it to.
However, instructing the user to download, and set FireFox to be their default browser is not an option. Hence, using the getURL(); method is also not an option.
The only option I'm left with is to try an open the PDF in Adobe Reader instead of an internet browser. If there is a way to do this using getURL(); I'd love to hear it. However; from my travels in the forums, I think the only way I can accomplish this is by writing a BAT file.
What I haven't been able to determine is if there is a way, by using a combination of "fscommand" and BAT files and Proxies, etc. to launch a PDF in Reader from Flash and have that PDF open to a specific page?
How Do I Make A Link In Flash Go To A Specific Frame In A Dreamweaver Made Site?
When I speak of frame I mean frame as in html frame and not a frame in the flash movie. You see I need the links on my website to go into the center frame of the html website, because now if you click a link in the menu frame of the html fite a whole new page opens in my browser. Now keep in mind that the menu I made is a flash menu and is in the menu frame of my html site. Please help me
Thanks
Making Flash Goto Specific Place On Timeline From Clicking A Link
Hi all,
Should be quite an easy question for you guys!
I have an swf embedded in an html page. Now when you come to this page from another html page by clicking a specific link I need the flash to go to a certain place on the timeline.
Whats the best way to do this? I have a coder who is coding in .NET and ASP.
I assume it would have something to do with a cookie in the browser?
If you know the answer if you could type out a few lines of code i would need that would be Great!
Thanks!
HTML Link To A Specific Movie Clip In A Flash Site That Uses MovieLoad
Hi,
I need to be able to have an HTML link take the user to another full Flash website. But it doesn't take you to the beginning of the Flash site, rather, it takes you to a specific page in that Flash site.
Only problem is, the Flash site itself uses movieLoad function to load different movie clip into the content area.
How do I pass variable into flashVar to link to a specific movie clip when it is using movieLoad?
I hope that make sense.
Any help would be appreciated.
Thank you,
Kith
Flash Opening A Frameset And A Specific Page In One Of The Frames
hi
I have created a Flash intro which has a number of buttons to click. The page with the Flash intro is index.html this page has no framesets. What I want to do is when you click one of the buttons in the intro it loads index_a.html (in the same window) which is a frameset. This frameset consists of 4 frames left, navigation, content and right.
Going back to the button in the intro Flash I want to open index_a.html and another page which needs to open in the contents frame of index_a.html.
My question is how do I get Flash to do this? Any suggestions would be most appreciated.
Cheers
Johnathan
|