PrevFrame not working

There is likely an obvious answer to this question and I'm
sorry I cannot find it on my own and need some help. I am new to
actionscript and have managed to get it all working up to the use
of prevFrame. I have a set of left navigation links that work
appropriately and I have a next button that works appropriately,
but my back button does not work at all. The code is attached. What
am I missing or how can I troubleshoot this?
I am trying to give the user the choice to jump to specific
parts of the file or to move forward and backward frame by frame in
the entire file or within a specific section.
Thank you much.

Just to close this up, I created a new Flash file with all
the same elements and the same AS, and all of it worked. I still
cannot isolate the problem in the original file. It was the first
time I created such a file and maybe when naming instances or
working with the othe elements that I'm not completely familiar
with, I inadvertently did something to make the AS for the bottom
navigation Previous (or Back) button not work. But, it works in my
newly created file! And I got extra practice!

Similar Messages

  • PrevFrame() buttons in a swf file inserted in html not working in Firefox

    Hi!
    I have a very weird problem.
    I have created a photo gallery using AS3 in Flash CS5. I have used prevFrame() and nextFrame() actions for "previous photo" and "next photo" buttons as well as for "previous thumbnails" and "next thumbnails" buttons.
    All the buttons work fine when i run the swf files as well as when i run the swf files in Firefox 8.0 and IE9. However, once I insert this swf file into my html file using Dreamweaver CS5->Insert->Media->swf, the "previous" buttons dont work in Firefox 8.0! the previous image button works sometimes whereas the previous thumbnails button does not work at all!  They work fine in IE9. The next buttons also work fine in every browser. Heres my code:
    stop();
    thumbprev_btn.visible=false;
    next_btn.addEventListener(MouseEvent.CLICK, nextimage);
    prev_btn.addEventListener(MouseEvent.CLICK, previmage);
    thumbprev_btn.addEventListener(MouseEvent.CLICK, prevthumbs);
    thumbnext_btn.addEventListener(MouseEvent.CLICK, nextthumbs);
    function nextimage(event:MouseEvent):void
    if(mc_content.currentFrame==mc_content.totalFrames)
    mc_content.gotoAndStop(1);
    else
    mc_content.nextFrame();
    function previmage(event:MouseEvent):void
    if(mc_content.currentFrame==1)
    mc_content.gotoAndStop(mc_content.totalFrames);
    else
    mc_content.prevFrame();
    function nextthumbs(event:MouseEvent):void
    thumbprev_btn.visible=true;
    nextFrame();
    if(currentFrame==3)
    thumbnext_btn.visible=false;
    function prevthumbs(event:MouseEvent):void
    thumbnext_btn.visible=true;
    prevFrame();
    if(currentFrame==1)
    thumbprev_btn.visible=false;
    Please help.

    Thankyou Ned. The html file published by flash worked perfectly however the problem persisted even if i used this html file's code. But strangely, the problem disappeared after a few days! Now the original dreamweaver code is also working fine.

  • Button not working...and I don't even know why

    I have this on frame 1:
    //FRAME NUMBER//
    slidenumber_txt.text = currentFrame + " de " + totalFrames;Object(this).
    //BUTTONVISBILITY//
    a_btn.visible = true;
    b_btn.visible = true;
    c_btn.visible = true;
    d_btn.visible = false;
    e_btn.visible = false;
    f_btn.visible = true;
    g_btn.visible = true;
    i_btn.visible = true;
    j_btn.visible = true;
    k_btn.visible = false;
    l_btn.visible = false;
    h_btn1a.visible = true;
    h_btn1a.setStyle("icon", iconh);
    h_btn1a.addEventListener(MouseEvent.ROLL_OVER, fh_btnro);
    function fh_btnro(e:MouseEvent):void{button_txt.text = "Interacción";}
    h_btn1a.addEventListener(MouseEvent.ROLL_OUT, fbtnrout);
    h_btn1a.addEventListener(MouseEvent.CLICK, fbtnclickh1a);
    function fbtnclickh1a(e:MouseEvent):void{
        var loadera = new Loader();
        addChild(loadera);
        loadera.load(new URLRequest("lesson1/interactions/interaction1a.swf"));
    function fbtnclicki(e:MouseEvent):void{
        var loadera = new Loader();
        addChild(loadera);
        loadera.load(new URLRequest("lesson1/documents/document1a.swf"));
    function fbtnclickf(e:MouseEvent):void{
    var loadera = new Loader();
        addChild(loadera);
        loadera.load(new URLRequest("lesson1/sounds/audioplayer1a.swf"));
    function fbtnclickj(e:MouseEvent):void{
        var loadera = new Loader();
        addChild(loadera);
        loadera.load(new URLRequest("lesson1/videos/video1a.swf"));
    function fbtnclickk(e:MouseEvent):void{
        var loadera = new Loader();
        addChild(loadera);
        loadera.load(new URLRequest("lesson1/tests/test1a.swf"));
    And this on frame 2:
    slidenumber_txt.text = currentFrame + " de " + totalFrames;
    a_btn.visible = true;
    b_btn.visible = true;
    c_btn.visible = true;
    d_btn.visible = true;
    e_btn.visible = true;
    f_btn.visible = true;
    g_btn.visible = true;
    i_btn.visible = true;
    j_btn.visible = false;
    k_btn.visible = false;
    l_btn.visible = false;
    h_btn1b.visible = true;
    h_btn1b.setStyle("icon", iconh);
    h_btn1b.addEventListener(MouseEvent.ROLL_OVER, fh_btnro1b);
    function fh_btnro1b(e:MouseEvent):void{button_txt.text = "Interacción";}
    h_btn1b.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    Object(this).h_btn1b.addEventListener(MouseEvent.CLICK, fbtnclickh1b);
    function fbtnclickh1b(e:MouseEvent):void{
        var loadera = new Loader();
        addChild(loadera);
        loadera.load(new URLRequest("lesson1/interactions/interaction1b.swf"));
    I also have this on another layer:
    import flash.events.MouseEvent;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    stop();
    //STAGE//
    stage.displayState=StageDisplayState.FULL_SCREEN;
    //CUSTOM MENU//
    var custom_menu:ContextMenu = new ContextMenu();
    custom_menu.hideBuiltInItems();
    var option1 = new ContextMenuItem("© Copyright 2012 Jeje Designs All rights reserved");
    var option2 = new ContextMenuItem("+1 787.272.5059 | [email protected]");
    var option3 = new ContextMenuItem("Project Title: Presentation System 1.0 Build 1 Release 1 | 01032012");
    var option4 = new ContextMenuItem("Devigner: Edwin Merced | [email protected]");
    var option5 = new ContextMenuItem("Security Access");
    option5.enabled = false;
    option5.separatorBefore = true;
    custom_menu.customItems.push(option1, option2, option3, option4, option5);
    contextMenu = custom_menu;
    //NAVIGATION//
    a_btn.setStyle("icon", icona);
    b_btn.setStyle("icon", iconb);
    c_btn.setStyle("icon", iconc);
    d_btn.setStyle("icon", icond);
    e_btn.setStyle("icon", icone);
    f_btn.setStyle("icon", iconf);
    g_btn.setStyle("icon", icong);
    i_btn.setStyle("icon", iconi);
    j_btn.setStyle("icon", iconj);
    k_btn.setStyle("icon", iconk);
    l_btn.setStyle("icon", iconl);
    a_btn.addEventListener(MouseEvent.ROLL_OVER, fa_btnro, false, 0, true);
    b_btn.addEventListener(MouseEvent.ROLL_OVER, fb_btnro, false, 0, true);
    c_btn.addEventListener(MouseEvent.ROLL_OVER, fc_btnro, false, 0, true);
    d_btn.addEventListener(MouseEvent.ROLL_OVER, fd_btnro, false, 0, true);
    e_btn.addEventListener(MouseEvent.ROLL_OVER, fe_btnro, false, 0, true);
    f_btn.addEventListener(MouseEvent.ROLL_OVER, ff_btnro, false, 0, true);
    g_btn.addEventListener(MouseEvent.ROLL_OVER, fg_btnro, false, 0, true);
    i_btn.addEventListener(MouseEvent.ROLL_OVER, fi_btnro, false, 0, true);
    j_btn.addEventListener(MouseEvent.ROLL_OVER, fj_btnro, false, 0, true);
    k_btn.addEventListener(MouseEvent.ROLL_OVER, fk_btnro, false, 0, true);
    l_btn.addEventListener(MouseEvent.ROLL_OVER, fl_btnro, false, 0, true);
    a_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    b_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    c_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    d_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    e_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    f_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    g_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    i_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    j_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    k_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    l_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
    a_btn.addEventListener(MouseEvent.CLICK, fbtnclicka, false, 0, true);
    b_btn.addEventListener(MouseEvent.CLICK, fbtnclickb, false, 0, true);
    c_btn.addEventListener(MouseEvent.CLICK, fbtnclickc, false, 0, true);
    d_btn.addEventListener(MouseEvent.CLICK, fbtnclickd, false, 0, true);
    e_btn.addEventListener(MouseEvent.CLICK, fbtnclicke, false, 0, true);
    f_btn.addEventListener(MouseEvent.CLICK, fbtnclickf, false, 0, true);
    g_btn.addEventListener(MouseEvent.CLICK, fbtnclickg, false, 0, true);
    i_btn.addEventListener(MouseEvent.CLICK, fbtnclicki, false, 0, true);
    j_btn.addEventListener(MouseEvent.CLICK, fbtnclickj, false, 0, true);
    k_btn.addEventListener(MouseEvent.CLICK, fbtnclickk, false, 0, true);
    l_btn.addEventListener(MouseEvent.CLICK, fbtnclickl, false, 0, true);
    function fa_btnro(e:MouseEvent):void{button_txt.text = "Salida";}
    function fb_btnro(e:MouseEvent):void{button_txt.text = "Final";}
    function fc_btnro(e:MouseEvent):void{button_txt.text = "Siguiente";}
    function fd_btnro(e:MouseEvent):void{button_txt.text = "Anterior";}
    function fe_btnro(e:MouseEvent):void{button_txt.text = "Inicio";}
    function ff_btnro(e:MouseEvent):void{button_txt.text = "Audio";}
    function fg_btnro(e:MouseEvent):void{button_txt.text = "Glosario";}
    function fi_btnro(e:MouseEvent):void{button_txt.text = "Lectura";}
    function fj_btnro(e:MouseEvent):void{button_txt.text = "Video";}
    function fk_btnro(e:MouseEvent):void{button_txt.text = "Prueba";}
    function fl_btnro(e:MouseEvent):void{button_txt.text = "Button L";}
    function fbtnrout(e:MouseEvent):void{button_txt.text = " ";}
    function fbtnclicka(e:MouseEvent):void{var mc:lessonexit_mc=new lessonexit_mc();
    mc.x=479;
    mc.y=290;
    addChild(mc);}
    function fbtnclickb(e:MouseEvent):void{gotoAndStop("lastframe");}
    function fbtnclickc(e:MouseEvent):void{nextFrame();}
    function fbtnclickd(e:MouseEvent):void{prevFrame();}
    function fbtnclicke(e:MouseEvent):void{gotoAndStop("firstframe");}
    /*function fbtnclickf(e:MouseEvent):void{var mc:audioplayer_mc=new audioplayer_mc();
    mc.x=751;
    mc.y=141;
    addChild(mc);;}*/
    function fbtnclickg(e:MouseEvent):void{
        var loadera = new Loader();
        addChild(loadera);
        loadera.load(new URLRequest("glossary/glossary.swf"));
    //function fbtnclickh(e:MouseEvent):void{}
    /*function fbtnclicki(e:MouseEvent):void{button_txt.text = "I";}*/
    /*function fbtnclickj(e:MouseEvent):void{button_txt.text = "J";}*/
    /*function fbtnclickk(e:MouseEvent):void{button_txt.text = "K";}*/
    function fbtnclickl(e:MouseEvent):void{button_txt.text = "L";}
    Button h_btn1b does not work....I wonder why?

    Do you get any error messages? 
    Try putting traces in the h_btn_1b function to see if it is working.
    If h_btn_1b is in a frame adjacent to h_btn_1a and they are the same symbol, it is possible that b has been converted to a.

  • Button within a movie clip not working

    Hiya,
    I have a movie clip within my swf website that is basically
    an icon that you roll over to produce the menu. The movie clip has
    coding inside it to produce the rollover effect. This is as
    follows:
    stop();
    this.onEnterFrame = function(){
    if(rewind == true){
    prevFrame();
    this.onRollOver = function(){
    rewind = false;
    play();
    this.onRollOut = function(){
    rewind = true;
    Whilst this coding works fine for this movie clip, for some
    reason the buttons within the movie clip that appear as you
    rollover them will not work when pressed. I am trying to get them
    to navigate the main timeline, i.e. coding as follows:
    on (release) {
    _parent.gotoAndPlay("home")
    _parent should be correct, I've tried it without and with
    _parent._parent however still it has no effect. From what I can see
    everything should be working fine.
    Is there some reason why buttons will not work within this
    sort of roll over effect movie clip?
    Thanks for your help.

    you can't assign mouse handlers to a parent movieclip and
    expect a child movieclip to respond to mouse events: the parent
    will intercept those events.
    to remedy, either assign all your mouse handlers on the child
    generation movieclips or use a hitTest() for one of the
    generations.

  • Not work tablet UI on Prestigio 5080 PRO tablet

    I read that browser.ui.layout.tablet = "1" can fix this problem. But it not works. I can work only in pnone interface that is not good for my 8'' tablet.

    Would it be possible for you to share the problematic pdf and OS information  with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • Adobe Bridge CS5 in windows 7 not working?

    Adobe Bridge CS5 in windows 7 not working. I was using bridge perfectly for last 2 years. It stops working since 3 days. I tried to install updates. Showing some error to install.
    Tried to install creative cloud..again some error. Error code : 82
    Could you please advice how I can fix my adobe bridge.

    https://www.youtube.com/watch?v=xDYpTOoV81Q&feature=youtu.be
    please check this video I uploaded..this is what happens when I click adobe bridge.. just blinks and go off. bridge not working on task manager

  • ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Partner application logoff not working

    We have a partner application registered with sso with custom login screen. The login works fine. We use the following code to logoff the partner application in logoff.jsp
    response.setHeader("Osso-Return-Url", "http://my.oracle.com" );
    response.sendError(470, "Oracle SSO");
    session.invalidate();
    but the logoff is not working properly. It is not invalidating the session and the logout http request is not going from the application server to the sso server.
    Are there any additional configurations for SSO logoff.Any help is appreciated.
    Thanks

    Hi
    The WF should also trigger if i add the Partner function in UI.If i change any Attribute the WF triggers but i dont want to change the attribute when i add the partner function.
    If i have only one event for WF that is Partner Change the WF will not trigger it for the 1st time when i save the UI. But next i come to the same saved doc and add a partner function then the Wf triggers.
    So this means that Partner change is active.
    the issue here is i need to trigger the WF on , the 1st time i save the UI, for which i wil be using Attribute Change and next time when i come back to saved doc the and add only the partner function and no changes are made to attributes the WF should again trigger.
    Thanks
    Tarmeem

  • IPhone 4 Voice Memos not working/saving

    Hi there,
    I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to view all voice memos is not working so I can't play them from my iPhone and nothing new is saving to my iTunes. Please help!

    I've always had the "Include Voice Memos" option selected. I think that only pertains to syncing voice memos from iTunes to the iPhone after it has been copied to iTunes. It has to be the new OS/iTunes not communicating that new memos have been recorded. For some reason they won't sync when I want them to, and then a few syncs later they magically appear.
    By the way, I'm VERY comfortable with the iTunes and iPhone systems. I've been using iTunes for 5 years, and I've been recording class lectures with the iPhone voice memo app (and another app) for a couple years. It's not an error of not seeing that the memos were added; they don't exist in my library or music folders.
    JUST OUT OF CURIOSITY, POST WHICH FIRMWARE YOU ARE RUNNING EXACTLY!!!
    I'm on an iPhone 4, running firmware 4.0.1

  • Installed Premiere Pro CS4 but video display does not work?

    I just got my copy of CS$. After installing Premiere I found two things that seem very wrong:
    1) video display does not work, not even the little playback viewer next to improted film clips located on the project / sequence window. Audio works fine.
    2) the UI is way too slow for my big beefy system.
    My pc is a dual boot Vista-32 and XP system with 4GB of memory installed and nvidia geforce 280 graphics board with plenty of GPU power. The CS4 is installed on the Vista-32 partition. My windows XP partition on the same PC with Premiere CS2 works great and real fast.
    Any ideas how to solve this CS4 install issue?
    Ron

    I would like to thank Dan, Hunt, and Haram:
    The problem is now very clear to me. The problem only shows up with video footage imported into PP CS4 encoded with "MS Video 1" codec. So this seems to be a bug. The codec is very clearly called out and supported within various menues but video with this codec just will not play in any monitor or preview window. In addition the entire product looks horrible with respect to performance while PP CS4 trys its best to play the video. Audio will start playing after about 30 seconds. And once in awhile part of video shows up at the wrong magnification before blanking out again.
    My suggestion to the Adobe team: fix the bug and add some sample footage to the next release so new installations can test their systems with known footage.
    My PC is brand new with the following "beefy" components:
    Motherboard
    nForce 790i SLI FTW
    Features:
    3x PCI Express x16 graphics support
    PCI Express 2.0
    NVIDIA SLI-Ready (requires multiple NVIDIA GeForce GPUs)
    DDR3-2000 SLI-Ready memory w/ ERP 2.0 (requires select third party system memory)
    Overclocking tools
    NVIDIA MediaSheild w/ 9 SATA 3 Gb/sec ports
    ESA Certified
    NVIDIA DualNet and FirstPacket Ethernet technology
    Registered
    CPU: Intel Core 2 Quad Q9550
    S-Spec: SLAWQ
    Ver: E36105-001
    Product Code: BX80569Q9550
    Made in Malaysia
    Pack Date: 09/04/08
    Features:
    Freq.: 2.83 GHz
    L2 Cache: 12 MHz Cache
    FSB: 1333 MHz (MT/s)
    Core: 45nm
    Code named: Yorkfield
    Power:95W
    Socket: LGA775
    Cooling: Liquid Cooled
    NVIDIAGeForce GTX 280 SC graphics card
    Features:
    1 GB of onboard memory
    Full Microsoft DirectX 10
    NVIDIA 2-way and 3-way SLI Ready
    NVIDIA PureVideo HD technology
    NVIDIA PhysX Ready
    NVIDI CUDA technology
    PCI Express 2.0 support
    Dual-link HDCP
    OpenGL 2.1 Capaple
    Output: DVI (2 dual-link), HDTV
    Western Digital
    2 WD VelociRaptor 300 GB SATA Hard Drives configured as Raid 0
    Features:
    10,000 RPM, 3 Gb/sec transfer rate
    RAM Memory , Corsair 4 GB (2 x 2 GB) 1333 MHz DDR3
    p/n: TW3X4G1333C9DHX G
    product: CM3X2048-1333C9DHX
    Features:
    XMS3 DHX Dual-Path 'heat xchange'
    2048 x 2 MB
    1333 MHz
    Latency 9-9-9-24-2T
    1.6V ver3.2

  • Ideapad A1-07 tablet wifi-bluet​ooth does not work!

    Hello everyone. As you can see from the title on my tablet is not working wifi and bluetooth. When turning wifi tablet is reset and continues to be off and on until it forcibly turns off, and when you turn it on again, and do not touch wifi everything is normal and there are no problems with resetting. Can someone help me and give suggestion to solve this stupid problem.  I'm from Croatia and I'm bad with the English writing.

    Hi
    Welcome To Lenovo Community
    Please perform a  factory reset 
    Please ensure you have backed any important data before doing factory reset
    Hold the volume down and the power till Lenovo logo appears .
    System will boot into recover mode. Follow the instructions
    Hope This Helps
    Cheers!!!
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with Kudos!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!  This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Polygonal lasso tool not working with stylus on Surface Pro 2

    Hi guys,
    I'm new here so please bare with me if I'm posting in the wrong place or don't make immediate sense.
    Hardeware / software used: surface pro 2 and I'm running photoshop CS5.
    Problem is a fairly basic one: I am trying to make basic selections using the polygonal lasso tool (using the stylus that comes with the tablet) but it simply will not work. All I get when I touch the stylus to the screen is the circle that appears then fades. If I attach the keypad and try using that then it works no problem at all.
    Does anyone have any ideas as to whether there is a particular setting that I need to switch on or off e.g. something relating to pressure sensitivity (although not sure why this would affect this particular selection tool)?
    I've searched the web and come up with nothing so far so any help is greatly appreciated!
    Thanks for your time
    Scott

    same problem on surface pro 3 !!!!
    and i think quite significant, for lot of artists using polygonal lasso a lot (including me). How come that the stupid surface cannot work properly

  • Excite PRO 3G connection not work after Android v4.3 update

    Hello,
    I live in Italy and on last Sunday (january 26th) my Excite PRO tablet (model AT10LE-A-10H) got the Android version 4.3.201121220.35.
    After restart my wifi works fine, all other app work fine, but my 3g connection doesn't work, mobile network bar is empty and it says "no service".
    My sim card is ok. I used this sim card before the system update and I didn't get any problem with Android 4.2.2.
    Please help me.
    Thank you

    >After restart my wifi works fine, all other app work fine, but my 3g connection doesn't work, mobile network bar is empty and it says "no service".
    Go to the mobile network settings and search again for the 3G network.
    I had similar problem with my Android Smartphone and my o2 provider
    I started new search, then I chosen the O2 again and then I could solve the problem.
    In case this does not work for you, recommend you to reset the tablet back to default (factory settings)

Maybe you are looking for

  • Problem in Background Job. Job Completed Successfully but data not Posted

    Hi All, There is a problem in Background Job in Production server (600). The job completed successfully but data not posted. The same Job was working perfectly till the starting of the May month. but now it is not working and rebate has not been post

  • Query tuning with partition

    Hi to all, I am an issue with a tuning of a query where I have a join among a lot of table with the same structure as described below: Table A VARCHAR2(20) : id_customer VARCHAR2(20): external_id date : start_custromer date : end_customer. The end cu

  • 4 hours and Security Wipe still continuing in Q5

    I set my phone on security wipe and its been 4 hours and its still not finished. I removed the media card...  Need urgent help. Hard reboot is alos not working Solved! Go to Solution.

  • If I delete a photo in Revel, does it also delete it in Photoshop Elements 11?

    I've begun uploading photos madly, in my 30 day unlimited upload window.  Now that I've got some photos and albums in Revel, I want to get rid of some of the photos.  If I delete a photo in Revel, I understand that it will also be deleted from my iPh

  • Major Differences between 2.6, 7, and 8

    Greetings! I would like to find out if there is a document indicating major differences between Solaris 2.6, 7, and 8 that would help Driver developers. Any help will be appreciated. Harry Bhasin