Linking Text To Another Frame And Opening Popup?

Aug 25, 2010

I'm trying to link some text within a textbox. When the user scrolls down all the way to the bottom with the scrollbar and hits the text it opens an popup linking to another frame in the project. Basically Im trying to add some additional information relating to an word a sentence.

View 1 Replies


Similar Posts:


Create Popup Linking To Another Frame From Text?

Aug 25, 2010

I'm trying to link some text within a textbox.  When the user scrolls down all the way to the bottom with the scrollbar  and hits the text it opens an popup linking to another frame in the project.  Basically Im trying to add some additional information relating to an word a sentence.

View 3 Replies

ActionScript 3.0 :: Linking To Any Frame Other Than The Opening From A HTML Link?

Nov 3, 2009

I have a website where my Home, About, Work and Contact pages are on four different frames on the time line. Once you click on the Work link from the opening Home page, your brought to the second frame where a little tween brings a bunch of thumbnails into view. When you click on the thumbnails, it brings you out of the .swf and into a new HTML page. The problem is getting back to the Work page in the .swf with out being brought to the opening Home page. I have used an anchor on the time line and changing my publish settings to HTML with anchors, and they do work! But, its opening my .swf in the Work frame and running through the movie back to the Home. Iv tried putting a stop(); on the Work frame, which does stop it but its a dead page, my tweens, buttons, everything is frozen.

View 1 Replies

ActionScript 2.0 :: Linking To A Frame In Scrolling Text?

Jan 30, 2003

The first problem I have is I have created a scrolling text box - it's a list of items - and I want the user to be able to click on an item and then a specific frame load that relates to that item.

I'm sure this is possible but at the moment I can only work out how to add a normal html link inside the external text file so when clicking on the link it loads an actual webpage.

View 2 Replies

ActionScript 2.0 :: Opening A Popup By Clicking An Mc?

Jan 28, 2011

I just finished reading the popup tutorials on the site, one is for chromeless windows (which I dont want), and the other one uses buttons.Is there a quick and easy way where when I click an mc, it will open up an html file?

View 2 Replies

ActionScript 2.0 :: Opening A Popup By Clicking A Mc?

Dec 1, 2004

I just finished reading the popup tutorials on the site, one is for chromeless windows (which I dont want), and the other one uses buttons.Is there a quick and easy way where when I click an mc, it will open up an html file?

View 5 Replies

ActionScript 2.0 :: Opening A Popup By Clicking An Mc

Dec 1, 2004

I just finished reading the popup tutorials on the site, one is for chromeless windows (which I dont want), and the other one uses buttons. Is there a quick and easy way where when I click an mc, it will open up an html file?

View 4 Replies

ActionScript 3.0 :: Flash Url Linking (no New Tab Opening)

Aug 5, 2010

i've made menu bar in flash cs4 as3, and i put it on to my website in dreamweaver. example one of my butons is btn2, and when i click on btn2 it opens a wanted html page that i've set , BUT IN NEW TAB :///

[Code]...

any way to open that html page in same tab, btw im using mozilla firefox

View 3 Replies

Professional :: Links Opening To Same Popup - How To Give Each Its Own

May 18, 2010

Each page has like the first page "Welcome" followed by a brief paragraph followed by a "read more..." link/button which opens to a small popup window with additional 3-4 paragraphs. So the main page has "WELCOME" > small paragraph > read more button.

Below that has "LATEST WORKS" > small paragraph > read more button

Both of those "read more..." lead to the same popup window but have their own title "Welcome" and "Latest works"(don't know where the mini title file is) but the paragraphs are the same which I don't want. I want each "read more..." to open to its own little popup.

Still learning script but is their anything in the script to change or something on stage? Or just redo everything somehow
on (rollOver) {
gotoAndPlay("p1");
} on (releaseOutside, rollOut) {
gotoAndPlay("p2");
} on (release) {
_root.popup.gotoAndStop(2);
_root.popup.label.text = i;}

View 1 Replies

ActionScript 2.0 :: Opening Popup From Flash TextField

Aug 23, 2005

I got to open a javascript popup with standard size in a website from flash. i.e. it should be able to click in flash, and open up a popup window displaying the content of the URL. I tried the fscommand method from macromedia but it doesnt work. ( btw my published file is asp.net although I don't think that makes any difference from html in terms of javascript)

Code:
_root.Movie.textfield.htmlText += "<A HREF='javascript:popUp('" + links[j]+ "')>" + Works[j] + "</A><br>"
There's this line I input into flash.. but it doesn't work either even though there is no error.

View 2 Replies

Linking Button To HTML URL Opening In Same Window?

Jun 8, 2009

So the following code allows us to open an HTML link with the click of a button

function callLink(event:MouseEvent):void
{
var myURL:URLRequest = new URLRequest("http://www.adobe.com/");[code].......

The problem is that this always opens the link in a new window. So what if I want it to open in the same window? Changing the line to:

var myURL:URLRequest = new URLRequest("http:url...); results in a compiler error.I am embedding this swf on a web page of my own, so there are no security concerns regarding giving flash access.

View 3 Replies

Javascript :: Opening Print-HTML-Popup From Flash?

Dec 1, 2009

is it somehow possible to open a HTML popup window from within Flash and have it receive text data from Flash which should be printed ... and this all only in AS3 and Javascript (since no server-side scripting is available)?

View 2 Replies

ActionScript 2.0 :: Opening Popup Window From Flash Button

Jun 24, 2010

Is it possible to open a cross domain pop up window from a flash button. Let's say something like this:
ActionScript Code:
on (release) {
getURL ("javascript:NewWindow=window.open('[URL]','newWin','width=800,height=650,left=60,top=60,toolbar=No,location=No,scrollbars=no,status=No,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}
Is a button hosted in domain that links to a secure page in link. Will it work or will it get blocked by browsers or internal flash restrictions?

View 3 Replies

ActionScript 2.0 :: Opening Popup Page In Standalone Projection

Apr 28, 2005

I am creating a standalone projector (CD with autorun). This means my swf files are NOT contained within html. I would like to, when clicking on button, open a popup html page with specific dimensions. I was wondering if it is possible to do that, and what AS to use,
or if I have the obligation, to openpopups, to launch my swf files within html mother page.

Here is the code of button that works (but does not open popup):
on (press) {
getURL("URL", "_blank");
}

Here is the code for popup but does not work (opens html page normally):
on (press) {
getURL("URL", "", "width=580,height=400,left=100,top=100");
}

View 2 Replies

Actionscript 3 :: Bypass IE Popup Blockers When Opening Up Links In Flash?

Feb 11, 2010

This is the Class I'm using to bypass the popup blocker. This is the function to call to the class function

function linkHandler(e:MouseEvent):void{
popup.ChangePage(linksURLArray[e.currentTarget.name], "_self");
} this is the class.

[Code]...

View 1 Replies

ActionScript 2.0 :: Linking To A Video - Open A Popup Window In Flash With 320 X 240 In Size

Jun 18, 2009

I can only do so much with flash. I am having issues with linking to a video. Here is my question: please refer to [URL] and click on the video link. I have 3 videos that I want people to view when they click on the links:

- SI TU T'EN VAS (2001)
- GWADA (2004)
- JODIA (2008)

I need the links to be able to open a popup window in flash with 320X240 in size.

1- I imported each video in flash (separatly) using the 30rates/frames, progressive dowload from webserver. (the usual).

2- I allready uploaded the videos (.swf and .flv) on the server (godaddy.com)

3- In my main file, I created a button for each one of the links above using the invisible button with their own instances. they are each on a different layer.

View 2 Replies

Actionscript :: Flex Popup Manager Mouse-down Outside Of Popup Removes The Popup

Mar 4, 2011

If you create a popup via:[code]It will create a popup and bring it on top of any other visual piece. I have one problem though. This 'popup' needs to stay up even when the user interacts with the background.I would use modal, but I need the ability to interact with the back. Any way to tell the popup manager not to remove the popup when the user clicks off of it?

View 1 Replies

CS3 Next Buttons - Linking To Next Frame

May 20, 2009

I have got a very simple flash timeline, on each frame is a different page of a book. There is four pages alltogether. I am trying to create 'next' buttons so that the user can flick through the book.

This is the code I have used:

stop();
btn_1.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler1);
function mouseDownHandler1(event:MouseEvent):void {
gotoAndStop(2);

[Code]....

View 1 Replies

Linking A Button To A New Frame?

Oct 27, 2009

I am currently building a website in flash for a school project and it has to be on a timeline. I was wondering if you could help me i have buttons at the top of the page how would i link these to another frame so it can be used as a new page

View 6 Replies

IDE :: Linking To A Certain Frame When Loading A Swf?

Mar 4, 2009

I have a main movie in which all my buttons are, this movie loads the other swfs in a contentHolder movie clip.Now the problem is that I need to link to a certain frame in the loaded swf.

button_btn.onPress = function() {
contentHolder.loadMovie("investment.swf");
};

Now in the investment.swf I want it to go straight to frame 5. I have done lots of looking online, but cant seem to find the answer. I think I need to use variables but am not sure

View 1 Replies

AS3 :: IDE - Linking To A Frame From A MovieClip?

Mar 8, 2009

I'm trying to link from inside my movieclip to a frame on the main timeline.The ActionScript is inside the MovieClip.

Code:
function gotoSite(e:MouseEvent):void{
gotoAndPlay("home");

[code].....

View 2 Replies

ActionScript 3.0 :: Opening HTML In Frame

Mar 4, 2009

I made a navigation movie clip with buttons, whom I want to be set in one frame- so the navigation MC will stand still while the contents body will change in another frame. In AS 2 it's easy- just add the frame name in the getURL command. But I couldn't mange it in AS 3. This is the code I used on my button:

[Code]...

View 1 Replies

ActionScript 3.0 :: Linking Xml Driven Fla To A Frame?

Nov 5, 2009

I have an accordion menu fla, I copied the fla into my main fla so I have one file. The menu has external links that can be added in the xml file which is great but I need to link the menu from within the fla it is in. I need to have each mc or button in the menu link to a specific frame within the .fla I see now in order to do this I have to edit the actionscript within the menu. I'm new in AS3 but from my little experience in it I think I need an eventlistener that calls a function which will send the each instance to a frame inside the file.

Here is the original

[URL] (skip the crappy intro) and you will see 4 photos in an accordion. They link to separate galleries with no back buttons

Here is my remake [URL]

my version calls links thru an xml file which I posted above.

The file is in AS3

it is here [URL]

So I would need to link the 4 mc's in the menu to separate frames main.swf

View 1 Replies

ActionScript 3.0 :: Linking Swf To Another Swf Scene And Frame?

Sep 17, 2010

How would I link a swf to another swf's scene and frame?

View 2 Replies

IDE :: Linking Back To Flash Frame From XML URL?

May 27, 2009

I am but a lowly martial arts instructor who has 'foolishly' decided to try and do our website. I decided to use a flash template which has actually worked out ok (word to the wise - DON'T BUY FLASH TEMPLATES UNLESS YOU ARE WILLING TO KISS YOUR LIFE GOODBYE FOR A COUPLE OF MONTHS).

Anyway, I wanted to put a news ticker on the site to display 'latest news' - I took an example that was kindly supplied from this site, and it works fine. However, I just cannot figure out how to create a link in the XML file that when clicked takes you back into another part of the flash site. I can get it to link to an external URL no problem at all but just cannot get the link to take it back to a section of the site I want it to go to.

[Code]...

View 5 Replies

ActionScript 3.0 :: Opening New Page To A Specific Frame

Sep 1, 2008

I am still learning Action Script but I have a problem with writing the full script for combing navigate to new URL and gotoAndPlay. More specifically what I want to do is use a button which when clicked will open a new page and then start playing my Flash movie at a certain frame on the Timeline. I have used buttons to navigate to a new URL and used the gotoAndPlay ( ) ; command to play a certain frame, both have been successful but when I combine the two I run into trouble. What happens is the new page loads correctly and goes to the specific frame but then opens the browser in a new window with the movie playing from the beginning. The correct sequence within the correct Webpage is playing but only if I close the current page, in other words what I am trying to achieve is running but in the background.

View 8 Replies

Linking A Drop Down Button To A Frame Using ActionScript 2.0?

May 11, 2009

I have a drop down movie button that shows the drop down when scrolled over but i cannot get the drop down buttons to link to the relevant frames.My current script on the dropped down button is

on (release) {gotoAndStop(6);
}

which does nothing.

View 1 Replies

ActionScript 2.0 :: Linking .swf And Jump To Specific Frame?

Apr 13, 2010

I have been researching this for hours and cannot seem to find an answer anywhere. Right now I am linking one flash file or .swf file within my main flash site using a button.So in my main flash site, I connect to this .swf file by using...

on(release){
loadMovie ("MDsite2.swf", _level0);
}

This works perfect but the .swf file starts at the first frame. Is it possible to a jump to specific frame within that .swf file so it doesn't start on the first frame?

View 2 Replies

ActionScript 2.0 :: Linking Button Inside MC2 To Frame In MC1

Mar 5, 2006

I have a button in a movie clip named "mc2" inside "mc1" and I want that button the link to a frame which is labled "circles" in "mc1".

View 1 Replies

IDE :: Frame Labels - Linking Buttons To Different Pages

Mar 31, 2009

I'm creating website that I want to put my resume and portfolio on as different Flash applications. For my resume it would be like a mini-web site that has various linking buttons to different pages. I tried to use scenes b/c I had a professor who told us to use scenes to create our pages/animations, and the scenes concept did not work with the actionscripting.

I then read online that scenes were not the way to go. So I'm trying to use Frame Labels to create this - right now I made a menu movie clip that I have my actionscript in for each button - the buttons have the correct instance names and I have my frames properly labeled with their movie clips attached to each for each part of the resume/page portion.

This is the code I'm using in the Menu movie clip. The problem I'm having is that when I click on each button - nothing happens! I tried this one, and nothing happened:
education.addEventListener(MouseEvent.CLICK, educationCLICK);
function educationCLICK(event:MouseEvent):void{
gotoAndPlay('education');
};

And then I tried to re-order it and nothing happened:
function educationCLICK(event:MouseEvent):void{
gotoAndPlay('education');
};
education.addEventListener(MouseEvent.CLICK, educationCLICK);

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved