Actions on the main page..do they affect actions on movie buttons?

ON the home page I've created, the buttons I used with the
code in my previous thread ("two questions about HTML publishing
and buttons"), I added an on rollover action to the actions layer
of the main timeline (not the movie button timeline) so that on
rollover, a picture would change according to the button that was
rolled over. I did this for all three buttons. The rollover action
works great, but now the links don't work in either the html OR the
swf version. Would the added action disable the movie-clip button
actions? Here's the added main timeline code, edited for space:
photobtn_mc.onRollOver = function() {
gotoAndStop(2);
photobtn_mc.onRollOut = function() {
gotoAndStop(1); ( Again, help is greatly appreciated!)

When you add actions to a movie clip, they will take
precedence to any buttons you have inside the movie.
You can code the button however to control any movie clip as
long as you give every movie name and reference it from the root.
ie.
on (release)
_root.main.speller.nameframe.gotoAndStop(1);

Similar Messages

  • Hi, I'm making hyperlinks. They work for the main page of the webpage, but when I'm trying to redirect the hyperlink to a "sub page" of the webpage it is still going to the main page. (allthough I'm pasting the complete url address)

    Hi, I'm making hyperlinks. They work for the main page of the webpage, but when I'm trying to redirect the hyperlink to a "sub page" of the webpage it is still going to the main page. (allthough I'm pasting the complete url address)

    Hi! first of all, thank you so much for your help.
    I don't know about that panel you are talking about.
    what I do is RIGHT CLICK, INTERACTIVE, NEW HYPERLINK, and a window pops up, where I paste the address (images).
    Where says URL I paste the complete address that the "sub page" gives me.
    Is that correct? (for the main page of the wabepage works correctly)
    thanks!!!

  • How do I change the fonts on the main page.My fonts have recently changed without my doing anything. They are like 6 point instead of the 12 I am used to. Email font is now huge. Is this an ATT/Yahoo problem or Firefox. Safari fonts seem to be o.k.

    How do I change the fonts on the home page? They recently shrank from 12 to very tiny..(6 pt?). I did nothing to change them, but after the event tried to change them using "preferences-Fonts"which had no effect. ATT seems to have made a change in their email. The fonts in the email are now huge (18 pt?). This could be an ATT/Yahoo problem with Mac, although Safari seems to be working o. k.

    Jim, extensions are also add-ons. Add-ons include extensions, themes and plugins.
    Whenever you have a problem with Firefox, whatever it is, you need to make sure it's not coming from one of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] and select ''Disable all add-ons''. If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and theme. You can troubleshoot plugins the same way.
    If you want support for one of your add-ons, you'll need to contact its author.

  • Can you go back to second page of your menu without going to the main page.

    I have created main page (first play) and second page for the chapters.
    On the second page, after selecting any chapters, I want to go back to select another chapter from
    the second page, But the dvd takes me back to the main page instead of second page. Can this be
    corrected.
    Thanks

    Hi - welcome to the discussions.
    Yes, it can be corrected - what you've done is set the menu call and/or end jump to go to the main menu. This is completely normal, but sometimes you don't want this to happen.
    If you are playing a single chapter at a time and want to get back to the chapter menu afterwards then the best thing to do is to create a story and put the single chapter inside that. Point your menu buttons to the story container (not the chapter) and it will play. Stories are a little like tracks in that they can have end jumps and menu calls of their own. Simply click on the story, then use the commands in the property inspector to set up the place to go at the end of playback or if the user presses the menu button.
    You would then repeat this for every chapter that you want this to happen for.
    The whole track itself then acts as a 'play all' if you need it to - the stories do not interfere with this. You can set a different end jump and menu call for the track. An alternative would be to create a final story and put ALL of your chapters into it, and point your 'Play All' menu button to this story.
    Stories can also be thought of as playlists (like in iTunes) where you set up the chapters you want to play back in the order that you want them. I would avoid making these too complex, however as it has a knock on effect on the way the DVD player has to work to make a smooth playback.
    The other way to achieve what you want is to use some scripting, but there is no need to do this as it sounds as if stories will do all that you need.

  • How to display links in the main page

    Here is a simple question from an EP beginner-
    I am working on a demo EP site for our company (EP 6.0 SP9).  After the user logs onto the Portal, I want to display a main page with standard Header and Nav bars, and then (in the inner page?) display a list of links to iViews.  The iViews are SAP transaction iViews and url iViews, most of which I have already created and they work fine in preview mode.
    The question is, how to I modify the main page to display the links and maybe a company logo?  Is this an addition to the framework page or something completely different?  In a previous life I created ASP/HTML/javascript pages so coding would not be a problem.
    Thanks in advance,
    Alan

    Hi Alan,
    If u want to display the iviews to a user you want to create  roles.
    First Create all the required iviews,then create pages. Add the iviews to the page. Create workset and add page to the work set. Then create roles and add the workset to the roles. Dont forget to set the Entry point property of role to YES.
    Go to User admin>> select the user to whom u want to show the iviews and assign the role u created to the user.
    Then log in as that user. The iviews will be displayed to the user.
    Regards
    gEorgE

  • How can I use a cfwindow with a form in it to update the main page?

    This seems simple enough but I can't figure it out. My main
    page calls a query to get a list of departments. I have put this
    list in a table inside a cfdiv tag. I have an add department link
    on my page. When the user clicks on this link, I want a popup
    window (cfwindow) to display containing a form to add a department.
    Then when the user submits the form, the form should disappear and
    the main page should show the updated list of departments.
    I can't get the form to close without getting an error
    stating that there already is a window with that name and the new
    data doesn't display unless I refresh my screen.
    Here's my departments.cfm page:
    <html>
    <head>
    </head>
    <cfinvoke component="department"
    method="list"
    returnvariable="departments">
    </cfinvoke>
    <body>
    <cfwindow name="deptWindow" title="Department Window"
    draggable="true" resizable="false"
    initshow="false" height="400" width="600" x=200 y=100>
    <cfform action="processDepartment.cfm"
    onsubmit="ColdFusion.Window.hide('deptWindow')">
    Department:
    <cfinput type="text" name="deptname">
    <cfinput type="submit" name="submit">
    </cfform>
    </cfwindow>
    <a href="#"
    onClick="ColdFusion.Window.show('deptWindow')">Add
    Department</a>
    <cfdiv>
    <table>
    <tr>
    <th>Department</th>
    <th>Action</th>
    </tr>
    <cfoutput query="departments">
    <tr>
    <td>#deptname#</td>
    <td><a href="##"
    onClick="ColdFusion.Window.show('deptWindow')">Edit</a></td>
    </tr>
    </cfoutput>
    </table>
    </cfdiv>
    </body>
    </html>
    Here's my department.cfc page:
    <cfcomponent output="false">
    <cfset THIS.dsn="cf8test">
    <cffunction name="list" access="remote" output="false"
    returntype="Query">
    <cfquery name="departments" datasource="#THIS.dsn#">
    SELECT department_id, deptname
    FROM departments
    ORDER by deptname
    </cfquery>
    <cfreturn departments />
    </cffunction>
    <cffunction name="add" access="public" output="false"
    returntype="Boolean">
    <cfargument name="deptname" required="true"
    type="string">
    <cfquery datasource="#THIS.dsn#">
    INSERT INTO departments(deptname)
    VALUES (<cfqueryparam value="#Trim(ARGUMENTS.deptname)#"
    cfsqltype="cf_sql_varchar">)
    </cfquery>
    <cfreturn true />
    </cffunction>
    </cfcomponent>
    And finally, here's my processDepartment.cfm page:
    <!--- Form Field Validation --->
    <cfparam name="FORM.deptname" type="string">
    <cfif IsDefined("FORM.id")>
    <cfset method="update">
    <cfelse>
    <cfset method="add">
    </cfif>
    <cfinvoke component="department"
    method="#method#">
    <cfif IsDefined("FORM.id")>
    <cfinvokeargument name="id"
    value="#FORM.id#">
    </cfif>
    <cfinvokeargument name="deptname"
    value="#Trim(FORM.deptname)#">
    </cfinvoke>
    <!--- When done go back to the Departments listing --->
    <cflocation url="/departments.cfm">

    Hi Jeff,
    One way to do it is to write a JavaScript function that binds
    to your CFC. The CFC should both insert the user values, and then
    select all of the departments from the department table, and then
    return the query set to the page. I wrote sort of a test page which
    gets the state from the States table according to the state
    abbreviation that the user types in from a CFWindow. The table
    never gets updated, however, the result comes back from the CFC
    through AJAX, then updates the main page. You can use this same
    idea but you'll have to update your CFC a little bit. However, the
    idea is the same.
    Here's the code for my get State application. Especially
    notice the following three lines of code in the JavaScript function
    called getStates:
    var d = new getStates2(); //this is the name of your CFC
    d.setForm('form1'); //not sure if you need this, but I found
    it somewhere
    var stateName = d.getAllStates(); //the name of the function
    inside your CFC
    Anyway here's the code in full:
    <style>
    .stateClass {
    font-family: arial;
    font-weight: bold;
    font-size: 12pt;
    padding-top: 10px;
    </style>
    <cfajaxproxy cfc="getStates2">
    <script language="javascript">
    function enter_pressed(e){
    var keycode;
    if (window.event) keycode = window.event.keyCode;
    else if (e) keycode = e.which;
    else return false;
    return (keycode == 13);
    function getStates()
    if(document.form1.theState.value == '') {
    alert('Please make sure the textbox is not empty.');
    return false;
    var d = new getStates2();
    d.setForm('form1');
    var stateName = d.getAllStates();
    ColdFusion.Window.hide('stateWin');
    if (stateName == '')
    document.getElementById('stateDiv').innerHTML = 'No such
    state';
    else
    document.getElementById('stateDiv').innerHTML = 'The state
    is ' + stateName;
    </script>
    <cfwindow name="stateWin" x="100" y="100" width="400"
    height="200">
    <form name="form1" method="post" onsubmit="return
    false;">
    <input name="theState" type="text" size="5"
    onKeyPress="if(enter_pressed(event)){ getStates() }"
    />
    <input type="button" value="get state"
    onClick="getStates()">
    </form>
    </cfwindow>
    <div id="stateDiv" class="stateClass">
    </div>
    <a
    href="javascript:ColdFusion.Window.show('stateWin')">find a
    state</a>

  • My new podcast episodes are not showing up on the main page

    my podcast page hasn't updated in 2 weeks even though i've been adding new episodes to my feed:
    http://www.cofc.edu/~hiottm/RSS.XML
    When i click SUBSCRIBE, i see the newest episodes there, so iTunes is reading my feed correctly, but why aren't they showing up on the main page?
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=200063590
    Does anyone know if there is a LIMIT to how many will show up on that main page? I have 45 being displayed, but my feed has 59 separate items. I've not read anything that indicates there is a limit.
    any help would be appreciated!!
      Windows XP  

    my podcast page hasn't updated in 2 weeks even though
    i've been adding new episodes to my feed:
    http://www.cofc.edu/~hiottm/RSS.XML
    When i click SUBSCRIBE, i see the newest episodes
    there, so iTunes is reading my feed correctly, but
    why aren't they showing up on the main page?
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/view
    Podcast?id=200063590
    Does anyone know if there is a LIMIT to how many will
    show up on that main page? I have 45 being
    displayed, but my feed has 59 separate items. I've
    not read anything that indicates there is a limit.
    any help would be appreciated!!
      Windows XP  
    I have exactly the same problem with the feed from my podcast at
    http://angus_sessions.podOmatic.com/rss2.xml
    My other podcast downloads fine.
    The same problem is experience in iTunes on both my Mac and PC so it appears to be aniTunes issue, particularly since Juice has no problem updating using the same rss feed.
    It would be great if the iTunes team would comment.
    iMAc   Mac OS X (10.4.3)   Issue also on XP Pro

  • I have a problem when opening a profile on Facebook. when I open the main page and facebook all ok but when I try to open your Firefox profile my block! what the problem ????? before me it was happening but now when I installed Firefox 4

    I have a problem when opening a profile on Facebook. when I open the main page and facebook all ok but when I try to open your Firefox profile my block! what the problem ????? before me it was happening but now when I installed Firefox 4

    WiFi signals get stronger the closer the machine is to the router and the less interference/blocking of the signal like via walls with metal in them or of thick concrete.
    Since the signal emanates outwards in a sphere, your supposed to place the wireless router in a central location in the building so it covers all areas.
    The power of the router also has a affect, if your router is old or something not that powerful like a Airport Express, it doesn't have the ability to filter out other signals or enough punch to get through walls etc. or cover a large area as effectively.
    If you buy/have a powerful router of newer make and have issues where there is metal in the walls or thick concrete, then you can buy something like OpenMesh and by using Ethernet cables from the back of the router, extend the WiFi signal into other rooms and areas past the blockage.
    https://www.open-mesh.com/

  • NEED INFO ON HOW TO REMOVE  ""LOGIN ASSISTANCE LINK'' ON THE MAIN PAGE r12

    Hello, we want to remove (or make it invisible) the "LOGIN ASSISTANCE' on the main page of the r12 instance before we go live. WE will not be given that option to our end-users. Can you please advise how to. THanks.

    Pl see MOS Doc 735964.1 (How to Disable Login Assistance link in R12?)
    HTH
    Srini

  • Hi, I've been playing Smurf's village for a year now and just last week, i tried to get into the app but it keeps rejecting and goes back to the main page.  Is there any reason for this?  I've been updating the app everytime and now it's not letting me in

    Hi, I've been playing Smurf's village for a year now and just last week, i tried to get into the app but it keeps rejecting and goes back to the main page.  Is there any reason for this?  I've been updating the app everytime and now it's not letting me in.  Pls advise. Tq

    Reset the device, restart the device, try downloading any other app.
    All of these are basic steps that could have been found by a simple search of the forums as a resolution for the issue.

  • My location bar, tool bar (file, edit, tools, bookmarks, help) disappeared and cannot be restored. I have no back button, home button etc. the top of the screen is just an empty blue bar. Internet still works if I click on a hyperlink on the main page.

    My location bar, tool bar (file, edit, tools, bookmarks, help) all disappeared and cannot be restored. I have no back button, home button etc. the top of the screen is just an empty blue bar. Internet still works if I click on a hyperlink on the main page.
    The problem started when I turned on the computer this morning. I tried to install Mozilla 4 from your website and that installed but I still have nothing on the top.

    It may be due to Firebug. Seeing as how you're a web developer, it's very possible you have this installed. The latest version, 1.7X a10, appears to cause everything you described. I downgraded to "a8" and that seems to have fixed everything.
    I also recreated a profile from scratch before trying this out, so I can't guarantee it's definitely Firebug.
    Similar issue: https://support.mozilla.com/en-US/questions/783078
    edit: If you go to the Firebug forums, you'll see this is now a known problem. http://code.google.com/p/fbug/issues/detail?id=4012 for the issue tracker.

  • My newest Apple TV work load the main page.  All I get is a page saying home sharing and settings. Even when I restart, restore, it goes back to this page.  It worked once since buying it then suddenly it stopped and I keep getting this page as the main p

    Hi,
    My newest Apple TV which I bought on Amazon finally arrived and worked for 2 days.  Now all of a suudden it is refusing to load the main page to select movies, radio, netflix etc.  All I am getting is a page saying homesharing with only an option to select Computers of Settings.  I have reset the Apple TV, restored it but nothing...it keeps going back to this page saying computers and settings.  I've tried updating the software as well but after 30 minutes or so it tells me software update was unsuccessful and to go to settingsand choose restore and the loop begins?  Is it permanently broken?

    I had the same issue Berry.  What worked for me was going to the General Settings and doing a reset from there.  I got all my apps back but had to re-enter all my information for iTunes, Netflix, Hulu etc...
    Hope it works for you too!

  • I have Thunderbird 24.5.0. When I double click the desktop item to open it up, it opens immediately, but when I'm in the main page with all the folders on the

    I have Thunderbird 24.5.0. When I double click the desktop item to open it up, it opens immediately, but when I'm in the main page with all the folders on the left & the corresponding email details on the right of that same page, it seems to have problems. Before, when I would highlight a certain box / folder (whether it would b “inbox”, “sent” folder, “trash” folder, or whatever, it takes a good 5 min (minimum) to open that certain folder so I can see the emails of that folder.
    Can u help me determine what is causing this? Just 3 days ago, it was fine.
    Thank you

    What is your anti-virus software?

  • VC++ WebBrowser call Javascript function in a frame of the main page

    I can successfully call JS function in the main page from VC++, but when I call the JS function in frame, GetIDsOfNames() return DISP_E_UNKNOWNNAME. The question can be describe as below:
    main page is INDEX.HTM, loaded in webbrowser control, src:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Sample</title>    
        <script type="text/javascript">
    function FuncMain()
    alert("Main Page Function Called!");
        </script>
    </head>
    <body>
    <div>
      <div id="div_test1">
        <iframe id="page_test1" width="100%" height="100%" src="test1.htm" frameborder="0" scrolling="no"></iframe>
      </div>
      <div id="div_test2">
        <iframe id="page_test2" width="100%" height="100%" src="test2.htm" frameborder="0" scrolling="no"></iframe>
      </div>
    </div>
    </body>
    </html>
    test1.htm src:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <body>
    <div>Test1 frame page</div>
    </body>
    </html>
    test2.htm src:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <script type="text/javascript">
         function showAlert(x)
    alert(x);
     function callVC()
    window.external.VCFuncTest();
        </script>
    </head>
    <body>
    <div>Test2 frame page</div>
    <div id="test_btn" style="background-color:red;width:100px;height:100px;cursor:pointer;" onclick="callVC();">Test</div>
    </body>
    </html>
    in VC++:
    VC++ code can call JS functions by CWebPage class, I found it here:  http://www.codeproject.com/Articles/2352/JavaScript-call-from-C
    in my VC project, webPage.CallJScript(_T("FuncMain")) succeeded!
    webPage.CallJScript(_T("page_test2.showAlert") failed,  the GetIDsOfNames() return DISP_E_UNKNOWNNAME. BTW, webPage.CallJScript(_T("showAlert")
    also failed! Same error.
    any help?
    Best Regards!

    Thanks for your reply Viorel_.
    i know i can define a function in the main page: 
    function showAlert_Main(x)
            document.frames('page_test2').showAlert(x);
    then, webPage.CallJScript(_T("showAlert_Main"))
    succeeds.
    but this function is just an empty shell doing nothing, and i know there must have a way to call showAlert(x) directly.

  • I installed my new Apple TV and successfully completed the configuration (Wireless network, Apple ID, and others) yet I am always in the Computers and Setting page- can't move to the main page – any idea on what and how, please?

    Hello, I installed my new Apple TV and successfully completed the configuration (Wireless network, Apple ID, and others) yet I am always in the Computers and Setting page… can’t move to the main page – any idea on what and how, please?

    Welcome to the Apple Community.
    Unfortunately, a number of users appear to have encountered this problem. Some of these users have reported that the problem just disappears the following day or shortly after. Other users have found various other solutions to this problem.
    Firstly, are you receiving any date and time errors when you turn on your Apple TV?
    Check that you are properly connected to the Internet, by ensuring that you have a proper IP address and not one starting with 169. Also check that your location for the iTunes Store is set correctly, if so you might try changing it and then changing it back.
    If the problem persists try restarting the Apple TV by removing ALL the cables for 30 seconds, or resetting it using the reset option under general. You should also try restarting your router, or if this doesn't work you might like to try a restore.

  • Unable to get AM object of an External LOV Region in CO of the Main Page.

    Hi ,
    I have a requirment to add dynamic where clause to a LOV VO.
    LOV field details:
    =======
    External LOV region is attached to the field.
    No Controller
    External Region Lov region has one AM attached.
    The LOV AM is not extended in the Main Page AM.
    Can anyone please suggest how to access the LOV AM in the Main page Controller...so that I can access the VO attached to the AM and set the where clause as required.
    Below are the solutions i have tried to implement. But was unsuccessful
    1. LovAMImpl XxLovAM = (LovAMImpl )pageContext.getRootApplicationModule().findApplicationModule("LovAM");
    2. Extended the Main Page AM (root application module) and extended the LovAM .
    3.OAWebBean regionbean = webBean.findChildRecursive("LovRN");
    LovAMImpl xxLovAM = (LovAMImpl)pageContext.getApplicationModule(regionbean);
    In all the above mentioned solutions, Lov AM object was null.
    It will be a great help if anyone can suggest any solution for the same.
    Thanks and Regards,
    Raja

    Hi Raja,
    Try this code. Recently i had the same requirement. I was able to achieve it through this piece of code.
    OAApplicationModule oam =
    (OAApplicationModule)am.findApplicationModule("XxVacancyLovsAM");
    if (oam != null) {
    } else {
    oam =
    (OAApplicationModule)am.createApplicationModule("XxVacancyLovsAM",
    "oracle.apps.irc.lov.server.VacancyLovsAM");
    OAViewObject IrcVacancyOrganizationLovVO =
    (OAViewObject)oam.findViewObject("IrcVacancyOrganizationLovVO");
    if (IrcVacancyOrganizationLovVO != null) {           
    IrcVacancyOrganizationLovVO.setWhereClause();
    Write this before Super in Process request.
    Regards,
    Pradeep

Maybe you are looking for