Moving where script shows up on page

i am new.
i have a fadeshow script that fades in and out a bunch of
pictures, but i cannot figure out how to get it to do this
somewhere else on the page besides top left corner. cannot see the
resultant script in the design view, so cannot move it from there,
and not sure how to do it in the code view.
thanks for any help, and if it is in the code view that i
must do something, please be very specific, as i dont know exactly
what i am doing yet. thanks

Whatever page element contains the script is where the effect
will display.
On your page below, there are no page elements other than the
page itself,
which is why the effect displays in the upper, left-hand
corner. If you
want it to display elsewhere, you will have to construct a
page container
that places it there, like a table or some other element.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"rockfiend" <[email protected]> wrote in
message
news:[email protected]...
> here it is, no tables or anything in the page, as I
wasnt able to get the
> script to go into it successfully.
> any help much appreciated, thanks
>
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN"
> "
http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
> <title>Untitled Document</title>
>
> <script type="text/javascript">
> /***********************************************
> * Ultimate Fade-In Slideshow (v1.5): © Dynamic
Drive
> (
http://www.dynamicdrive.com)
> * This notice MUST stay intact for legal use
> * Visit
http://www.dynamicdrive.com/
for this script and 100s more.
> ***********************************************/
>
> var fadeimages=new Array()
> //SET IMAGE PATHS. Extend or contract array as needed
> fadeimages[0]=["snapshots/1.jpg", "", ""] //plain image
syntax
> fadeimages[1]=["snapshots/2.jpg", "", ""] //image with
link syntax
> fadeimages[2]=["snapshots/3.jpg", "", ""] //image with
link and target
> syntax
> fadeimages[3]=["snapshots/4.jpg", "", ""]
> fadeimages[4]=["snapshots/5.jpg", "", ""]
>
> var fadebgcolor="white"
>
> ////NO need to edit beyond here/////////////
>
> var fadearray=new Array() //array to cache fadeshow
instances
> var fadeclear=new Array() //array to cache corresponding
clearinterval
> pointers
>
> var dom=(document.getElementById) //modern dom browsers
> var iebrowser=document.all
>
> function fadeshow(theimages, fadewidth, fadeheight,
borderwidth, delay,
> pause,
> displayorder){
> this.pausecheck=pause
> this.mouseovercheck=0
> this.delay=delay
> this.degree=10 //initial opacity degree (10%)
> this.curimageindex=0
> this.nextimageindex=1
> fadearray[fadearray.length]=this
> this.slideshowid=fadearray.length-1
> this.canvasbase="canvas"+this.slideshowid
> this.curcanvas=this.canvasbase+"_0"
> if (typeof displayorder!="undefined")
> theimages.sort(function() {return 0.5 - Math.random();})
//thanks to Mike
> (aka
> Mwinter) :)
> this.theimages=theimages
> this.imageborder=parseInt(borderwidth)
> this.postimages=new Array() //preload images
> for (p=0;p<theimages.length;p++){
> this.postimages[p]=new Image()
> this.postimages[p].src=theimages[p][0]
> }
>
> var fadewidth=fadewidth+this.imageborder*2
> var fadeheight=fadeheight+this.imageborder*2
>
> if (iebrowser&&dom||dom) //if IE5+ or modern
browsers (ie: Firefox)
> document.write('<div id="master'+this.slideshowid+'"
>
style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:
> hidden;"><div id="'+this.canvasbase+'_0"
>
style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;lef
>
t:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);-moz-opacity:10;-
>
khtml-opacity:10;background-color:'+fadebgcolor+'"></div><div
> id="'+this.canvasbase+'_1"
>
style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;lef
>
t:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);-moz-opacity:10;b
>
ackground-color:'+fadebgcolor+'"></div></div>')
> else
> document.write('<div><img
name="defaultslide'+this.slideshowid+'"
> src="'+this.postimages[0].src+'"></div>')
>
> if (iebrowser&&dom||dom) //if IE5+ or modern
browsers such as Firefox
> this.startit()
> else{
> this.curimageindex++
>
setInterval("fadearray["+this.slideshowid+"].rotateimage()",
this.delay)
> }
> }
>
> function fadepic(obj){
> if (obj.degree<100){
> obj.degree+=10
> if
(obj.tempobj.filters&&obj.tempobj.filters[0]){
> if (typeof obj.tempobj.filters[0].opacity=="number")
//if IE6+
> obj.tempobj.filters[0].opacity=obj.degree
> else //else if IE5.5-
> obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
> }
> else if (obj.tempobj.style.MozOpacity)
> obj.tempobj.style.MozOpacity=obj.degree/101
> else if (obj.tempobj.style.KhtmlOpacity)
> obj.tempobj.style.KhtmlOpacity=obj.degree/100
> }
> else{
> clearInterval(fadeclear[obj.slideshowid])
> obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")?
obj.canvasbase+"_0" :
> obj.canvasbase+"_1"
> obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] :
> document.getElementById(obj.nextcanvas)
> obj.populateslide(obj.tempobj, obj.nextimageindex)
>
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)?
> obj.nextimageindex+1 : 0
>
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()",
obj.delay)
> }
> }
>
> fadeshow.prototype.populateslide=function(picobj,
picindex){
> var slideHTML=""
> if (this.theimages[picindex][1]!="") //if associated
link exists for image
> slideHTML='<a href="'+this.theimages[picindex][1]+'"
> target="'+this.theimages[picindex][2]+'">'
> slideHTML+='<img
src="'+this.postimages[picindex].src+'"
> border="'+this.imageborder+'px">'
> if (this.theimages[picindex][1]!="") //if associated
link exists for image
> slideHTML+='</a>'
> picobj.innerHTML=slideHTML
> }
>
>
> fadeshow.prototype.rotateimage=function(){
> if (this.pausecheck==1) //if pause onMouseover enabled,
cache object
> var cacheobj=this
> if (this.mouseovercheck==1)
> setTimeout(function(){cacheobj.rotateimage()}, 100)
> else if (iebrowser&&dom||dom){
> this.resetit()
> var crossobj=this.tempobj=iebrowser?
iebrowser[this.curcanvas] :
> document.getElementById(this.curcanvas)
> crossobj.style.zIndex++
>
>
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"]
> )",50)
> this.curcanvas=(this.curcanvas==this.canvasbase+"_0")?
> this.canvasbase+"_1" :
> this.canvasbase+"_0"
> }
> else{
> var
ns4imgobj=document.images['defaultslide'+this.slideshowid]
> ns4imgobj.src=this.postimages[this.curimageindex].src
> }
>
this.curimageindex=(this.curimageindex<this.postimages.length-1)?
> this.curimageindex+1 : 0
> }
>
> fadeshow.prototype.resetit=function(){
> this.degree=10
> var crossobj=iebrowser? iebrowser[this.curcanvas] :
> document.getElementById(this.curcanvas)
> if (crossobj.filters&&crossobj.filters[0]){
> if (typeof crossobj.filters[0].opacity=="number") //if
IE6+
> crossobj.filters(0).opacity=this.degree
> else //else if IE5.5-
> crossobj.style.filter="alpha(opacity="+this.degree+")"
> }
> else if (crossobj.style.MozOpacity)
> crossobj.style.MozOpacity=this.degree/101
> else if (crossobj.style.KhtmlOpacity)
> crossobj.style.KhtmlOpacity=obj.degree/100
> }
>
>
> fadeshow.prototype.startit=function(){
> var crossobj=iebrowser? iebrowser[this.curcanvas] :
> document.getElementById(this.curcanvas)
> this.populateslide(crossobj, this.curimageindex)
> if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE
ONMOUSEOVER
> var cacheobj=this
> var crossobjcontainer=iebrowser?
iebrowser["master"+this.slideshowid] :
> document.getElementById("master"+this.slideshowid)
>
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
>
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
> }
> this.rotateimage()
> }
>
> </script>
>
>
> </head>
>
> <body>
> <script type="text/javascript">
> //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width,
slideshow_height,
> borderwidth, delay, pause (0=no, 1=yes),
optionalRandomOrder)
> new fadeshow(fadeimages, 658, 636, 0, 3000, 0)
>
> </script>
>
> </body>
> </html>
>

Similar Messages

  • In Safari on my iMac where parts a foreign site are showing on web pages I bring up.

    I have a problem with Safari on my iMac where parts of a foreign site are showing on web pages I bring up. I also run Firefox on the same computer with no such problem. Two malware programs have not found any problem that is relevant to or resolves the issue. Failing any other course that may fix this I am wondering if it is possible to replace Safari. Is there any way to do this? I have recently installed Yosemite, but I doubt that has any relevance. 

    Please understand, I am no geek. I am not wanting to change my default browser. My question may have been a little vague but what I wanted to know was whether (failing everything else) it was possible to delete Safari altogether and then reinstall a new one (Safari) somehow. I would think that may well get rid of the problem when it isn't a factor at all when I switch to using Firefox (which is also installed on my Mac).  As for the AdBlock, I'd prefer to avoid that if possible.

  • Spry tabbed panels, all content showing on one page, please help?

    Hi there,
    I'm developing a website for my friend and i'm using DW CS5 spry tabbed panels. Everything looks great in DW but when i load the page to the server all of the content shows as one page and i can't navigate through tabs.http://dndperspective.co.cc/
    I'll give you the whole code, I am fairly experienced in html but have never used spry before, so it may be a silly mistake. Any Suggestions?
    Here is the code:
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>DND Perspective</title>
    <script src="file:///C:/Users/work/Desktop/Sites/SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <link href="file:///C:/Users/work/Desktop/Sites/SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
    background-color: #2B3856;
    .style1 {
    color: #FFFFFF;
    .style4 {
    color: #FFFFFF;
    font-size: 36px;
    font-style: italic;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin-left: 250px;
    .style5 {color: #CCCCCC}
    .style11 {
    font-size: 18pt;
    font-style: italic;
    a:link {
    color: #FFFF00;
    a:visited {
    color: #000000;
    a:hover {
    color: #000033;
    -->
    </style></head>
    <body>
    <div align="center">
      <p align="left" class="style4">DND  </p>
    </div>
    <p align="left">
    <img style="border:6px inset #545565; margin-left: 150px; margin-bottom: 50px;" src="newbanner.jpg" width="701" height="244" />  </p>
    <p align="center">
    <p align="center">
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup" >
        <li class="TabbedPanelsTab" tabindex="0"><img src="images/homebar.jpg" width="125" height="50" /> </li>
        <li class="TabbedPanelsTab" tabindex="0"><img src="images/aboutbar.jpg" width="125" height="50" /></li>
        <li class="style11 TabbedPanelsTab" tabindex="0"><em><img src="images/servicesbar.jpg" width="125" height="50" /></em></li>
        <li class="TabbedPanelsTab style11" tabindex="0"><img src="images/gallerybar.jpg" width="125" height="50" /></li>
        <li class="TabbedPanelsTab style11" tabindex="0"><img src="images/pricingbar.jpg" width="125" height="50" /></li>
        <li class="TabbedPanelsTab style11" tabindex="0"><img src="images/contactbar.jpg" width="125" height="50" /></li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div class="TabbedPanelsContent style1">
          <div align="center">
            <p class="style11">Welcome to DND </p>
            <p>We are so glad you took the time to visit our site during your busy planning schedule. We have tried to make this site as user friendly as possible so you can get back to planning your big day. We provide straight foward and dependable services so you've got nothing to worry about.</p>
            <p>We are located in Rhode Island, but service Massachusetts and Connecticut as well. </p>
            <p>Please visit our services page to discover all photography sessions we have available such as:</p>
            <p>Wedding Photography</p>
            <p> Engament Photos</p>
            <p>Senior Portraits </p>
            <p>Anniversary</p>
            <p>&amp; More!!!</p>
            <p> </p>
          </div>
        </div>
        <div class="TabbedPanelsContent">
          <p class="style1"><strong><u>S.W</u></strong> -<em> Owner and Photographer</em>. For more information about her please click <a href="Untitled-11.pdf">here</a>!
        </div>
        <div class="TabbedPanelsContent">Under Construction...</div>
        <div class="TabbedPanelsContent">Under Construction....</div>
        <div class="TabbedPanelsContent style1">
    <p>We hear at DND  understand that packages and pricing may not provide the precise accomadations to fit you unique and carefully planned big day. We are very open and happy to discuss with you an individual catered package or plan that fits your style and most of all your budget. Whether you need us for just an hour or a full day we want to make your day as special as possible. We have services available starting at just $200.00. Below you will find our most popular packages, printing prices &amp;
    packages, custom videos, thank you cards and albums.</p>
               <hr width="50%" align="left" />
          <p><strong>Package 1 - $500.00</strong></p>
          <p>3 Hours; 1 location - Incl. DVD with unlimited high resolution shots and free basic retouching and enhancing; webgallery with or without password protection; Special Effects on 5 photos; and 1 8&quot;x10&quot; fine art high quality print. *</p>
          <p><strong>Package 2 - $575.00</strong></p>
          <p>3 Hours; 2 locations - Incl. DVD with unlimited high resolution shots and free basic retouching and enhancing; webgallery with or without password protection; Special Effects on 5 photos; and 1 8&quot;x10&quot; fine art high quality print. *</p>
          <p><strong>Package 3 - $700.00</strong></p>
          <p>4 Hours; 3 locations - Incl. DVD with unlimited high resolution shots and free basic retouching and enhancing; webgallery with or without password protection; Special Effects on 5 photos; and 1 8&quot;x10&quot; fine art high quality print. *</p>
          <p>*Each additional hour or location available for $100.00. Locations beyond 20 miles will require additional fees. Additional DVD priced at $25.00 each.</p>
               <hr width="50%" align="left" />
          <p><strong>Prints</strong>: (Fine Art High Quality)**</p>
          <p>Individual prices: 8&quot;x10&quot; = $12.99; 10&quot;x13&quot; = $19.99; 2 - 5&quot;x7&quot; = $12.99; 4 - 4&quot;x6&quot; = $11.99</p>
          <p>(Custom sizes available - Custom framing available)</p>
          <p><strong>Package 1:</strong></p>
          <p>3 - 8&quot;x10&quot;; 4 - 5&quot;x7&quot;; 4 - 4&quot;x6&quot; = $50.00</p>
          <p><strong>Package 2:</strong></p>
          <p>5 - 8&quot;x10&quot;; 6 - 5&quot;x7&quot;; 6 - 4&quot;x6&quot; = $90.00</p>
          <p><strong>Package 3:</strong></p>
          <p>8 - 8&quot;x10&quot;; 4 - 5&quot;x7&quot;; 4 - 4&quot;x6&quot; = $125.00</p>
          <p><strong>Package 4:</strong> (Basic Prints)</p>
          <p>Any 100 photos printed 4&quot;x6&quot; = $100.00</p>
               <hr width="50%" align="left" />
          <p><strong>Custom video:</strong>**</p>
          <p>Any 100 photos put to royalty-free music = $50.00</p>
              <hr width="50%" align="left" />
          <p><strong>Custom thank you cards for your guests:</strong>**</p>
          <p>300 cards - 4&quot;x6&quot; = $350.00</p>
          <p>100 cards - 4&quot;x6&quot; = $150.00</p>
         <hr width="50%" align="left" />
          <p><strong>Custom Albums Available: </strong>(prices vary - special order)</p>
          <p>Bride &amp; Groom Albums</p>
          <p>Parent Albums</p>
               <hr width="50%" align="left" />
          <p>**Please be aware that your DVD will be available within a week; Web Gallery within 5-7 business days; Prints, Cards or Video within 2-6 weeks. Thank you!</p>
        </div>
        <div class="TabbedPanelsContent style5">
          <p> Contact DND Perspective:</p>
          <p>The best way to reach us is via email .</p>
          <p>You can alternately reach us anytime at ...!</p>
        </div>
        <div class="TabbedPanelsContent">
          <div align="center">
            <p><span class="style1">About Info</span></p>
            <p> </p>
          </div>
        </div>
      </div>
    </div>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    //-->
      </script>
    </body>
    </html>

    You called it: your links to the SpryAssets are linking to your hard drive, not to the files within the folder on the server.
    Correct these links:
    <script src="file:///C:/Users/work/Desktop/Sites/SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <link href="file:///C:/Users/work/Desktop/Sites/SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    And you should be good to go.
    Beth
    ps. If you run into more difficulties with the Spry Widgets, take your questions to the Dreamweaver Spry Forum http://forums.adobe.com/community/labs/spry, where they will get quicker attention.
    B

  • HT1338 hi, my firefox and safari are both having difficulty loading certain parts of web pages. previous to this my firefox would freeze and state that a script was not responding. i would stop the script and reload the page and everything would be fine.

    hi, my firefox and safari are both having difficulty loading certain parts of web pages. previous to this my firefox would freeze and state that a script was not responding. i would stop the script and reload the page and everything would be fine. now though the pages just load very very slowly or load leaving out certain pictures and video content. i've tried clearing my cache's and cookies, resetting my browser etc, but it seems like its a system issue as both safari and firefox are having issues. i've run Avast to screen for malware and it came up empty. any suggestions?

    10.4.8's been a pain for Networking... not sure of all the reasons though, or whether all the complaints might not be MS working around Bugs/Non-compliance, but at this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, boot holding down CMD+s, then when the prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    Fixes a lot of problems, and besides, if your Mac ever gets to the point it won't Boot... this is a life saver!
    After you run that... let's see where we are.
    BTW, several ISPs seem to have trouble with their DNS Servers lately, might try these insead...
    208.67.222.222
    208.67.220.220

  • Documents from Mac added to iCloud do not show up in Pages on iPhone 4S

    Synopsis: Dcouments added to iCloud through Safari on Mac do not show up in Pages on iPhone 4S. New documents created in Pages on iPhone do not show up in iCloud. I expect the doucments to appear on my iPhone soon after uploading them from my Mac to iCloud through Safari, and to appear in iCloud soon after switching to the document listing in Pages and leaving the app. Several hours passed by without transfer happening, and I have waited a day and reconnected to Wi-Fi to wait several more hours. Still nothing shows up either in Pages on iPhone, or in iCloud in Safari on Mac. They are listed with their sizes and extensions (.pages or .pages-tef) in the iPhone Settings > iCloud > Storage & Backup > Manage Storage > Pages, though they don't seem selectable from there.
    Software versions and Settings:
    Mac
    Mac OS X 10.7.2 (Lion)
    Safari 5.1.1
    Pages 4.1
    System Preferences > iCloud: signed in; everything selected, except Photo Stream (no iPhoto).
    Everything seems to work, except Find My Mac is flakey.
    iPhone 4S
    iOS 5.0
    Pages 1.5 (417) [no other iWork apps]
    Documents:
    the defualt "Getting Started";
    a test document with default name "Blank" and content with the word "Testing", shown with upwards arrow in upper right corner; tried renaming to "Just testing", no transfer resulted.
    Plus button + offers: Create Document; copy from iTunes, iDisk, WebDAV; no iCloud (probably because it's supose to be auto);
    Settings > Pages:
    Use iCloud: ON
    Restore: OFF; I have tried this, it automatically turns itself off after restarting Pages. No obvious changes result in Pages.
    Settings > Wi-Fi: ON, connected to a network; tried several networks around town, as well as at home with a Time Capsule router.
    Settings > iCloud:
    everything ON, except Photo Stream;
    Documents & Data:
    Documents & Data: ON
    Use Cellular: ON; also tried OFF initially.
    Storage & Backup:
    Manage Storage > Pages:
    three documents in iCloud are listed, one of which I had created before iCloud on iPhone 3GS, and deleted from iPhone 4S after documents added to iCloud from Mac weren't showing up as expected;
    their sizes are given;
    suffixes are .pages for the two created on Mac, and .pages-tef for the one created on iPhone 3GS (before iCloud);
    iCloud Backup: ON; successfully backs up everyday;
    Email works, contacts are synced, calendar works, and everything seems fine except access to documents.
    Approaches:
    Software updates
    Updated all software, no further updates available. Please confirm with aforementioned version numbers.
    Add and Remove Documents
    Used Safari to add two documents to iCloud with its menu for Pages of iCloud's iWork section, one at a time. Documents were originally created in Pages on Mac, and continuously edited since then. Explicitly saved documents (Save a Version on Lion) before uploading. Documents appeared listed in web page without problem.
    Have tried deleting a document on iPhone that was originally created with Pages on iPhone 3GS prior iOS 5 as a way to jog the listing on iCloud. Listing on iCloud in Safari on Mac continues to show document deleted from iPhone. [Before deleting document, I had updated iPhone 3GS to iOS 5 and signed into iCloud a couple days before getting iPhone 4S, then immediately used the restore from iCloud feature for the iPhone 4S in the Apple retail store, updated all apps on Mac and iPhone, then deleted the document in Pages on iPhone.]
    On iCloud in Safari on Mac: deleted the two documents uploaded from Mac; added the same documents again; edited documents on Mac, then uploaded and chose "Replace documents"; removed documents again; added them again. Never showed up in Pages on iPhone, even after waiting a day.
    Have used iTunes to add the same documents to Pages on iPhone. Successfully opened documents in Pages on iPhone through plus button + > Copy from iTunes. Deleted documents from Pages's document listing, though they remain in iTunes section.
    Removed documents of same name, though older copies, from Pages in iTunes for the iPhone.
    Created a new document with Pages on iPhone, simply added one word "Testing" and then switched to document listing. New document has name "Blank" and an arrow in the upper right corner indicating it will upload next time an internet connection is established. That hasn't happened regardless of being connected to Wi-Fi and cellular for several hours. Next day, reconnected to internet with both Wi-Fi and cellular, the new dcoument "Blank" still is not in iCloud when I visit the site in Safari on Mac, and still has the arrow in the upper right corner in Pages on iPhone.
    iPhone 4S Connected to Internet
    Connected to Wi-Fi several hours each day, and cellular all day except from about 10pm to 7am when I switch it to Airplane mode. Always connected to Wi-Fi and cellular when attempting to access the documents in Pages on iPhone.
    Restart iPhone and Pages
    Have double-pressed Home button on iPhone to reveal along the bottom of screen a list of apps currently open, touched and held an icon to reveal the close badge on all icons, and selected the close badge on Pages, waited a few seconds, then started Pages again.
    Have held On/Off button until "slide to power off" appears, then powered off iPhone, waited a few seconds, then held button again to start. Have done this with Pages either open or closed, per previous note. Still no change in document listing for Pages: test document still has not gone to iCloud, documents in iCloud still have not shown.
    I think the only thing I haven't done is a complete restore.
    Question: Can anybody point out what I might have missed or haven't tried that would get the documents from iCloud to Pages and vice versa?
    I'm not looking forward to several hours of restoring, but if I must…
    TIA

    Okay, I'm not sure what finally jogged it. It seems to be finally working.
    After downloading any documents I could from iCloud to my Mac, I deleted all the documents from iCloud. I also deleted all documents from Pages on iPhone, except the original "Getting Started" document.
    I duplicated the "Getting Started" document (Pages on iPhone) and edited it by moving the butterfly to the left on the same page, then switched to the Documents view. It had the arrow in the upper right corner of "Getting Started Copy", but no progress bar and nothing showed up in iCloud.
    Then, I think I went to Settings > Pages > Use iCloud: NO. Went back to Pages and got a dialog in the Documents listing:
         You are not using iCloud
    What would you like to do with the
         documents currently on this
                        iPhone?
    Keep on My iPhone
    Delete from My iPhone
    Continue Using iCloud
    I tried keeping them, then going back and turning it back on in Pages's settings, then going back to Pages. Finally something different happened: a progress bar on the "Getting Started copy" document. It never seem to finish, and would disappear if the phone went to sleep. I tried the whole sequenece again with same result, and nothing on iCloud.
    I then tried Settings > iCloud > Documents & Data: OFF, and agreed to "Turn Off Documents" and have all documents stored in iCloud deleted, because as far as I could tell there weren't any documents in iCloud at this point anyways. I went back to Pages and the "Getting Started copy" suddenly disappeared.
    So, I went back to Settings > iCloud > Documents & Data: ON, and did the same for Settings > Pages > Use iCloud: ON. Oddly, Pages now tried to download "Getting Started copy" even though it really shouldn't have existed anymore. I tried iCloud in Safari on Mac and saw there now was a document by that name, but when selected it said "Updating…" on it. I deleted it in iCloud, and it disappeared (I think, or I deleted it) in Pages on iPhone.
    I gave up and waited a bit, maybe an hour or two.
    I made sure all the settings were how they needed to be, noticed no documents in iCloud, and only the original "Getting Started" document in Pages on iPhone. I duplicated that document, and that's when it seemed to actually work. First, the arrow in its upper right corner appeared briefly, then a progress bar appeared on it instead, then the progress bar actually moved and completed. (I think. Some indicator happened. Everything is kind of fuzzy at this point while I'm writing this and juggling a couple other technical tasks.) Then I checked iCloud in Safari on Mac and the document was there. Wow.
    So, I immediately tried uploading to iCloud from my Mac the two documents I had been trying, one at a time. Each time the document succeeded in iCloud, it suddenly appeared in Pages on iPhone. In fact, the second document began to appear in the documents listing in Pages on iPhone just before the progress bar in iCloud completed.
    I tried opening each one in Pages on iPhone, and iCloud immediately updated each one with a preview and as downloadable. I downloaded them to the Mac and they opened fine. [Admittedly, the Pages version from iCloud of the "Getting Started copy" with the moved butterfly was a little different in Pages on Mac: it had the butterfly on the previous page underneath everything; the PDF version of that document had everything correct.]
    Anyways, the document listing between iCloud and Pages on iPhone is working now.
    I thinking it might have helped to clear out all the documents in iCloud and deleting all documents in Pages for iPhone. However, be sure to at least email copies from Pages on iPhone first if you don't have any backups. I think it might also have helped to turn off Settings > iCloud > Documents & Data: OFF, so it'll send that signal to delete the documents in iCloud, even if there's already nothing there. I don't know for sure, but that's probably the way to start from scratch. Oh, and maybe wait an hour or two after that before doing anything again, then turn Documents & Data: ON, and Pages > Use iCloud: ON, and then start by creating a new document in Pages on iPhone.
    I'm just glad I didn't have to do a Restore from iTunes. And now that it's working, it's so instant between Pages on iPhone and iCloud! This is seeming like it will definitely be great, now that it's working.

  • How can I show an active page on menu?

    I am working in DW CS3 and using a Spry menu and want to be able to show the active page on the menu. Have looked at previous discussions but am still very confused. New to DW and not very code editing proficient. Please help.

    Place the following in the HEAD section of your document
    <script src="SpryAssets/SpryDOMUtils.js" type="text/javascript"></script>
    <script type="text/javascript" language="javascript">
    function InitPage(){
    Spry.$$('#MenuBar1 li').forEach(function(node){
         var a=node.getElementsByTagName("a")[0]; // finds all a elements inside the li, but we only want the first so [0]
         if(a.href == window.location){
              Spry.Utils.addClassName(node,"activeMenuItem");
    Spry.Utils.addLoadListener(InitPage);
    </script>
    <style type="text/css">
    .activeMenuItem {
         background: #F00;
         font-weight: bold;
    </style>
    and make sure that SpryDOMUtils.js is in your SpryAssets folder.
    Ben

  • Where has the File Sharing page gone to in iTunes 11?

    Where has the File Sharing page gone to in iTunes 11?

    My iPad is a first generation so it on IOS 5 and I am running iTunes 11. Shows up for me as I said above. Maybe somebody else knows whay it doesn't work for you.
    Probably try all the usual suspects Power on and Off for ipad 9 Not Standby, hold down Power button until a red slider appears. The when off keep it pressed for 2-3 secs and iPad will reboot.
    Also switch of iTunes and Computer and the switch back on.
    Never know it might help certainly wouldn't hurt

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • How do I add PHP Script to an XHTML Page?

    I am tring to add a PHP script to my XTHML page in Dream
    Weaver. The tag starts <?php and ends ?>. I have uploaded the
    script on to another site which I use for testing and it shows the
    whole code not the intended presentation. I did read that the
    server should support PHP scripts..I have been trying to research
    it online however I have had no luck.
    I have also tried publishing it to a local folder and it
    still didn't work. I am really lost!!!
    I am very new to building websites in dreamweaver so laymens
    terms would be great!!
    Thanks so much!
    John

    1. are you adding the php script in design view or code view?
    2. is the file name a .php?
    3. does your server support php?
    Dan Mode
    --> Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    <--check this
    *Must Read*
    http://www.smithmediafusion.com/blog
    "jbravo1224" <[email protected]> wrote in
    message
    news:f32956$fj7$[email protected]..
    >I am tring to add a PHP script to my XTHML page in Dream
    Weaver. The tag
    >starts
    > <?php and ends ?>. I have uploaded the script on
    to another site which I
    > use
    > for testing and it shows the whole code not the intended
    presentation. I
    > did
    > read that the server should support PHP scripts..I have
    been trying to
    > research
    > it online however I have had no luck.
    >
    > I have also tried publishing it to a local folder and it
    still didn't
    > work. I
    > am really lost!!!
    >
    > I am very new to building websites in dreamweaver so
    laymens terms would
    > be
    > great!!
    >
    > Thanks so much!
    >
    > John
    >

  • Administration-Configure link to show as startup page Error

    Hi Experts,
    When i try to click on "Administration" under porfolio management in the portal, i get this error "Configure link to show as startup page".
    I did the following steps:
    1. Go to transaction SPRO->SAP xRPM-> Global Customizing->Process and service settings-> define navigation.
    2. Double click on link group definition
    3. Select link group 300 (Administration.)
    4. Double Click on Map Link Groups to Object Context and enter your default portfolio..... fill out the following fields : Portfolio Type (The type of your default portfolio), Object type (RPH), role (RPM_PORT).......
    5. Restart the J2ee Engine after the above steps.
    Still I get the same error.
    Please tell me where i went wrong/ to solve this issue. Is there any way to solve this?
    Thanks and Regards,
    Maniraj.
    Edited by: maniraj87 on Jan 12, 2011 5:39 AM

    Hi Mani,
             Please check whether you have mention the 'Link Group' as well in Map link Groups to Object Context.
    Regards,
    Amit

  • In two page view preview shows the first page on its own

    In two page view preview shows the first page on its own. I have recently downloaded an ebook which has image based tutorials and the pages are in such a way that pages 3 and 4 should be seen next to each other. Preview seems to want to have pages 1 on its own therefore making this rather difficult. Any help on resolving this issue would be appreciated.

    Try selecting the first page, and then from the "Edit" menu select "insert blank page". This should put a blank page at the beginning of the document, shifting all pages down one and putting them in the order you want for your display.

  • Report from SQL Query -Excel format only show the first page

    Hi,
    I have some Reports from SQL Query. In the display options, I choose Excel as default format. The Excel documents only show the first page. If I choose HTML as default format, it shows every rows.
    Please advise on how to have a complete Excel document as HTML format does.
    Thanks a lot.
    Lina Han

    I beleive when you export Oracle reports to Excel it is the Data that is transferred along with Column Names.
    You cannot export the variables defined on the report.
    Hence you will not be able to export the Footer to excel. (Still looking into it will let you know if i find anything interesting)
    Regards,
    Bhushan Salgar

  • Hi, I've just installed mavericks but my HPc4180 will not print and is showing a 'blank' page in previews can anyone help me?

    Hi, I've just installed mavericks but my HPc4180 will not print and is showing a 'blank' page in previews can anyone help me?

    A few suggestions for you:
    Try:
    uninstall all HP utilities or other HP apps on your Mac
    see if there is updated software on the HP website
    go to System Preferences > Printers & Scanners > Print
    control-click on your printer in the column on the left
    select "Reset Printing System..." and "reset" in the dialog that follows
    Do a factory reset on your printer
    go back to printers & scanners and it should see your printer and download a driver for it from Apple

  • Love App Tabs but have several that just show a white page as icon how do I get them to appear as a site logo?

    I love the new App Tabs but have several that when pinned just show a white page as the icon, so you have to mouse over them to figure out which one is which. Example is bankdirect.co.nz. Is there a way of getting the site logo to show up so you can see what is what at a glance but still have the nifty space saving size of the App Tab? Thanks!

    SergZak
    Thanks for that. I have to say that there were a couple of screens that appeared to show both the iPhone and iPad and it was the iPad that was showing the icon!
    It is not life threatening, I just thought that something had not installed as it should have.
    Demo
    Thanks for your comment.
    Cheers
    altv

  • How to show  an error Page in Weblogic when the server is down

    Hi ,
    I heard that every container has the facility to show an error page when the server is down and (when the request has arrived at that time ).
    Please tell me how to configure this in BEA weblogic ??
    Thanks .

    Hi,
    From my understanding weblogic dose not provide the thing which you are asking for, reason is given below.
    - An application is deployed only on managed server one (MS-1)
    - Now if the request comes to the server (MS-1) when it was running and then for some reason MS-1 goes down then weblogic server would be able to send any response back to the client as its down.
    - Hence nothing can be done as the request object is been lost when the server goes down or even cant redirect to an error page as for doing that too the server has to be up and running.
    However there are other way round which can help you overcome this issue as shown below
    - Use Clusters with few managed servers in it which gives you high availability and load-balancing.
    - Use any web servers like Apache in front of weblogic servers.
    Using the above things you can also use customized HTTP Error Responses with error-page element in web.xml and create your own error pages which can be re-directed for the web server side also. For more information go through the below links
    Topic: Customizing HTTP Error Responses
    http://download.oracle.com/docs/cd/E13222_01/wls/docs92/webapp/configurejsp.html#wp157884
    Topic: error-page
    http://download.oracle.com/docs/cd/E13222_01/wls/docs81/webapp/web_xml.html#1017571
    Topic: ErrorPage
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/plugins/plugin_params.html#wp1155425
    Hope above information helps you.
    Regards,
    Ravish

Maybe you are looking for

  • How to get a report in pdf format.

    Hi Experts, Could any one let me know that, how to get the report in PDF format. Once a report is generated it should be displayed in pdf format or downloaded in pdf format. Thanks in Advance, Regards, Irfan Hussain

  • I recently updated Firefox and something called Fantistic Games has taken over my homepage and I can't get rid of it.

    I used to get a field of 9 options to open when I opened a new page by clicking on the + button on the right side of the Search tab. After I updated Firefox a couple of days ago, my homepage had been taken over by something called "Fantasti Games". I

  • Security Error while invoking Webservice

    Hi, We have a BPEL flow that invokes a ADF BC webservice that is running in a different Weblogic instance. Getting the following error on invoke activity that call the ADF BC service. <remoteFault>   <part  name="summary">   <summary>InvalidSecurity

  • Business role in IC

    Hi experts, I have a confusion on understanding Business Roles in interation center. scenario: call center set up is there with 100 CSR's, where everyones role is same. here my confusion is Do we have to create different business role for each CSR or

  • Q about( for) and (if) statements

    Hi I am not sure whether i am right or not, but i found that (for) or (if) statement cannot be written outside constructors and when i try to write it (illegal epxpression start ) message appears. my Q is it must be written inside constructor ? Actua