Scrolling panel named anchor points

Hi All,
Wondering if anyone can help. I have a Flash file with a couple of Scroll Panels.  Is it possible to have named anchor points withing the text and a simple text link to each as with HTML.
Thanks in anticipation,
Lloyd

http://wallymaddie02.businesscatalyst.com/index.html#contact
It seems to stop as I go down the page. My documents this morning show no or little movement
Ken Zierler
[email protected]
908.447.1562

Similar Messages

  • AE CS5 - Shape Layer - Anchor point moves after position keyframe

    I am experiencing unintuitive (to me) behaviour with a brand new shape layer. Here are the steps to reproduce the issue. I have made a screen cap of the problem but can't figure out how to upload it to this forum.
    1. In an existing composition, I create a new Shape Layer
    2. By default the anchor point (center point) is in the dead center of the shape layer. Perfect.
    3. I turn on Position keyframing, and add a position keyframe at my current time
    4. Instantly the anchor point now jumps to the center of the composition, and so now when I scale my shape layer it doesn't scale properly
    If I try to use the Pan Behind tool, I get position keyframing. Besides, I SHOULD NOT HAVE TO DO THIS, since the anchor point was in the correct spot to start with, and it's only because of this keyframing "bug" that the anchor point jumps.
    What am I missing or doing wrong? How can I add a position keyframe to a BRAND NEW LAYER that has no other animation on it, and still keep the anchor point in the dead center of my shape?
    Thanks for your advice,
    Tom

    Thanks to Rick and Mylenium for your helpful answers. Rick, I'd prefer not to have to manually reposition, because I'm never going to be as mathematically precise as the software for positioning the Anchor Point dead center.
    Using the transform controls on the shape rather than the global container certainly did the trick! You guys are great. Thanks.
    [rant]
    In my defense as far as the constant exhortations to "RTFM", we all know that most veteran software users only go to the manual when there's a problem. You also know that Adobe's help system (particluarly in regards to search) has gotten worse over the years, not better. So when I run into a situation like this, I'm going to search through the help for what I believe the problem is: namely "anchor points", "transformations" and "keyframes", and maybe "shape layers". This is a fair amount of research, and it's exactly what I do as my first line of defense.
    The second line of defense that most tech savvy folk do, is a Google search; for example: "anchor point moves after position keyframe" or "After Effects shapes layer anchor point moves keyframe" etc. And you spend your time sifting through forums trying to find the relevant answers. I feel that THAT is my true due diligence, rather than reading the F'n Adobe manual that is so very very sparse.
    So after my due diligence, I turn to the experts communities, because there I know I will get educated, reliable help within a reasonable turnaround time. And because I myself contribute to these same forums in areas where I have higher than average expertise. The Adobe Forums have proven to be one of the great online resources.
    Finally, now that I have a great answer from two knowledgeable experts (thanks again!), I've also enriched the community, because of the way I have crafted my post title, hopefully the next poor ******* who has a similar problem and a similar methodology to finding resolution will stubmle upon my post because I've tried to overload the title with relevant keywords that will generate hits in google.
    Through my question, and your accurate answers, the global knowledgebase has improved.
    So forgive me for not memorizing the F'n Adobe online help. I go to the resources that are the most useful, expedient, and provide the greatest value as a whole.
    [/rant]
    Peace,
    Tom

  • Target Named Anchor in a Spry Collapsible Panel from a different page

    Let me start by saying I have combed this forum (and others) looking for a resolution to this.  I am familiar with David Powers solution on Foundationphp.com and am using that code in project to open the collapsible panel from a separate page and it works beautifullly.  The problem I have is that I want the browser to move down to a specific named anchor inside that opened collapsible panel when clicked from a different page.
    Snippets of my current code here.
    Below is the code that I have on an image that when clicked goes to the correct page and opens Panel1.  Works Perfectly!
    <a href="bamboo-species.php?col1=open#CollapsiblePanel1"><img src="images/Content/Photos/HomeScroll/blackTmbor.jpg" width="227" height="175" /></a>
    Below is the link to the .js file and the script in the head of the target page
    <script type="text/javascript" src="SpryAssets/SpryURLUtils.js"></script>
    <script type="text/javascript">
    // Grabs the values of the URL parameters for the current URL.
    var params = Spry.Utils.getLocationParamsAsObject();
    </script>
    Below is the code that I have on the target page for Panel1
    <script type="text/javascript">
    var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1", {contentIsOpen:params.col1 ? true : false},{duration: 1000});
    </script>
    If I have a named anchor say <a name="species1" id="species1"></a> down in the page, how do I target that named anchor from my link on the separate page.  I have tried adding the #species1 to the end of the link on the link page (see below) but with no luck. I believe those were the instructions on foundationphp.com site.
    <a href="bamboo-species.php?col1=open#CollapsiblePanel1#species1"><img  src="images/Content/Photos/HomeScroll/blackTmbor.jpg" width="227"  height="175" /></a>
    I hope (and suspect) that this is an easy fix, I just do not know what it is.  Any help or direction where to look is greatly appreciated.

    I once had the same issue can created a small function that allows me to "jump" to a element.
    function scrollTo( element ){
         var stylize = function( element){ return !+"\v1" ? element.currentStyle : document.defaultView.getComputedStyle( element , null ) },
              getPosition = function( element ){
                   // based on the SpryEffect's module:
                   var computedStyle, tryComputedStyle,
                        position = { x: 0, y: 0 };
                        if ( element.style.left  && /px/i.test(element.style.left) ){
                             position.x = parseInt(element.style.left, 10); // without padding
                        } else {
                             computedStyle = stylize( element );
                             var tryComputedStyle = computedStyle && computedStyle.left && /px/i.test( computedStyle.left );
                             if (tryComputedStyle)
                                  position.x = parseInt( computedStyle.left, 10 ); // without padding, includes css
                             if(!tryComputedStyle || position.x == 0) // otherwise we might run into problems on safari and opera (mac only)
                                  position.x = element.offsetLeft;   // includes padding
                        if ( element.style.top && /px/i.test(element.style.top) )
                             position.y = parseInt( element.style.top, 10); // without padding
                        else
                             if ( !computedStyle )
                                  computedStyle = stylize( element );
                        var tryComputedStyle = computedStyle && computedStyle.top && /px/i.test( computedStyle.top );
                             if ( tryComputedStyle )
                                  position.y = parseInt( computedStyle.top, 10 ); // without padding, includes css
                             if( !tryComputedStyle || position.y == 0 ) // otherwise we might run into problems on safari and opera (mac only)
                                  position.y = element.offsetTop;   // includes padding
                   return position;
              scroll( 0, getPosition( element ).y );
    So now we have a scrollTo function that accepts a pure HTML element as argument, all what is left to do is figure out if we have a hash, and if the anchor exits on the page.
    ( hopes this works, i wrote it without testing, but you get the general idea ):
    if( window.location.hash ){
         var hash = window.location.hash.substr(1), // remove the # from the hash
         element;
         // as anchors can also be used with id attributes, check that first,
         element = document.getElementById( hash );
         // maby we used name="" attribute
         if( !element && ( element = document.getElementsByName( hash )) ){
              element = element[0];
         // if we have a match:
         if( element ){
              // give the collapsible panel some time to init and update the DOM;
              setTimeout(function(){ scrollTo( element ) },0);
    \o/

  • First page next to homepage shifts to the right during scrolling to anchor points.

    I made a second page exactly the same as the homepage in a different language, but using the new anchor points at this new page does nog give the same effect. It should only be scrolling down, but it shifts also to the right of the browser. I get a scrollingbar at the bottom of my frame. The homepage does not get all this unwanted extras. This is the URL: http://changer.businesscatalyst.com/english.html#homenews

    I had this problem 2 times with 2 different websites. Only could solve it by beginning a new file, copy pasting all elements adding new achors.
    You should find this issue on this forum as I posted it before.

  • Anchor points and scrolling trouble in Muse

    I set anchor points on a long page in Muse. I want to be able to click on a menu item and scroll down to that section in the layout. For some reason when I click on my menu the scroll effect doesn't work very well. It seems to stop early. Why is that? n It used to work fine?

    http://wallymaddie02.businesscatalyst.com/index.html#contact
    It seems to stop as I go down the page. My documents this morning show no or little movement
    Ken Zierler
    [email protected]
    908.447.1562

  • Named anchors in scrolling areas

    Has anyone successfully placed named anchors inside scrolling
    text areas? It works great in Safari but Internet Explorer will
    jump to whatever line the anchor is placed on and disregard the
    scroll attribute placed in the <div> tag.
    I really want this to work in Explorer but I'm stumped. Any
    help would be appreciated!
    Thanks in advance for any help!

    > I really want this to work in Explorer...
    Should work fine with IE.
    http://blog.deconcept.com/code/overflowsafari/overflowsafarijs.html#c1
    anchor links on the page and inside the div
    It's Safari that should have the problem.
    http://blog.deconcept.com/code/overflowsafari/overflowsafari.html

  • What's the trick to positioning named anchors on a side scrolling site?

    I'm putting together a page that scrolls to the right. My problem is getting the named anchor for a div that's to the right of the screen to slide over to the left of the screen. Right now it only goes to the right, so what's in the div is still out of view.
    Sorry I don't have a link up to what I've started so you can see what I mean.
    I've been trying to figure out the CSS and HTML behind www.deanoakly.com to figure out how he does it. Can anyone here take a look to see? Any help is much appreciated!
    When  I say the page scrolls to the right I mean to the left. It stops at the anchor to the right, but the content I want in view is still to the right. Is there a way of getting that anchor to stop on the left of the screen, rather than the right?
    Message was edited by: daveharr1s0n

    You misspelled the name of the site. It's http://deanoakley.com.
    Anyway, it's done using JavaScript. The details of the technique used on that site are here: http://lab.centralscrutinizer.it/the-tiny-scrollings/.

  • Action a link to an anchor point when a scroll postion is reached

    Hi, I want to know if there is a way to action an anchor point or link on a muse site when you reach a certain scroll postion, I believe this can be done with some javascript but not sure if it can be done directly in muse? So basically when you scroll say to 1000px down a page some kind of trigger is activated and takes you to a predefined anchor or link to another page. If this can be done by embedding some code does anyone know what the code would look like?

    see this post near the top . . . if you're using framesets you will scroll to the bottom of the page to see what they posted there.
    http://forums.adobe.com/message/628872#628872

  • CS5: Moving Anchor Points w/ Transform Panel, Not Whole Object

    Hey there. Did the digging before asking but nothing came up. I'm pretty green, so I'm sure it's something silly. I'm trying to move specific anchor points on a path a few pixels up from their current position, while keeping everything else where it is, so it'll transform the figure's shape. I'm trying to do it precise by changing it's dimensions, rather than clicking and dragging. Thankfully, that's at least an option because it -does- work when I direct select the points I want and drag them. Problems with that:
    1) I have very little control. If I want the point moved up by whole pixels, I pretty much have to get lucky because it's always in decimal points.
    2) With shapes bordering each other (parts of a complex shape), if I want to move their location to scrunch something (Half circle in a larger half circle, wanting to flatten out the base), if I lift those points up, they leave a gap. As if the top border of the outer circle has another anchor point under the lower of the one above that, and I can't click on it to move everything while they're still touching. I can take screenshots if needed. I'm following a tutorial to get used to the program.
    Alternately, I suppose if you have a shortcut for constraining the drag to whole pixels instead of fractions, that's great too. In Photoshop and the like, holding Shift would give me precision, but that's not the case in this tool or perhaps program.
    Thanks a bunch. This program is frustrating, but I know I'll have fun with it when I get it.

    Hard to decipher exactly what you are asking for, but after reading your post a few times sounds like you want to move vector point by whole pixles amounts.
    Have you tried setting your keyboard increment to 1 pixel, and using the cursor keys to nudge points.
    If you are working on digital work, you may want to turn on snap to pixel grid, which will also kepep all your times to whole pixel amounts.

  • PE10: Is there a way of dragging the anchor point within the monitor panel?

    I need to drag the anchor point to the far right upper corner to make that point the pivot point for photos. Tried every combination I could think of, but can’t find a way.

    I am used to Premiere Pro 5.5 that has the capability.
    I have 40 some odd photos to do this with. I tried to automate the process by creating a preset. With premiere elements it seems to take longer. I guess I just have to fool around with what's available.
    I am using premiere elements 10 upgraded from premiere elements 9, which had the color matte function which I can't find it elements 10. Can you tell me where that function my lay?

  • Anchor point not working with pinned page navigation link

    Anchor point at top of page, named top, does not function when clicking on pinned navigation link text.  Correct link has been made in the Links menu.  What procedure might overcome this functional problem?
    I have the same type of anchor point named 'top' on other pages and the pinned navigation link works fine on those pages.  For some reason only one page shows this problem.
    Thanks,
    Tim

    Try moving the 'top' anchor down a little bit. I have run into a few issues when the anchor was to close to the top of the canvas for example JS not smooth scrolling, it would just jump to the top or it would not do a thing like what you are experiencing.

  • Links to id's and named anchors within a page in an iframe do not open in firefox

    In order to force layout of my liquid website, I use i-frames to display content . It is all on my sight www.rdelutherie.com, and I am not displaying pages from other sights. The links to sections of pages from within the same page do not work in firefox.
    I have had this problem before with named anchors, and in moving up to html5 and in making my site accessible for people with dissabilities, I started using &lt;nav&gt; eliments... and changed from named anchors to links to ID's like this:
    In an unordered list I have these:
    <pre><nowiki> <li><a href="#s1">Subject 1:</a></li>
    </nowiki></pre>
    They link to sections of the same page like this one:
    <pre><nowiki>
    <section id=s1>
    <h2>Subject 1:</h2>
    <p>Blah blah blaaaaah, and bla bla!</p>
    </section></nowiki></pre>
    Last time I researched this problem (a year or more ago), I was told that it was because of a security risk (something about being able to count views...and other peoples proprietary and copyrighted material), but the vaguely described reasoning made little to no sense to me nor many others, who can not even link to our own stuff. The Mozilla developers were rather abrupt and some were even rude in telling us to live with it, instead of trying to come up with a solution or work around, and closed the post and disallowed further posting.
    The problem still persists, and although I am not a programmer, I have a real hard time believing that it is impossible for Firefox to distinguish between links contained within a document and site, from those on different sights, domains and what have you.
    As far as I know, no other browsers have this problem, so if it is such a big security risk, what is to stop someone with malicious intentions, from just using M$ IE, to bring their evil plan to fruition?
    In keeping with "Making the web a better place": Please address this problem, and find a solution, workaround, or at least explain why it is impossible.
    Bob English

    Thanks again jscher2000,
    I know exactly what you mean, but I have had other page display problems with adjacent columns where one side does not display completely and seems to be conforming to the other ones height... hence the height settings and other tricks to force things to be acceptable.
    I am far from understanding code, and most of the solutions, including the one in the link you posted do not have the information a novice like me would need to implement them successfully. Most of them are written for people much more advanced. Without it telling me where exactly to put the code, point to it, what I can (and should) change and remove elsewhere because of it... I am at a loss. I don't know the basics, and have tried hard to understand them, but it is not like electrical circuits, physics and other things that I can understand naturally and with ease.
    I will look into it further in a few days, meanwhile I have to attend to my real work that doesn't even pay the bills completely: guitar building and repair, now that comes easy and naturally to me!

  • How do I link to an anchor point  within a web page from within a PDF

    Hello,
    Can someone tell me how to link to an anchor point on a webpage from within a PDF?
    I created a page in Word and when i add my url with the # to reference the anchor eg. www.google.com/web#test1 and test the link it all works fine. I then create a PDF of this same page however the PDF seems to strip out the URL and looks to reference a file #test1.
    Any suggestions, ideas?
    Thanks

    see this post near the top . . . if you're using framesets you will scroll to the bottom of the page to see what they posted there.
    http://forums.adobe.com/message/628872#628872

  • How to create links in a Muse project to an anchor point with a button created in Adobe Edge?

    Hi everyone , I have created an animated button with Edge Animate, but when I import in my Adobe Muse project I can't link it to anchor points in Muse.
    What is the code?
    Thanks.

    Hi,
    Could you please take a look to this thread and try the suggestion. See if that helps
    How to scroll down to an anchor ?
    Do let me know if you have any question.

  • How do you see a clip's anchor point?

    When working in the effect controls panel, I would like to move a clip/title's anchor point.  However, it doesn't do me much good if I can't see where that anchor point is.  In After Effects, there is a dot in the center of the image that indicates the anchor point.  Is there a way to make that show up in Premiere Pro CC?  Otherwise, I'm just stuck moving the coordinates with no visual frame of reference.

    In the effects control panel. click on the Motion effect to select it - then you should see the wireframe overlay appear, with the anchor point in the program monitor.
    MtD

Maybe you are looking for

  • My Ipod touch wont let me download apps?

    I recently changed my apple ID to a new email and I changed passwords. Although I changed my apple ID on my iCloud, my Apple ID account, and my Itunes Account, my ipod still displayed my old apple ID and wont accept my new password when I try to down

  • How do I recover a selected magnetic lassoed image?

         I brought an image into Photoshop Elements 8.  I used the magnetic lasso to define the portion of the image that was of interest for further work.  I arrived at a really good border on the irregular object.  I clicked Select and, under that, I c

  • Account assignment category F not showing in PR & PO for stock material.

    Dear All, I have created one breakdown maintenance order in that i have planned one stock (L) material, for this reservation is created. Then i have run mrp by using tcode md03 for that material.......pr is generated. Now when i am going to convert t

  • How to define new classpath of libraries while making jar files with ant

    I am useing eclipse and ant and trying to make a jar file. I have used some external jar files. I have managed to add external jar files to my jar. But Still I have a problem. In my project all libraries in lib folder. But when I put them into jar fi

  • How comples return types and parameters are mapped

    Hi all! I want to know how complex return types and parameters in a java interface gets mapped to wsdl? for example how would the wsdl for the following interface shall look like: interface ComplexReturns{    java.util.Date getLuckyDate(java.util.Dat