How to make an embedded blog scroll.

Hi,
In my site, Deleteproductions.com/film.html, I have included an wordpress blog for my project (so i can easily update it whenever i want en where i want). But on mac the page automatically scrolls, which is great, but on ipad it does not. Can you set scoll on for mobile devises too with some sort of code?
This is the code i juse for embedding the blog:
<frame  name="Wordpress" data=http://deleteproductionsfilm.wordpress.com/ width="100%" height="1000" scrolling="yes" >
<embed src=http://deleteproductionsfilm.wordpress.com/ width="100%" height="1000"> </embed>
<object>
As you can see, i already set scrolling to yes.
is there any other thing i can do?
I appreciate every kind of help.

Replace everything you have now with an iframe.
<iframe  id="WP" name="WP" src="http://deleteproductionsfilm.wordpress.com/" width="100%" height="1000" scrolling="auto" > </iframe>
Nancy O.

Similar Messages

  • Palm tx: how to make five way button scroll down a page at a time

    i knew how to do this once, but have forgotten:  on my palm tx, how do i make the five way button scroll down a page at a time?
    thank you,
    kj
    Post relates to: Palm TX

    Yes, you'll simply need to open up your docs-to-go program and once you've accessed the program, select the document your needing to view. After selecting the document using the stylus tap in the upper left corner of the screen and you'll see a drop down menu populate (from the File option), Next select preferences and lastly, place a check mark next to the page scroll on Five-Way device.
    Post relates to: Treo 800w (Sprint)

  • How To make a custom ScrollPane/scroller Help.

    I want to make a MC that holds various Data such as textfields images maybe a video, ect just basic content, so i want to put that into a MC and be able to scroll it. But i cant figure out how to do this, no tutorials on the internet. And i dont want to use the UIScroller and Scrollpane components as they are highly unnatractive.. It is for a touch enabled device so maybe a gesture could be used? But im sure a Mouse Event would work, Can some one help me out or point me in the right direction?
    Thanks in advance.

    Your best bet for finding tutorials is Google.  Here's one result for a search using "AS3 movieclip scroller" that shows the basics.
    http://tutorials.flashmymind.com/2009/02/movieclip-scroller/

  • How to make a dynamic textbox scroll down/up for devices like iPhone/Android/iPad etc?

    Problem: When doing anAPP to test it out in my smartphone devices. I tested it on my computer and it works fine. But in devices, im not able to scroll the textbox down/up because my devices dont have a scroll wheel to scroll up/down.
    Assuming that im looking for something like this:
    When I use my fingers to touch on the textbox and slide it upwards, the textbox will scroll down..
    Thank you for your help.

    Hi, thanks for your reply.
    By using touchevents, how do I...
    1) know that if my fingers is sliding up or down?
    2) scroll the textbox up/down?
    import flash.events.TouchEvent;
    Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
    this.addEventListener(TouchEvent.TOUCH_BEGIN, touchBeginHandler);
    this.addEventListener(TouchEvent.TOUCH_END, touchEndHandler);
    function  touchBeginHandler(event:TouchEvent):void
    function  touchEndHandler(event:TouchEvent):void

  • How to make a infinite SMOOTH scrolling background?

    This is what I have done:
    var BGround1:Background=new Background();
    var BGround2:Background= Background();
    stage.addChild(BGround1);
    stage.addChild(BGround2);
    addEventListener(Event.ENTER_FRAME, moveScroll, false, 0, true);
    function moveScroll(e:Event): void
                                  BGround1.x -= scrollSpeed; 
                                   BGround2.x -= scrollSpeed; 
                            if(BGround1.x <= -BGround1.width)
                                BGround1.x =BGround2.x + BGround2.width;
                                  else if(BGround2.x <= -BGround2.width)
                                BGround2.x = BGround1.x + BGround1.width;
    However, If I set scrollSpeed too high, the movement is not smooth. Is there any way to make a smooth animation?
    Thanks in advance.
    PS: I dont know how to put the code into code tag.

    you can increase the framerate or decrease the scrollSpeed.  that's it.
    but you'll achieve better performance by enabling the cacheAsBitmap property of BGround1 and BGround2:
    var BGround1:Background=new Background();
    var BGround2:Background= Background();
    BGround1.cacheAsBitmap=true;
    BGround2.cacheAsBitmap=true;
    stage.addChild(BGround1);
    stage.addChild(BGround2);
    addEventListener(Event.ENTER_FRAME, moveScroll, false, 0, true);
    function moveScroll(e:Event): void
                                  BGround1.x -= scrollSpeed; 
                                   BGround2.x -= scrollSpeed; 
                            if(BGround1.x <= -BGround1.width)
                                BGround1.x =BGround2.x + BGround2.width;
                                  else if(BGround2.x <= -BGround2.width)
                                BGround2.x = BGround1.x + BGround1.width;

  • How do make the mouse wheel scroll in my Flex app/component instead of the browser?

    Let's say I have a DataGrid or Tree or List component which
    has hundreds of rows. When I place my mouse over the component and
    scroll the mouse wheel, I notice that [most of the time] it scrolls
    the component a little, then starts scrolling the browser window. I
    want it to only scroll the component until it reaches the end of
    the rows. Any thoughts?

    I have confronted the same issue.
    Was anybody able to solve it?
    I think mx.contorols.TextArea seems to do well.

  • How to make a movie clip scroll with mouse position

    Hello again.  I asked a question about parallax scrolling and I think it was the wrong question.  I am looking to control a website with similar controls as this example:
    http://www.sectionseven.com/index2.html
    I want to use this but also with both  x and y axis.  Any ideas as to where to find a tutorial as to where to do this?  It should be fairly simple, but I am having trouble.  Any help or code is greatly appreciated.  Thanks!

    Yeah, I figured it out.  simply change 0.04 to -0.04
    addEventListener(Event.ENTER_FRAME,scrollmc1 );
    function scrollmc1(event:Event):void
         if(mc.x < 911  && (mouseX > 369)) {
            mc.x += (mouseX - mc.x) * -0.04;
         if(mc.x > 369  && (mouseX < 911)) {
            mc.x += (mouseX - mc.x) * -0.04
    Here is the actual code I used on my site:
    stage.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
    stage.align = StageAlign.TOP_LEFT;
    function enterFrameHandler(e:Event):void
              if((sliderWorkspace.x < 911 && (mouseX > 1100)) || (sliderWorkspace.x > 369 && (mouseX < 90))) {
                  var newLocation:Number = sliderWorkspace.x + ((mouseX - sliderWorkspace.x) * -0.04);
                        newLocation = Math.min(910, newLocation);
            newLocation = Math.max(370, newLocation);
            sliderWorkspace.x = newLocation;
    Let me know if this works for you

  • I was wondering if there is a tutorial on how to make a blog page in muse?

    I was wondering if there is a tutorial on how to make a blog page in muse? Any help will be appreciated.

    Hi
    You can integrate third party blog in your site or if you are using Business Catalyst , then you can go with BC blog modules on page.
    More Details :
    http://www.musegrid.com/blog/add-business-catalyst-blogs-to-your-adobe-muse-website
    http://www.muse-themes.com/blogs/news/7257782-creating-a-blog-in-adobe-muse-powered-by-nab ble
    Thanks,
    Sanjit

  • How to make JScrollPane scroll faster?

    Hi,
    I have tried to develop on a program to zoom in or zoom out the image�a graph which is plotted using the method draw from Graphics2D. In the program, I am given about 1000 points, which are supposed to be plotted one by one suing the draw method, which later form a graph.
    I have put the JPanel, where the output of the graph is displayed, into a JscrollPane to enable scrolling of large image. However, when I am trying to scroll the image, it happen to me that the scrolling is extremely slow. When I click at the scrolling bar to scroll down the image, it take some time before the image is scrolled down.
    My doubt will be is there any method to make the scrolling on the JscrollPane to become faster?does this involve double buffering?
    Thank you.

    This may not be the answer to your problem, but I thought I would throw it out there. One reason it might scroll slowly is because by default the JScrollPane only moves 1 pixel for every click of the scroll bar. You can adjust this by having your JPanel implement the Scrollable interface.
    Here is a code sample -
    // implement Scrollable interface
    public Dimension getPreferredScrollableViewportSize()
    return getPreferredSize();
    public int getScrollableBlockIncrement( Rectangle r, int orientation, int direction )
    return 10;
    public boolean getScrollableTracksViewportHeight()
    return false;
    public boolean getScrollableTracksViewportWidth()
    return false;
    public int getScrollableUnitIncrement( Rectangle r, int orientation, int direction )
    return 10;
    Whatever number you have your getScrollableUnitIncrement and getScrollableBlockIncrement methods return is how many pixels your component will scroll for each click of the scroll bar.
    Give this a try.

  • How to make Navigation and Topic panes scroll independently?

    Can anyone suggest how to make the default Multiscreen HTML layout navigation and topic panes to scroll independently, to accomidate a long index or TOC? Currently, scrolling toward the end of the index, for example, causes the topic pane to scroll also. Selecting an index entry scrolls the topic to the location of the appropriate content, but also scroll the index, taking the selected entry out of view. I would like independent scrolling of nav pane and topic panes.
    I'm using RoboHelp HTML 10, FrameMaker 11, TCS4.
    Thanks you.

    Your post has been moved to the Multiscreen forum. That does not change the link.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Flash cs3: how to make moving/scrolling photo menu left and right?

    http://media.moma.org/subsites/2008/miro/flashsite/index.html
    - click continue, then relative size link
    How can I do this with lash cs3: how to make moving/scrolling
    photo menu left and right?
    When you move left and right and paintings move. and when you
    click on a painting, you see the the title and it links to another
    page on the site.

    scene_mc start at x = -550... x wide is 2164 px
    now I have this and its working...
    navL_mc.addEventListener(MouseEvent.MOUSE_OVER, navL_Over);
    navL_mc.addEventListener(MouseEvent.MOUSE_OUT, navL_Out);
    function navL_Over(e:MouseEvent){
              if(scena_mc.x == 0){
                                  scena_mc.x == 0;
              else if(scena_mc.x <= -10){
                                  scena_mc.x += 10;
                                  navL_mc.addEventListener(Event.ENTER_FRAME, runL);
    function runL(e:Event):void{
              if(scena_mc.x == 0){
                                  scena_mc.x == 0;
              else if(scena_mc.x <= -10){
                                  scena_mc.x += 10;
    function navL_Out(e:MouseEvent){
              navL_mc.removeEventListener(Event.ENTER_FRAME, runL);
    navR_mc.addEventListener(MouseEvent.MOUSE_OVER, navR_Over);
    navR_mc.addEventListener(MouseEvent.MOUSE_OUT, navR_Out);
    function navR_Over(e:MouseEvent){
              if(scena_mc.x == -1164){
                                  scena_mc.x == -1164;
              else if(scena_mc.x >= -1154){
                                  scena_mc.x -= 10;
                                  navR_mc.addEventListener(Event.ENTER_FRAME, runR);
    function runR(e:Event):void{
              if(scena_mc.x == -1164){
                                  scena_mc.x == -1164;
              else if(scena_mc.x >= -1154){
                                  scena_mc.x -= 10;
    function navR_Out(e:MouseEvent){
              navR_mc.removeEventListener(Event.ENTER_FRAME, runR);

  • How to make Visitor Tracking in embedded Tomcat.

    Hi, Please help me.
    I want to know how to make visitor tracking in embedded Tomcat. If you know, how to catch all the incoming clients to Tomcat, please tell me. I don't know how to catch them.

    enable logging on the server

  • How to make Adobe Players work on my ACER 3985,+Windows 8 and AdobePlayer embedded ; no way to make

    How to make on my new ACER 3985+ Windows 8 with AdobePlayer embedded , Adobe Player working ; no way to view videoattachments ,although recent version of Adobe Player seems to be installed ...

    Can you give us a specific URL that you're having problems with?  I'd also recommend taking a minute and reviewing the content in this FAQ:
    How do I install Flash Player on Windows 8?
    Thanks,
    Chris

  • How to Make Parallax Scrolling Linger Longer in Position?

    Hi,
    I have downloaded the sample paralax file from this tutorial (http://tv.adobe.com/watch/muse-feature-tour/adobe-muse-parallax-scrolling-may-2013/), and I'd like to ask how to make the formed words, once in position, to linger for a certain time of scroll in their position, and only then move away.
    Thanks for your help, and please ask if further clerification is needed.

    Currently Muse doesn't support what you are requesting.
    At the moment Muse allows you to set one key position and define actions before that key position and after that key position.
    What you're requesting is :
    01. before key position - do action (move)
    02. for duration of scroll - do action (don't move)
    03. after key position - do action (move)
    If you would like to see this enhancement. Please request it in the Ideas section.

  • How to make page scroll automatically on click, plz help ASAP

    Hi!
    I need to know how to make a page scroll up or down automatically when i click on an image.
    Too see example click here: http://www.morphix.si/
    I am very new to Dreamweaver and coding, so please be gentle. But I need help A.S.A.P if it's possible! =)
    Thanks!

    Hit F1 (help) and search for Named Anchors.
    The example page is one, very tall page with several named anchors on it.  When you click a button it takes you to the designated anchor on the page.
    <a href="#top">Link to Top</a>
    <a href="#bottom">Link to Bottom</a>
    The gliding effect is done with jQuery.
    http://www.position-absolute.com/articles/better-html-anchor-a-jquery-script-to-slide-the- scrollbar/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

Maybe you are looking for

  • A Problem with the JavaScript Code can anybody help me

    Hi every body, I prepared a html page using the following code, which i grab it from some web site, and used it in my web project, but the code that is not working and it is showing some javascript error, can anybody correct it for me please, the cod

  • Flash 8 vs. Flash 7

    Hello, I just completed a nice little project making use of the FLVPlayback features of Flash 8. I imported video files and encoded them to .flv files and stream them from a server. Works great. However, I just learned that some of my customers run L

  • Expense report without receipts and justification go through audit

    Hello, can anyone advise on how to force all expense report to go through audit process? I have tested that expense item without receipts and justification will be auto-approved by the system. Thanks.

  • Dashed Line Setting Not Working

    I have a graph (I've ungrouped it, it is no longer a graph as far as AI is concerned) that I'm trying to get a dashed line:  it doesn't work.  I'm uploading screenshots to show I'm not completly crazy.

  • How to define pool size of a data source

    In OC4J,How do I configure the behaviour of connection pools such as maxStatements, initialPoolSize,minPoolSize,maxPoolSize,maxIdleTime,propertyCycle which is defined in the JDBC specification?