E71 gallery issue

I recently downloaded a program called iSMS (which is amazing. revolutionizes the phone.)  However, it comes with a bunch of different skins... which each use image files.  The problem is my gallery is now FILLED with all these image files.  Is there any way I can make it so these files ARE NOT displayed in my image gallery? It's so annoying!

Hi brixtonbanner,
only a few of us seem to be affected by this bug so Nokia obviously sees no point in fixing this. Either wait for a new firmware, which may or may not come or return the phone.
Greetings
--Videoschabe

Similar Messages

  • E71 Gallery Images and Video Clips

    Hi there,
    last night I discovered that I am now no longer able to view any images or video clips in Gallery. I had taken some photos over the past few days in various conditions to test the camera out. I went back in to review, which I was able to do only days earlier and now it just sort of hangs and no images are displayed. I can exit out, but it wont show even the preinstalled images. The same thing happens with video clips.
    Has anyone else came across thie problem and/or have a solution?

    Nokia phones are unable to play MP4 files, or any other video file with the exception of Real Video files.  The video file MUST be packaged thru Real Player.  1 of 100 MP4 files will play, but typically the phone CANNOT even see that the MP4 file is on your memory card.  
    The issue is a problem with the firmware on the phone,  You can view the MP4 files on all phones and all computers, but not Nokia.  Nokia is history, yet they keep building phones that look new and have new features, but they only work with antiquated files formats.  Furthermore
    the features that actually work are typically crippled by patent infringment issues.
    The Nokia suite will not work with windows.  Typically Nokia suite will open and freeze.  Again a software issue totally ignored by Nokia, because selling a new phone is not contigent on making all the features work.  They proudly list the features on the package, but for the most part the features you paid for are not going to work correctly, and most often not at all.
    To get a video file to to work on the E71, your best bet is to take the loss, throw the phone in the garbage and by a different brand.  If you insist on getting videos to play on the E71 disaster, make sure to run your files thru Real Player and convert to a '.RV' file.  The format is ancient, but they will work most of the time.  The file size is massive compared to todays standards as well, so buy a massive memory card, but remember the E71 has a tiny limit of 8 gig.  You can then use file manager on your computer to transfer the files to your memory card on the phone.  DO NOT try to use nokia software with Windows to transfer files, simply put, you will waste hours, and in the long run it will work about 10% of the time at best.
    Nokia has been on the brink of bankruptsy for a while, and it will not be long now.

  • Image gallery issue

    If a mod could delete my other post as I am quite far on from that and now having different issues.  Thanks.
    I am really stuck.  I will try my best to explain things clearly.  I am making an image gallery and I got the code from this gallery here.
    http://www.flashmo.com/preview/flashmo_122_3d_curve_gallery
    I made some changes to make it how I wanted it, nothing drastic though.  So now I have a nice gallery.
    Explaining what I am trying to do will better help explain things.  I am creating a modelling agency website.  The gallery I created above will display an individual image of every model in the agency (which it does).  Now when one of the model images is clicked, I then need it to load another image gallery which contains the complete set of images for that model, plus some of their information etc. 
    The way I am approaching it at the moment is to create an individual image gallery for every model in its own fla file.  If say the first model is clicked (image 1) it will load the corresponding swf (1.swf).  I am not sure how good it is loading an swf into what I already have, but couldnt think of another way.  So now I have a seperate image gallery just to test things out, and I need to load it into my original image gallery.
    So, I will show the code for the first gallery (which displays the individual images of each model).  The important methods are p_click (which hides the first gallery and loads the external swf), and on_pic_loaded (which displays the external swf). 
    I hope you understand what I am attempting, as I dont know if I have explained it right as my brain is going dead! (although I am liking the challenge).
    import org.papervision3d.scenes.*;
    import org.papervision3d.cameras.*;
    import org.papervision3d.objects.*;
    import org.papervision3d.materials.*;
    import caurina.transitions.*;
    import flash.net.URLRequest;
    import flash.display.Loader;
    import flash.events.Event;
    import flash.events.ProgressEvent;
    var container_x:Number = stage.stageWidth * 0.5;
    var container_y:Number = stage.stageHeight * 0.5 + 160;
    var container:Sprite = new Sprite();
    container.x = container_x;
    container.y = container_y;
    addChild(container);
    var scene:Scene3D = new MovieScene3D(container);
    var cam:Camera3D = new Camera3D();
    cam.zoom = 6;
    tn_url_target.visible = false;
    tn_title.text = "";
    tn_desc.text = "";
    tn_url.text = "";
    loading_info.text = "";
    url_button.visible = false;
    var no_of_ring:Number = 1;
    var angle:Number = 0;
    var p_dict:Dictionary = new Dictionary();
    var pa:Array = new Array();
    var filename_list = new Array();
    var url_list = new Array();
    var url_target_list:Array = new Array();
    var title_list = new Array();
    var description_list = new Array();
    var folder:String = "photos/thumbs/";
    var i:Number;
    var total:Number;
    var flashmo_xml:XML = new XML();
    var pic_loader:Loader = new Loader();
    var mLoader:Loader = new Loader();
    var xml_loader:URLLoader = new URLLoader();
    xml_loader.load(new URLRequest("thumbnail_list_5.xml"));
    xml_loader.addEventListener(Event.COMPLETE, create_thumbnail);
    function create_thumbnail(e:Event):void
        flashmo_xml = XML(e.target.data);
        total = flashmo_xml.thumbnail.length();
        var angle_per:Number = Math.PI * 2 * no_of_ring / total;
        for( i = 0; i < total; i++ )
            filename_list.push( flashmo_xml.thumbnail[i][email protected]() );
            url_list.push( flashmo_xml.thumbnail[i][email protected]() );
            url_target_list.push( flashmo_xml.thumbnail[i][email protected]() );
            title_list.push( flashmo_xml.thumbnail[i][email protected]() );
            description_list.push( flashmo_xml.thumbnail[i][email protected]() );
            var bfm:BitmapFileMaterial = new BitmapFileMaterial(
                folder + flashmo_xml.thumbnail[i][email protected]());
            bfm.oneSide = false;
            bfm.smooth = true;
            var p:Plane = new Plane(bfm, 100, 100, 2, 2);
            scene.addChild(p);
            var p_container:Sprite = p.container;
            p_container.name = "flashmo_" + i;
            p_dict[p_container] = p;
            p_container.buttonMode = true;
            p_container.addEventListener( MouseEvent.ROLL_OVER, p_rollover );
            p_container.addEventListener( MouseEvent.ROLL_OUT, p_rollout );
            p_container.addEventListener( MouseEvent.CLICK, p_click );
            p.rotationY = - (i * angle_per) * (180/Math.PI) + 90;
            p.x = Math.cos(i * angle_per) * 300;
            p.z = Math.sin(i * angle_per) * 300;
            p.y = Math.floor( i / 22 ) * 5;
    function startLoad()
        var mLoader:Loader = new Loader();
        var mRequest:URLRequest = new URLRequest("/subgallery/1.swf");
        mLoader.load(mRequest);
    function p_rollover(me:MouseEvent)
        var sp:Sprite = me.target as Sprite;
        Tweener.addTween( sp, {alpha: 0.5, time: 0.5, transition:"easeOutExpo"} );
    function p_rollout(me:MouseEvent)
        var sp:Sprite = me.target as Sprite;
        Tweener.addTween( sp, {alpha: 1, time: 0.4, transition:"easeInExpo"} );
    function p_click(me:MouseEvent)
        var sp:Sprite = me.target as Sprite;
        var s_no:Number = parseInt(sp.name.slice(8,10));
        var mRequest:URLRequest = new URLRequest("subgallery/1.swf");
        mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, on_pic_loaded);
        mLoader.load(mRequest);
        Tweener.addTween( container, { y: 1200, time: 0.6, transition:"easeInExpo" } );
    function goto_URL(me:MouseEvent)
        navigateToURL(new URLRequest(tn_url.text), tn_url_target.text);
    function on_open(e:Event):void
        loading_info.text = "Loading... 0%";
    function on_progress(e:ProgressEvent):void
        var percent:Number = Math.round(e.bytesLoaded / e.bytesTotal * 100);
        loading_info.text = "Loading... " + percent + "%";
    function on_pic_loaded(e:Event):void
        addChild(e.currentTarget.content);
        //addChildAt(mLoader, 1);
        mLoader.x = Math.round(stage.stageWidth - mLoader.width) * 0.5;
        mLoader.y = Math.round(stage.stageHeight - mLoader.height) * 0.5;
        //mLoader.addEventListener(MouseEvent.CLICK, remove_pic);
        Tweener.addTween( mLoader, { alpha: 1, time: 0.8, transition:"easeInExpo" } );
        removeEventListener(Event.ENTER_FRAME, render);
    function remove_pic(e:Event):void
        Tweener.addTween( pic_loader, { alpha: 0, time: 1, onComplete:function() { removeChild(this); } } );
        Tweener.addTween( container, { y: container_y, time: 1, delay: 1, transition:"easeOutExpo"} );
        addEventListener(Event.ENTER_FRAME, render);
        tn_title.text = "";
        tn_desc.text = "";
        tn_url.text = "";
        url_button.visible = false;
    addEventListener(Event.ENTER_FRAME, render);
    function render(e:Event):void
        var distance_x:Number = (stage.mouseX - 400) * 0.0001;
        angle += distance_x;
        cam.x = - Math.cos(angle) * 150;
        cam.z = Math.sin(angle) * 150;
        scene.renderCamera(cam);
    Current issues as the moment is firstly, I dont know if this is the best way to achieve what I want.  Maybe there is a better option someone could tell me about, but you have to remember that each image displayed here will have multiple images to go with it.
    In terms of what I am attempting above, I currently get
    Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: file:///C|/Users/Nick/Desktop/gallery/gallery.xml
        at _1_fla::MainTimeline/frame1()
    I assume its a url error so I changed all urls in both fla's to contain the whole url path.  Didnt seem to work though unless I missed something.
    Any advise on absolutely anything will be so appreciated.
    Many thanks
    Nick

    Sorry about that.  If you can check my history, I normally always thank people who have helped, and I was intending to go back on the last few to sort them out.  Just got my first job so it has been rather hectic and been stressing out to much.  Also, I do things slightly different to other people.  If I receive a correct answer (which I normally do thank), I tend not to actually reply but to thank instead, mainly because if I reply I am pushing unanswered questions further down the list and eventually out of view.  I will go back and sort out the thanks I owe.
    In terms of asking the mods, other forums I visit are normally moderated by the community, so I assumed that someone like yourself might be the moderator.
    I tottally understand what you are saying, and as I say, I am normally on top of this.  Will go back now and sort out the thanks.
    Sorry for the delay.
    Nick

  • IPad Air - photo auto created in gallery issue

    Hi everyone!
    Not sure if anyone found this issue before, the identical photo has been auto created in gallery (iPad Air 7.1.1) many times. I never took the photo myself. it just looks like it came from the internet but I never saved. I wonder if this is a bug and how should i do to solve the issue.  Many thanks in advance !!

    It also takes time for the photos to be transferred out of your iPhone and into Photo stream on Apple's iCloud servers.
    Note that this can't happen if your iPhone is not connected to a WiFi network:
    When you enable My Photo Stream on your devices, all new photos you take or import to those devices will be automatically added to your photo stream.
    iOS devices: New photos you take are automatically uploaded to your photo stream when you leave the Camera app and are connected to Wi-Fi. My Photo Stream does not push photos over cellular connections.
    Macs: Any new photos you import to iPhoto or Aperture begin uploading automatically when you have a Wi-Fi or Ethernet connection. Or you can change your iPhoto or Aperture preferences so that only photos you manually add to My Photo Stream are uploaded.
    PC with iCloud Control Panel 2.0 or later: Open a Windows Explorer window and under Favorites select iCloud Photos if you are using iCloud Control Panel 3.0 (or Photo Stream if you are using 2.0 to 2.1.2). Open My Photo Stream. Click the "Add photos" button. Select the photos to import to My Photo Stream, then click Open.
    from here: http://support.apple.com/kb/ht4106

  • Image Gallery Issue in As3

    Hi,
         I am trying to implement a simple image gallery with alpha transition using as3.  But an issue is occuring with this. After each image alpha transition, the stage becomes blank. The code i have used for image Gallery is following.CAn anybody help me. I am trying this for a week. but still i have a hope for make this working. So please help me.
    import flash.display.Loader;
    import flash.display.*;
    import gs.TweenLite;
    const TIMER_DELAY = 2000;
    var totImages:Number;
    var index:Number = 0;
    var imgArr:Array = new Array();
    var currentContainer:MovieClip = holder0;
    currentContainer.alpha = 0;
    var transTimer:Timer = new Timer(TIMER_DELAY);
    //transTimer.addEventListener(TimerEvent.TIMER, startTransition);
    var imgLoader:Loader = new Loader();
    var myXML:XML = new XML();
    var XML_URL:String = "images.xml";
    var myXMLURL:URLRequest = new URLRequest(XML_URL);
    var myLoader:URLLoader = new URLLoader(myXMLURL);
    myLoader.addEventListener("complete", xmlLoaded);
    function xmlLoaded(event:Event):void{
        myXML = XML(myLoader.data);
        processXML(myXML);
    function processXML(xml){   
        totImages = xml.children().length();
        for(var i=0;i<totImages;i++){
            var tempVar = xml..item[i]..image;
            imgArr.push(tempVar);
        //transTimer.start();
        currentContainer = holder0;
        loadImage();
    function loadImage(){
        var url = imgArr[index];
        //ImgLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressStatus);
        imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeInImg);   
        var fileRequest:URLRequest = new URLRequest(url);
        imgLoader.load(fileRequest);
        currentContainer.addChild(imgLoader);
    function fadeInImg(e:Event){
        TweenLite.to(currentContainer,3,{alpha:1,delay:2,onComplete:switchClip});
    function switchClip(){
        if(index < totImages){
            index++;
        } else {
            index = 0;
        if(currentContainer == holder0){
            currentContainer = holder1;
        } else {
            currentContainer = holder0;
        currentContainer.alpha = 0;
        MovieClip(this.root).swapChildren(holder0, holder1);   
        loadImage();
    Thanks and Regards,
                         Sreelash

    Hi Adrei, I have implemented the thumbnail button also. Its working but the problem is that thumbnail buttons and controls are placing behind the image container. How can i place the thumbnail buttons and control buttons over the image. You can view the result in the following url:
    http://www.creative-showcase.co.uk/BirdStudiosOld/Videos/test/scrllGallAnd.html
    The working swf is with the following url:
    http://www.creative-showcase.co.uk/BirdStudiosOld/Videos/test/scrllGall.html
    The code that i used for creating thumbnail is following
    import flash.display.DisplayObject;
    import flash.display.*;
    import flash.display.Loader;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.TimerEvent;
    import flash.text.*;
    import flash.net.*;
    import flash.utils.Timer;
    import gs.TweenLite;
    import gs.easing.*;
    var xmlURL:String = "http://www.creative-showcase.co.uk/BirdStudiosOld/Videos/test1/images.xml";
    var loadedImages:Array = [];
    var imageURLs:Array = [];
    var thumbArr:Array = [];
    var imageLoader:Loader;
    var prevImage:DisplayObject;
    var currentImage:DisplayObject;
    var thumbContainer:MovieClip;
    var currThumb:MovieClip;
    var prevThumb:MovieClip = null;
    var showTimer:Timer;
    var timerDuration:int = 5000;
    var tweenDuration:int = 2;
    var currentIndex:int = 0;
    var activIndx:Number = 0;
    var slidesHolder:Sprite;
    var prvFlag:Boolean = false;
    var nxtFlag:Boolean = false;
    var twnFlag:Boolean = false;
    var rt_lt_Flag:Boolean = true;
    var myXMLURL:URLRequest = new URLRequest(xmlURL);
    var xmlLoader:URLLoader = new URLLoader(myXMLURL);
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
    xmlLoader.load(myXMLURL);
    var a:int = 90;
    ctrlBox.btnPlay.buttonMode = true;
    ctrlBox.nextImg.buttonMode = true;
    ctrlBox.prevBtn.buttonMode = true;
    ctrlBox.btnPause.buttonMode = true;
    ctrlBox.btnPlay.visible = false;
    ctrlBox.btnPause.addEventListener(MouseEvent.CLICK,stopScroll);
    ctrlBox.btnPlay.addEventListener(MouseEvent.CLICK,startScroll);
    ctrlBox.nextImg.addEventListener(MouseEvent.CLICK,shwNext);
    ctrlBox.prevBtn.addEventListener(MouseEvent.CLICK,shwPrev);
    function xmlLoaded(e:Event):void {
         var a:int = 45;
         e.target.removeEventListener(Event.COMPLETE, xmlLoaded);
         processXML(XML(e.target.data));
    function processXML(xml:XML):void {
         var len:int = xml.children().length();
         var tempVar:String;
         for (var i:int = 0; i < len; i++) {
              tempVar = "http://www.creative-showcase.co.uk/BirdStudiosOld/Videos/test1/" + xml..item[i]..image;
              //trace(tempVar)
              imageURLs.push(tempVar);
         preload();
         createThumbs();
    function createThumbs():void{
        thumbContainer = new MovieClip();
        addChild(thumbContainer);
        for(var i:int=0;i<9;i++){
            var thmbHolder:MovieClip = new MovieClip();
            thumbContainer.addChild(thmbHolder);
            //MovieClip(this.root).swapChildren(currentImage, ctrlBox);
            thmbHolder.buttonMode = true;       
            var thmb:thumbClass = new thumbClass();           
            thmbHolder.addChild(thmb);
            thumbArr.push(thmbHolder);
            thmbHolder.name = i.toString();       
            thmb.imgNum.text = (i+1).toString();       
            thmbHolder.addEventListener(MouseEvent.CLICK,showImage)
            //trace(thmb.imgNum.text)
            thmbHolder.x = i*(thmbHolder.width+5)+5;
        thumbContainer.y = stage.stageHeight - thumbContainer.height;
    function showImage(e:MouseEvent):void{   
        var imgIndx:Number = e.target.parent.parent.name;
        prevThumb = currThumb;
        currThumb = e.target.parent.parent;
        currThumb.buttonMode = false;
        if(activIndx != imgIndx){
            prevThumb.buttonMode = true;
            currentIndex = imgIndx-1;
            shwNext(null);   
            activIndx = imgIndx;
        } else {
            stopScroll(null);
    function preload():void{
         var len:int = imageURLs.length;
         for (var i:int = 0; i < len; i++) {
              imageLoader = new Loader();
              imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onPreloadComplete);
              loadedImages.push(imageLoader);
              imageLoader.load(new URLRequest(imageURLs[i]));
    function onPreloadComplete(e:Event):void {
         e.target.removeEventListener(Event.COMPLETE, onPreloadComplete);
         if (!showTimer && loadedImages[0].content &&   loadedImages[1].content ) startShow();
    function startShow():void{
         currentImage = loadedImages[0];
         currentImage.alpha = 0;
         slidesHolder = new Sprite();
         var slideMask:Sprite = new Sprite();
         var gr:Graphics = slideMask.graphics;
         gr.beginFill(0xff0000);
         gr.drawRect(0, 0, currentImage.width, currentImage.height);
         gr.endFill();
         addChild(slidesHolder);
         addChild(slideMask);
         slidesHolder.x = slideMask.x = 0;
         slidesHolder.y = slideMask.y = 0;
         slidesHolder.mask = slideMask;
         slidesHolder.addChild(currentImage);
         TweenLite.to(currentImage, 10, { alpha: 1 } );
         showTimer = new Timer(timerDuration);
         showTimer.addEventListener(TimerEvent.TIMER, slideTransition);
         showTimer.start();
    function slideTransition(e:TimerEvent):void{
         var nextImage:int;
         if(rt_lt_Flag == true){
             if(nxtFlag == true){
                 showTimer.stop();
                 nxtFlag = false;
             nextImage = currentIndex < loadedImages.length - 1 ? currentIndex + 1 : 0;
             if (loadedImages[nextImage].content) {
                  currentIndex = nextImage;
                  loadedImages[currentIndex].x = slidesHolder.width;
                  slidesHolder.addChildAt(loadedImages[currentIndex], slidesHolder.getChildIndex(currentImage));
                  prevImage = currentImage;
                  currentImage = loadedImages[currentIndex];
                  showCurrent();
         } else {
             if(prvFlag == true){
                 showTimer.stop();
                 prvFlag = false;
             nextImage = currentIndex > 0 ? currentIndex - 1 : loadedImages.length - 1;
             if (loadedImages[nextImage].content) {
                 currentIndex = nextImage;
                 loadedImages[currentIndex].x = -(stage.stageWidth);
                 slidesHolder.addChildAt(loadedImages[currentIndex], slidesHolder.getChildIndex(currentImage));
                 prevImage = currentImage;
                 currentImage = loadedImages[currentIndex];
                 showCurrent();
         activIndx = currentIndex;
         //trace(currentIndex)
    function showCurrent():void{
         // make sure they have proper alphas
         //prevImage.alpha = 1;
         //currentImage.alpha = 0;
         //TweenLite.to(prevImage, tweenDuration, { x: -slidesHolder.width } );
         twnFlag = true;
         if(rt_lt_Flag == true){
             TweenLite.to(currentImage, tweenDuration, { x: 0, onUpdate:onTweenProgress, onComplete: removePrevious } );
         } else {
             TweenLite.to(currentImage, tweenDuration, { x: 0, onUpdate:onTweenProgress, onComplete: removePrevious } );
    function onTweenProgress():void{       
        if(rt_lt_Flag == true){
             prevImage.x = currentImage.x - prevImage.width;   
        } else {
            prevImage.x = currentImage.x + prevImage.width;
    function removePrevious():void {
         if (slidesHolder.contains(prevImage)) slidesHolder.removeChild(prevImage);
         twnFlag = false;
    function stopScroll(e:MouseEvent):void{
        ctrlBox.btnPlay.visible = true;
        ctrlBox.btnPause.visible = false;
        showTimer.stop();
    function startScroll(e:MouseEvent):void{
        rt_lt_Flag = true;
        ctrlBox.btnPlay.visible = false;
        ctrlBox.btnPause.visible = true;
        resetListener(timerDuration=5000,tweenDuration=2)
    function shwNext(e:MouseEvent):void{
        if(twnFlag == false){
            rt_lt_Flag = true;
            stopScroll(null);
            nxtFlag = true;
            resetListener(timerDuration=0,tweenDuration=1)
    function shwPrev(e:MouseEvent):void{
        if(twnFlag == false){
            rt_lt_Flag = false;
            stopScroll(null);
            prvFlag = true;
            resetListener(timerDuration=0,tweenDuration=1)
    function resetListener(timerDuration,tweenDuration){
            showTimer.removeEventListener(TimerEvent.TIMER, slideTransition);
            showTimer = new Timer(timerDuration);
            showTimer.addEventListener(TimerEvent.TIMER, slideTransition);   
            showTimer.start();
    Can you help me on how can i swap the depth of images and control buttons.
    Thanks and regards,
    Sreelash

  • Making a simple gallery - issues with frames

    Hi there,
    Please help!
    I'm at the end of my tether with this one.
    I am a beginner with Dreamweaver and maybe I'm running before I can walk, but I thought what I am trying to make would be fairly simple.  Haha!
    I want to make a basic gallery, ie. you click the arrows or the thumbnail buttons and the next image appears within the page but DOESN'T reload to a whole separate page.
    I managed to do this using a frameset and thumbnails - the images loaded in the main frame fine -  BUT there are 2 issues with this:
    1. The link to the homepage I added in the corner loads WITHIN the frameset, and so the homepage is cut off and the thumbnails are still there.  I want the link to take the user OUT of the frameset and straight to the homepage (a totally different format, with no frames used)  I can't find a way to put this homepage link anywhere outside of the frameset.
    2.  I cant centre the frameset, or have much control over the layout like I do with tables.
    Could this problem be solved using tables? Or any way to solve this simply?
    Thanks.
    PS. I don't have fireworks, and I don't want to use a downloadable gallery as I want control over how it works/looks, also I dont think it would solve issues 1 and 2 anyway.

    kcoulton30 wrote:
    Thanks.
    PS. I don't have fireworks, and I don't want to use a downloadable gallery as I want control over how it works/looks, also I dont think it would solve issues 1 and 2 anyway.
    I don't understand this comment at all.  If you use a downloadable gallery you just edit the skin as you would any other HTML document and make it look like the rest of your site.  And usually support communities for those products are fairly helpful for skinning.  Learning to code something like this with frames for a first project is a little ambitious but it is heading in a direction that I know you are not looking to go.  I have a feeling you like the interactive galleries that pop up and switch from image to image while staying on the same page.
    To answer your questions:
    1.  You need to define the target frame with frames. By default links open within the window they are currently in.  See this example: http://webdesign.about.com/od/frames/f/bl_faq4-2.htm
    2.  Framesets cannot be centered on a page.  They are part of the overall page layout and cannot be positioned.  If you need to position a frame on a particular part of a page you will need to use iframes: http://www.w3schools.com/tags/tag_iframe.asp

  • E71 wlan issue after firware upgrade

    I just upgraded by E71 to the latest software version. The upgrade went without any issues. After the upgrade I realised that t had removed all my contacts - so I had to restore my backup(I restored the SETTINGS as well). I was using a app for my 'WiFi' (for prioritizing my access points) and after the firmware upgrade - I could not see this app at all. The following are my issues now:
    1. I cannot connect to my home wifi(WEP) - it was fine before the upgrade. The first time it says - 'Connection not available' and every subsequent time it irritates by showing 'WLAN already active. Please close the connection and retry'.
    2. I have tried to restore the factory settings and it still does not work.
    3. I have renamed my Access point to the ones that the app was using - still no luck.
    So, what are my options now? Can somebody please help? I never thought a small software upgrade could spoil my whole evening!

    Hello,
    I have just had EXACTLY the same problem.
    I have a Nokia E71 and it was working OK before the upgrade. I just used the latest Nokia Updater and latest nokia pc suite to upgrade to 500.21.009.
    The upgrade performed perfectly, and after the upgrade I restored my backed up data.
    I have the exact symtpoms as psankar. I have factory reset the phone and tried again. Same problem.
    Connection not available, and then connection already active. Small Wireless icon appears at top right of screen, and stays there, but there is no active connection in connection manager.
    The only way to remove the wifi icon and to get the phone to attempt to reconnect is to power off the phone, but then on reconnectig then you get connection not available and then the whole cycle begins again.
    Help appreciated
    TIA
    Alex

  • IE Gallery Issue

    The gallery show up just fine in Foxfire and Google Chrome. However, in IE the images are not in line as they should be see link below.
    http://www.andreazuckerphotography.com/launch/bride.php What could be the issue?
    Any help as to how to correct this will be greatly appreciated.
    Regards,
    Lisa

    Hi Lisa,
    I checked out the URL you sent in both BrowserLab and IE8, screenshots are attached. As you can see the BrowserLab rendering of the page matches what IE8 has rendered, so I can confirm that there is no issue with BrowserLab itself causing the difference.
    I'm sorry I can't help dig into what in the HTML or CSS is causing the problem, but hopefully someone on this forum or perhaps someone in the HTML5 forum ( http://forums.adobe.com/community/dreamweaver/html5 )can help you figure this out.
    Thanks for using BrowserLab and best of luck,
    Mark

  • 808 gallery issues

    On 808 the gallery doesn’t switch to landscape mode and is not possible to mark pictures in the gallery. Maybe someone work on software update to fix those?

    Here we go again...
    I do not know if this issue has been resolved yet, but it's been almost a couple of months now without any update..
    Do not get me wrong, the 808 is a great phone - I've taken ove 1500 photos with it since my purchase in August, however I keep thinking that I should use the opportunity to ask (if I may) for a kind explanation of the following:
    1. If this phone is being presented as one with a superbad camera, why would the new phone exclude the selection of multiple images (yes I know, this question has been asked already)? If you expect me to take lots of photos, why should I be screwed for hours when attempting to delete the photos?
    2. Most of my photos are taken horizontally. When I aim to review them, the gallery is only in the vertical mode - yes, the process is speeded up on the screen, but me having to make an additional movement with my hand in alternation betwen viewing of the images and shooting the photos, takes not only my time.
    3. Multiple image sending by email - the Nokia E7 was wonderfully convenient for that matter - select several photos, choose "send by email" from the drop down menu, and off they go. From this gallery, I can only select one image at the time.
    A phone with a camera of such magnitude must contain a gallery that is more flexible than that.
    Overall I do love it, but having a gallery the functions of which allow me to interact with the photos faster, would make it excellent.

  • Two gallery issues

    If someone uploads a video to your photo gallery it is not present or playable in atv2.
    If you change a photo (delete, or modify) in iphoto you can see that you have made a change by visiting the web; however, you will not be able to see this change in atv2. I have tried restarting atv, deleting and starting the gallery from scratch. What gives.

    Thank you so much, David! You have gone beyond the call of duty. I have
    already checked with them, and they tell me that "thousands" of people are
    using PageGallery and CS6 without issue. However, I find it interesting
    that when I "make pages" from PageGallery (uses PageGallery actions in
    Photoshop), some of the pages look fine while others are jumbled. I think
    I'm going to switch to Fundy's Album Builder which appears to be much more
    current. I've used PageGallery for years and am disappointed that I went
    back and forth with their support for about six weeks without any
    resolution. Their Windows downloads are for XP and Vista--I have Windows 7.
    I was using the XP version successfully with CS5 but had a train wreck when
    I went to CS6. Anyway, thank you, again, for checking it out for me. You
    win "best support person" award!
    Cheers!
    Gretchen
    *Gretchen M Birdwell, CPP
    *Certified Professional Photographer
    Mobile: **205.999.3531
    Website: Gretchen B Photography <http://www.gretchenbphotography.com/>*
    My profiles: image: Facebook
    <http://facebook.com/birmingham.photography> [image:
    Blog RSS]<http://gretchenbphotography.com/category/uncategorized/gretchen-bs-blog/>
    [image:
    YouTube] <http://www.youtube.com/user/GretchenBPhoto> [image:
    Twitter]<http://www.twitter.com/gretchenbphoto

  • Image Gallery issues with Lightbox2 - please help!

    Hello there,
    I am using Lightbox2 image gallery.  The loading.gif and close.gif aren't showing up and I think there's an issue with the path in the lightbox.js file.  The loading and close gifs are located in the Images gallery so I changed the path in the lightbox.js file accordingly - I've gone through this many many times but they are still not showing up.
    Can anyone please help me?
    My website is: www.labellepetraie.com
    Here's where I downloaded the script from: http://www.huddletogether.com/projects/lightbox2/#how
    I have tried all the path combinations mentioned in their forum but to no avail.  What am I doing wrong?
    Thank you for any help you can offer to me.
    Regards!

    Interesting.  I've just looked at your scripts, and it would appear that you have blended two versions of lightbox2 on your page,.  Is that possible?  The lightbox.js file has no function called initLightbox() in it, whereas older versions do.  So, try changing this:
    window.onload = function(){ // use this instead of <body onload …>
         MM_preloadImages('../3websites/home4.jpg','../3web sites/amenities1.jpg','../3websites/inquiry1.jpg','../3websites/rates1.jpg','../ 3websites/photos1.jpg');
            initLightbox();
    to this:
    window.onload = function(){ // use this instead of <body onload …>
         MM_preloadImages('../3websites/home4.jpg','../3web sites/amenities1.jpg','../3websites/inquiry1.jpg','../3websites/rates1.jpg','../ 3websites/photos1.jpg');
            //initLightbox();
    to see if that works.  I think so.  Turns out the initLightbox() function call that we activated by fixing the code before is no longer needed by the lightbox2 script as of v2.04!  I see that it still tells you to put that function call in the body tag, but i think that is wrong (which is very weird to say, can I really be right???).  If you look at the example page online you'll see that he uses this body tag:
    <body>
    and there are no onload's anywhere. 
    Let me know.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Resizing/fading dynamic gallery issues...

    Hey there. I'm kind of in a huge deadline crunch.
    I have a gallery that I built from a tutorial I found
    online--it has an empty mc with a border around it, and when you
    click on a thumbnail an image is loaded into the mc and it fades in
    when it loads in and out.
    Ofcourse it works fine offline, but when I test it online the
    image will load in off-center, if you click the thumbnail again
    (after it has loaded the first time) it loads in the position it
    should be in.
    Here is the code I have on the first frame:
    spacing = 1;
    containerMC._alpha = 0;
    MovieClip.prototype.loadPic = function(pic){
    containerMC._alpha = 0;
    this.loadMovie(pic);
    onEnterFrame = function(){
    var t = containerMC.getBytesTotal(), l =
    containerMC.getBytesLoaded();
    if (t != 0 && Math.round(l/t) == 1){
    var w = containerMC._width + spacing, h = containerMC._height
    + spacing;
    border.resizeMe(w, h);
    delete this.onEnterFrame;
    MovieClip.prototype.resizeMe = function(w, h) {
    var speed = 3;
    this.onEnterFrame = function() {
    this._width += (w-this._width)/speed;
    this._height += (h-this._height)/speed;
    if (Math.abs(this._width-w)<1) {
    this._width = w;
    this._height = h;
    containerMC._x = this._x-this._width/2+spacing/2;
    containerMC._y = this._y-this._height/2+spacing/2;
    containerMC._alpha += 5;
    if (containerMC._alpha>90) {
    containerMC._alpha = 100;
    delete this.onEnterFrame;
    and here is the code that I have on my btns:
    on(release){
    _parent.containerMC.loadPic("pic_001.jpg");
    Any suggestions???
    I really need some quick help on this one.
    Thanks so much in advanced!!!
    hutch.

    I changed some of the code around and have been trying to
    trouble shoot this for a while. Here is the code I have now:
    spacing = 10;
    containerMC._alpha = 0;
    MovieClip.prototype.loadPic = function(pic){
    containerMC._alpha = 0;
    this.loadMovie(pic);
    onEnterFrame = function(){
    var total = Math.round(containerMC.getBytesTotal()/1024);
    var loaded = Math.round(containerMC.getBytesLoaded()/1024);
    if (total != 0 && loaded>=total){
    var w = containerMC._width + spacing;
    var h = containerMC._height + spacing;
    border.resizeMe(w, h);
    delete this.onEnterFrame;
    MovieClip.prototype.resizeMe = function(w, h) {
    var speed = 3;
    this.onEnterFrame = function() {
    this._width += (w-this._width)/speed;
    this._height += (h-this._height)/speed;
    if( Math.abs(this._width-w)<1 &&
    Math.abs(this._height-h)<1){
    this._width = w;
    this._height = h;
    containerMC._x = this._x-this._width/2+spacing/2;
    containerMC._y = this._y-this._height/2+spacing/2;
    containerMC._alpha += 5;
    if (containerMC._alpha>90) {
    containerMC._alpha = 100;
    delete this.onEnterFrame;
    And I'm pretty sure the issue of the image loading messed up
    on the first time is because of the last bit of code for the fade
    in--
    if (containerMC._alpha>90) {
    containerMC._alpha = 100;
    delete this.onEnterFrame;
    but, I'm not exactly sure how to fix it. I took it out and
    just had the images load in with no fade and it seemed to work fine
    with no weird loads on the first clicks----but I would really like
    to incorporate the fade, it just adds that little something that I
    need in this site.
    Any thoughts????
    thanks,
    hutch

  • CS3 flash gallery issue - Safari /Firefox

    Can anyone tell me why after creating my flash gallery in cs3  photoshop why in Fireflox and in Safari it says this at the top of each  page=
    Please upgrade your Flash Player.
    Already have Flash Player? Click here if you have Flash Player 6  installed.
    When I have flash already installed? (have not checked IE yet)
    Also when I click the second one -[Already have...] the flash gallery shows  up fine.
    Should it not go directly into the flash gallery?  It does on other websites.
    thanks

    Hi,
    I am having the same problem... did you have any luck fixing this issue?
    Any help would be awesome.
    Thanks.

  • E71 modem issue

    Hi All,
    I am from Delhi and I am having connection of Airtel .
    Today i updated my PC Suite to version 7.1.30.9 . Now when I connect to Internet using USB modem it connects at a speed of 115 kbps max and say 'Nokia E71 USB Modem (OTA)' connected. Speed is low
    Earlier it was getting connected at 480 kbps on Edge and speed was good.
    Why this is happening?? What is OTA?? Is this issue with current PC Suite update??
    How to solve
    Regards, 
    Knowledge Is Power Share It
    Solved!
    Go to Solution.

    hi there,
    OTA is Over-the-air  connection
    Regarding the connection u might of got the modem settings wrong there
    In windows network connections u have the Nokia USB modem icon notification right click on it select properties in general tab u have an option called Connect using below that u have Configure tab click on it select Maximum speed to 460800 bps and once disconnect the modem and connect it u will get 480.7kbps speed
    To be honest this has nothing to do with the connection speed because it solely depends on the Network operator connection
    Regarding the E icon not appearing on the mobile still i feel its a network issue anyways u can try the above
    cheers.......
    If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

  • E71 text issue...

    Hi,
    I'm having an issue with my Nokia E71 where if I am in the personal mode, and receive a text message, I hear the alert tone, but nothing comes up on the screen (normally there is the little "bubble" at the bottom of the screen that shows how many unread messages are in my inbox). Noting that this only happens when in the personal mode, if I am in business mode, the little bubble thing apears.
    I apologise if this does not make any sense, I'm not exactly the most technical person around, but if anyone could help it would be greatly appreciated!
    Thanks,
    PSG

    Hello Edwiwn
    I think you somehow disabled the "Message Notifier" plug in
    So do the following:
    Go to Settings --> General --> Personalisation --> Standby Mode --> Active standby plug-ins check the "Message notifier " if unchecked
    I hope it works , and let me know
    Phones I bought from 1st till now:
    3210 / 3310 / 3410 / 6310 / 6600 / 6020 / N72 / E51 / X2-00 / 5310 xpress Music / E90 Communicator
    If you like my post or it helped you, Give me Kodo

Maybe you are looking for