Linking from mc

Hello!
I have a “book flipping pages” mc that I
downloaded... and every page has a btn that links to a
website…. I’ve tried different ways to make it work but
all of the btns from the different pages are not working…
please help! I am new to this and just don’t know what else
to do!!!!
Here it is the code…
1- Scene1… holds a “book” mc
2- “Book” mc holds the background, the page flips
mc and the actions for the “next” “back”
arrows. It also holds the mc that holds all the pages that flip,
called “picture”
3- The “picture” mc holds all of the images..
every frame hold the images representing each page. I placed a btn
on each frame that should direct to a website. Here it is an
example of what I have for the btns….
(frame 1/btn1)
on (release) {
getURL("
http://www.cnn.com/", "_blank");
that when I test the movie, all of the bns are directing to
cnn.com (the link on the btn from the first frame…. Would you
be able to direct me to what I am doing wrong?
I really appreciate your help… I usually try to learn
on my own, but I am about to giving up after several hours trying
Thank you so much for your help!

In AS3, _parent and _root are replaced by parent and root.  And almost always in implementing them you need to caste them as object types.  Try using...
MovieClip(this.root).gotoAndStop("3");

Similar Messages

  • Error message when clicking on links from thunderbird: Firefox.exe – Entry Point Not found

    When I click on any link in a Thunderbird email message I get the error message:
    Firefox.exe – Entry Point Not found
    The procedure entry point ?DllBlocklist_Initialize@@YAXXZ could not be located in the dynamic link library T:\PQligP sFuvy (X86)\pJPpSox HneiCFv\GwCMqTQ.Oqt.
    I tried uninstalling Firefox 27 completely and reinstalling it, and the error is still there. When I uninstall V27 and install the older V26 the error disappears. Id there an issue with V27 trying to work with links from Thunderbird?
    I am on a laptop running Windows 8.1 with all current downloads.

    Thanks for the reply - as best as I can tell it seems to be some kind of incompatibility between Thunderbird V24.3.0 and Firefox V27. If I install Firefox V26 then everything works as it should. I haven't tried installing a previous version of Thunderbird to see if that makes a difference.

  • I have updated my default mailto as Outlook on Windows 7, set Firefox to use the default as mail to and YET I still cannot send links from the Firfox Browser.

    Can not send links from File send or emails from sites with options to email

    go to '''TOOLS '''then '''OPTIONS''' then '''ADVANCED''' then '''NETWORK tab''' then '''SETTINGS tab''' and select the options '''NO PROXY''' click '''OK''' and '''OK '''again in the next screen. With that you have disabled the proxy settings.
    ''if you like to not disable the proxy settings choose'' : '''Auto-detect proxy settings for this network''' (it is in the same session)
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • How can i get all links from html file ?

    I tried some code:
    List<string> metas = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    HtmlWeb web = new HtmlWeb();
    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.Load(filename, Encoding.UTF8);
    var metaTags = doc.DocumentNode.SelectNodes("//meta");
    if (metaTags != null)
    foreach (var tag in metaTags)
    if (tag.Attributes["name"] != null && tag.Attributes["content"] != null)
    text = tag.Attributes["name"].Value;
    mys = tag.Attributes["content"].Value;
    var linksOnPage = from lnks in doc.DocumentNode.Descendants()
    where lnks.Name == "a" &&
    lnks.Attributes["href"] != null &&
    lnks.InnerText.Trim().Length > 0
    select new
    Url = lnks.Attributes["href"].Value,
    Text = lnks.InnerText
    foreach (HtmlNode node in doc.DocumentNode
    .SelectNodes("//a/@href | //img/@src"))
    metas.Add(node.Name);
    In the var linksOnPage i'm getting all the links but some of them not only links for example the first item i see:
    [0] = { Url = "/", Text = "&nbsp;&nbsp;&nbsp;&nbsp;" }
    Then the second item:
    [1] = { Url = "http://rotter.net/cgi-bin/forum/dcboard.cgi?az=login", Text = "התחבר" }
    Next i want to add another loop or variable that will contain only the links after im src for example:
    <img
    src="http://mysite.com"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    So to get only http://mysite.com
    So in the end i will have two Lists:
    First List will contain all links from the html file.
    Second List only links that are in img src

    Ok i'm using regex now and i can get the links i need:
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    string[] fall = File.ReadAllLines(filename);
    foreach (string hh in fall)
    if (hh.Contains("http://rotter.net") && hh.Contains("locked")||
    hh.Contains("locked_icon_general") ||
    hh.Contains("locked_icon_anchor") ||
    hh.Contains("icon_anchor") ||
    hh.Contains("locked_icon_fire") ||
    hh.Contains("locked_icon_sport")||
    hh.Contains("locked_icon_camera")||
    hh.Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(hh))
    metas.Add(m.Value);
    So now in the metas i have in this case two links.
    For example the first link is from this block in the file:
    The link i got is : http://rotter.net/forum/Images/hot_icon_anchor.gif
    And this is the right link from this block but now how do i get the text from this block and how i connect how do i know that this text belong to the link ? I need to add this text from this block to a new List. Before all that i counted on my own lines
    and got the text but that's a bad idea.
    I need somehow to get: שרשור תשדירי בחירות מרוכז:
    To get the text between the ToolTip',' and the second ',' but not from all the html file only in places of this two links i extracted.
    <TD ALIGN="RIGHT"
    VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','שרשור תשדירי בחירות מרוכז:','<u><span style=color:#000099;>כתב: menahem בתאריך: 03.03.15
    שעה: 08:51</span></u><br>1.<br>http://youtu.be/utUaqyiRkJ8<br><br><br>...'); Activate();"
    onmouseout="deActivate()"
    href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/hot_icon_anchor.gif"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    <FONT CLASS='text15bn'><FONT
    FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=187966&forum=scoops1"><b>
    <font color="red">שרשור תשדירי בחירות מרוכז:</b>
    </a></font></TD>

  • I have iPhone 4s, and using latest iOS. When I try to open any link from Twitter or Facebook, it goes to open some wrong webpage. My iphone seems to be infected or suffering from some spyware or malware. How can I remove this wrong link opening

    I have iPhone 4s, and using latest iOS. When I try to open any link from Twitter or Facebook, it goes to open some wrong webpage. My iphone seems to be infected or suffering from some spyware or malware. How can I remove this wrong link opening ? Please help me to resolve...

    I think the McAfee suite will do the trick when I pay them a one-time fee of $69 or $179 for a year for unlimited support.
    Your call of course but IMO a waste of money. Please read this first:
    There are many forms of ‘Malware’ that can affect a computer system, of which ‘a virus’ is but one type, ‘trojans’ another. Using the strict definition of a computer virus, no viruses that can attack OS X have so far been detected 'in the wild', i.e. in anything other than laboratory conditions. The same is not true of other forms of malware, such as Trojans. Whilst it is a fairly safe bet that your Mac has NOT been infected by a virus, it may have another security-related problem, but more likely a technical problem unrelated to any malware threat.
    You may find this User Tip on Viruses, Trojan Detection and Removal, as well as general Internet Security and Privacy, useful:
    https://discussions.apple.com/docs/DOC-2435
    The User Tip (which you are welcome to print out and retain for future reference) seeks to offer guidance on the main security threats and how to avoid them.
    More useful information can also be found here:
    http://www.reedcorner.net/mmg/

  • IPad Air too much time to open a link from Mail

    SInce the last update to iOS 8.02 my iPad Air takes too much time to open a web link from the Mail App, Safari open itself with a long delay.
    furthermore The attachments into email are often not readable, have to reload the message to be able to open the attachment.
    LAst but not least, I have too many messages not downloaded from the iMap server and I can read just the title of it.

    There's a large thread around about this Dolphin problem.
    Disabling Nepomuk in System Settings has proved to be the
    cure in many cases.
    Deej

  • Is there is a way to have a link from purchase order to cost center report.

    Is there is a way to have a link from purchase order to cost center report.
    I am meaning kind of:
    Standard way to customized this link?
    or
    User exit to have this link in place
    or
    Any other solution
    Thanks

    For me it does not make any sense from going from PO to cost center report.
    However, if you want to see the purchase order cost incurred with a cost center, execute KSB1 report. Within the layout, bring "Purchasing Document" field, where you can see the purchase order number in cost center line item report.

  • Firefox and Thunderbird do not communicate anymore : I can't open links from TB emails ( a href... ) and can't send mail from FF pages (mailto)

    Hi there,
    Please excuse me if a make a few mistakes, I am French ;)
    I come here because firefox and thunderbird are not working together anymore. This is what happens :
    - Firefox and Thunderbird are opened
    - I click on a link in an email
    - A few seconds after that a Firefox windows pops up. The title is : "Close Firefox", the content is : "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system."
    Second case :
    - Firefox is closed and Thunderbird is open
    - I click on a link in an email
    - A few seconds after that a Firefox windows pops up as expected. Firefox opens the link as expected but doesn't opens the other tabs as usual (when i start FF it re-opens previous tabs)
    Third case :
    - Firefox and Thunderbird are opened
    - I click on a link to send an email (<a href="mailto:......@.....">)
    - A few seconds after that a Thunderbird windows pops up. The title is : "Close Thunderbird", the content is : "Thunderbird is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system."
    As in the second case, if TB is closed when i click on the mailto, TB opens properly and send the email.
    If Internet Explorer is set as my default browser, it works fine for "Thunderbird -> link -> IE" but the "IE-> mailto -> TB" still doesn't work.
    I already looked up for some answers on google but can't find something which works.
    Thank you in advance for your answers.
    Vincent

    Check the target field in the Firefox desktop shortcut and make sure that you do not start Firefox with the -no-remote switch or have set the environment variable MOZ_NO_REMOTE=1 (Control Panel > System > Advanced > Environment variables).
    Always make sure to start at least the default profile without the -no-remote command line switch.
    If you need to have more than one profile open at the same time then start subsequent instances with the -no-remote command line switch.
    You can not send links from other programs to a Firefox instance that is started with the -no-remote switch.
    In such a case you need to drag links in a Firefox window or paste the link in the location bar.

  • How to call a portal KM URL link from WAD template Link

    Hi All
    I  am trying to call a Portal KM URL Link from the web template using the link control.
    I cannot figure out whare and how to put the portal KM URL Link into the web application web link.
    Your help is greatly appreciated.
    Thanks
    Karen

    Add content administration role to the user.
    The the content administration tab would be visible to the user in the main menu tab.
    Then in content administration tab, configure the URL for KM URL tab or link.
    This would be done by EP experts. Please contact your EP experts to do.
    Hope this would help you.

  • "Open links from applications" in Safari 5

    Preferences > General > "Open links from applications"
    This has been removed in Safari 5, so when I open, say, 10 weblocs I keep in a folder in the Finder, I now get 10 separate windows.
    1) ***, Apple?!?
    2) Any suggestions for a hack to fix this stupid oversight?
    I could probably change Preferences > Tabs > Open pages in tabs instead of windows (which I currently have set to "Never" because it overrides keystroke+click for telling Safari how to open a link) and see what that does, but I like that preference the way it is.

    Hi,
         Is there any workaround for this issue. Because when multiple window gets spanned we are getting confused. Or let us know if there is any way to open the download prompt alone instead of opening up with the new window. One more thing to note is once the download is complete the new window also doesn't closes automatically which needs to be closed manually. This makes very annoying. Kindly let us know how to prevent the new empty window from opening.
    Vijay.

  • Can I link from Interactive report Page 1 to Master Detail page 2?

    Hi folks-
    I know how to create a Page as an Interactive Report; it creates 2 pages automatically (primary page with the great interactive bar) and a 2nd page that's a single record.
    I know how to create a Page as Master Detail, whereby I get a tabular list without the super interactive bar, and I can select a record, and get transported to a nice page with 2 regions (master on top, detail on bottom).
    I want to have the First page from the Interactive Report, select the record, and go to the 2nd page of a MasterDetail.
    Do I create the Interactive Report, and customize the 2nd page, to add a region?
    Or, do I create both page types, and redirect from the 1st page of the Interactive Report to the DML Form from the MD report? I tried that, re-assigning the link from the Interactive Report to be a Link to Custom Target, and specify the page # of the Master-Detail page. And it is taking me to the right page, but the data from the selected row is not coming with me, and the detail in the bottom region is not appearing at all.
    Can someone please give me a nudge as to the sequence I should be doing?
    (As you can tell, I'm new to Apex.... I'm trying to use it to create a prototype or proof-of-concept for a database driven web application)
    Thank you
    Marion

    Yes, I tried that after I wrote to you - and it's fine, but not what I'm after; it's only based on 1 table and I'm working with 2 tables.
    Perhaps I can explain in better.
    I want one page as an interactive tabular report (of the master records)
    I want to select a row, and transfer to a page that has the corresponding row on top (as a form), and a tabular region below of records from a related detail table.
    ie, I want page 1 from the Interactive Report, and page 2 of the Master Detail report.
    OK - I just took the form page, and added a region below in a tabular report. And I'm getting the data, but I'm getting all the records (not just the ones associated with the single record on top. I figure I need to edit the Region Definition->Source (to specify that the id numbers need to match), but the code is not editable.....
    So I am in Structured Query Attributes, and I've Modified the Join Conditions - but I still get all the detail records in the bottom region. I''m trying to add in the ( + ) qualifier, but it doesn't affect anything...
    I'm soo close to what i'm trying to do!
    Thank you for your continued patience and assistance
    Marion
    here's the Source I have for the region..... (I'm including the excess ID columns just for learning purposes)
    SELECT
    "PHONENUMBERS"."PHONE_ENTITY_ID" "PHONE_ENTITY_ID",
    "ENTITIES"."ENTITY_ID" "ENTITY_ID",
    "ENTITIES"."FIRSTNAME" "FIRSTNAME",
    "ENTITIES"."LASTNAME" "LASTNAME",
    "ENTITIES"."COMPANY" "COMPANY",
    "PHONENUMBERS"."PHONE_ID" "PHONE_ID",
    "PHONENUMBERS"."PHONETYPE" "PHONETYPE",
    "PHONENUMBERS"."PHONENUMBER" "PHONENUMBER",
    "PHONENUMBERS"."PHONECOMMENT" "PHONECOMMENT"
    FROM
    "PHONENUMBERS",
    "ENTITIES"
    WHERE ENTITIES.ENTITY_ID = PHONENUMBERS.PHONE_ENTITY_ID
    Edited by: mtpaper on Oct 12, 2009 1:30 PM
    Edited by: mtpaper on Oct 12, 2009 1:32 PM

  • Firefox won't open links from Mac Mail

    Like everyone else Apple Mail links will not open in Firefox if it is already open. Clicking a link brings FF to the front but no page loads. Links work if FF is not open. Links work if command is pressed whilst clicking the link (opens in new tab in background).
    Problem occurred after 32.0.2 update, it appeared to briefly resolve itself after 32.0.3 update, but stopped (I think) on next reboot.
    Have monkeyed around for ages with different combinations of default browser and rebooting.
    Will abandon FF and go back to Safari if this isn't sorted soon - shame.

    I just want to link to these earlier threads so you don't get a lot of duplicate suggestions that have already been covered there:
    * [https://support.mozilla.org/questions/1018542 Firefox won't open email links after update to version 32]
    * [https://support.mozilla.org/questions/1023202 No tab opens when I click on a link if any Firefox window is already open]
    (There might be others, but those are the ones I've seen)
    Work is proceeding on [https://bugzilla.mozilla.org/show_bug.cgi?id=1017595 Bug #1017595 – Links from external applications sometimes fail to open when Firefox is hidden] but as you can tell from the title, this is focused on the problem of Firefox not coming out of hiding from the dock or coming out of hiding but not loading the page. If this also occurs when Firefox is not hidden at all, there may be a secondary issue. But hopefully solving the one will solve the other. Unfortunately, I don't know whether it will be in time for Firefox 33.

  • Won't Open link from email it gives me the option to open but does nothing when I click that open box. This is a new problem my phone never had trouble with this before.

    When I try to open a link from an email it gives me a choice to open but when I choose open it won't! I used to be able to click right on a store or anything and it  would open connect to the store.  Very strange

    Hi
    It shows just 4 always as an option in the "open with" lsit. Also I haven't downloaded any apps for a while so why would it start now?
    Do you know how I can estabilsh how many apps are counting toward this 10 and what they are?

  • "edit" link from report to form does not show values

    I created a report and an attached form on two different pages. The report is a query combining two tables with outer joins. When I click on the "edit" button on the report, I get forwarded to the form page.
    My problem: When I get forwarded to the forms page, I get an empty form, and not the data from the column as expected. The "edit" button behaves more like the "create" button. Anybody an idea what I could change to be able to edit the column data?
    Thank you.

    I've met the similar problem with previous releases (1.5.0 and 1.5.1) without any objective reason.
    As I suggests, sometimes HTMLDB lost current session state. When this occurs, ALL links from reports to it's forms does not transit primary keys. I've just completed application development and I've met this behaviour every months.
    As a workaround I found folowwjing process:
    Come into administration tab, selet "Report with option to purge current session state". When I purge current session state and re-login to application, all report-form links will start to work.
    I don't know, what is the issue, but I met it so soon on my local HTMLDB environment.

  • Safari doesn't "Reopen All Windows From Last Session" and links from Mail

    After a crash I found myself trying to "Reopen All Windows From Last Session", then I found that if I click a link from Mail it does not open it ... as well from any other application. It's like only workin' within itself and can't interact with any other application. Plus I used a lot "Reopen All Windows From Last Session" and now it doesn't work

    Same thing just happened to me. Reinstalling Saferi did not help.

  • Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?

    Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?
    Thanks!

    Dear Linc,
    Thank you for the advice, John Blanchard1  and Linc Davis
    As suggested in your reference thread I removed "/Library/Printers/hp/PDEs/hpPostScriptPDE.plugin" and the problem has been resolved.
    I am guessing the the plug-in for the hp printers got corrupted and effected every thing, or became unsuitable when I installed an Apple update. I would be most grateful if you can confirm how the problem was coursed so I can understand and learn from this experiance.
    Ash

Maybe you are looking for

  • BEx front end version problem

    Hai everybody,               I am trying to edit an existing query. When I open the query designer( from excel sheet)  I am getting the following error message is appearing. The component was edited with a more recent version of the editor. You also

  • 'Out of frequency'

    Hello I installed Solaris 10 succesfully on my x86 desktop, but I didn't realised in time that I was working with a LCD screen, so I entered the option about the standaard 75Hz frequency away... Now if I start up Solaris, I first get the bootscreen w

  • Save viewCriteria with mds

    Hello! I´ve just implemented user mds, for our application. And everithing works ok. Just have a little problem with saving query criterias accross sesion. When the query panel is based on a simple view object, I mean "select blabla from table" the q

  • Why do non-admin Wndows 7 users need admin password to use firefox?

    I had to reinstall Firefox and now as non-admin user, I have to use admin password to sign, plus, lost my user bookmarks? Only one personna appears for all users.

  • Routine help - urgent

    Hi guys, Need help for routine code, i have rquirement currency translation based on currency type  In the cube we having the Amount Key Figure in USD. i want to convert these values based on currency type or company code . ..GBP,JPY,INR,KRW..etc. ca