Need urgent bookmark help please

macbook pro with snow leopard: i had a bunch of webpages of macbook and ios5 tips saved in my 'popular' folder but i decided to move all those to a new folder just for them. dragged the last bookmark into the folder and somehow accidentally deleted the whole folder. is there anywhere to find this folder, it's not in the trash. i'm desperate, thanks.

thank you so much for your help. after sleeping on it i realized i hardly ever used those bookmarks, i had them there 'just in case'. i remembered about half of them so i'm gonna decide if it's worth the trouble to try and restore the rest. either way, the link you provided will be very helpful now and in the future. thanks again.

Similar Messages

  • Hi all, i need urgently your help please. My touch screen on muy Iphone 5  is not working, i dont understand as it has not been damaged at all, i dont know what happened and need urgently somebody helps me please

    Please anyone there can help me what I can do??!! touch screen of my Iphone 5 is not working at all and dont understand as it has not been damage and it is only 2 months and half!! it is not an old iphone and it has not been damaged, has happened right now and cannot turn off the mobile at all. Tried to take out the nano sim as i though it will be turned off but it has not been! i dont know what i can do and i am desesperate!!! thanks All for your help!!

    Removing the SIM has no affect on the power of the phone. It is just the part that facilitates connecting to your carrier. Try holding the sleep/wake and home buttons together until you see the Apple logo on the screen and then release the buttons. The phone should reboot. You may need to hold the buttons together for 15-30 seconds.

  • Need a little help please    Airport Express

    Need a little help please.
    I am trying to set up a wireless network at my home using Airport Express.
    I have a regular phone line running in to I assume the modem. From there, there is an Ethernet cable running from that box to the back of the PC. My question is, I think, which of those do I unplug and plug into the Airport Express, the one on the back of the PC or the one that is in the back of the modem, or is this totally wrong.
    Any help would be appreciated…
    Thanks
    In advance…
    PS I have the manual but to me it is not very clear…

    Your connection sequence would look like this:
    Internet > Modem > AirPort Express >>>wireless to your computers.
    This means that you would unplug the cable that is now connected at the back of your PC and move that connection to the AirPort Express.
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click Continue to follow the guided setup. On the third page, you will choose the option to "Create a wireless network" and continue the setup.

  • Trying to install windows 7, installation disc won't eject when it needs to. Help please?!?!?!

    When setting up bootcamp I install windows 7, it then asks me to eject the installation disc to continue the installation but at this point the disc will NOT eject. Help please?!?!?!
    If I cancel the installation it'll eject the disc but it is at this point that I need to in order to continue and it just won't eject. I've tried the eject button, cmd E, starting again but I don't seem to be getting anywhere :s

    Sorry I'm a little late, my e-mail notifications died, I was wondering why it was so quiet. Here I thought I was getting better at this.
    Have you tried the USB thumb drive W7 installer way? I know 10.7 has an option now for installing a W7 installer iso onto a USB thumb drive but I don't know if 10.6 does. Search Google/yahoo for more information. Basically just make an iso of the W7 installer and copy it to the USB drive and it will boot via USB.
    At least I think yours can? Not sure which models work.
    Have you tried one of those CD disk cleaners? I bought one years ago and worked like a charm. (if it's dirty) It has a row of real fine bristles.
    Other then that you may have a dying drive?
    As far as games, make sure they are updated to run W7, other then that, that's Windows for ya.....

  • Help needed urgently .. Please help...

    I am using JTable in my project where i am overriding the default editor to my own custom editor.
    The problem is, when i am using tab key or mouse click, the cursor does not immediately move the next/clicked editable cell. I have to press the tab key twice to move to the next cell. After debugging i saw that the focus goes from the cell editor to the table and then on the second click to the next editor.
    My project requires a single click/single tab key pressed to make the cells editable.
    Please help..
    Thanks in advance..
    Preeti.

    Hi!
    I really have to get this Tab thing working.
    This is what I have tried, and it works partially.
    public boolean isManagingFocus()
    return true;
    public boolean isFocusCycleRoot()
    return true;
    * Captures tabs and moves focus to the next or previous cell, depending
    * on whether the <Shift> key was also pressed (i.e. tab or back tab).
    public void processComponentKeyEvent(KeyEvent e)
    if ( (e.getID() == KeyEvent.KEY_TYPED) && (e.toString().toLowerCase().indexOf(",tab") >= 0) )
    if (e.isShiftDown())
    tabToNextEditableCell(BACKWARD);
    else
    tabToNextEditableCell(FORWARD); // tab
    e.consume();
    else
    super.processComponentKeyEvent(e);
    * Sets editing focus onto next editable cell.
    * When moving forward, traverses cells from left to right then top to
    * bottom
    * @param direction FORWARD or BACKWARD
    private void tabToNextEditableCell(int direction)
    int x = getSelectedRow();
    int y = getSelectedColumn();
    //Added
    clearSelection();
    if ( direction == FORWARD && x < getRowCount() )
    editCellAt(x+1, ATTRIBUTE_VALUE_COL);
    else if (direction == BACKWARD && x >0)
    editCellAt(x-1, ATTRIBUTE_VALUE_COL);
    Let me describe what is happening..
    When I click tab, it moves 2 rows down, The table still highlights the next cell, but since it is not editable, I cant do anything, when I click Tab it moves to the next editable cell, which means that if the current cell is editable the table highlight moves to the next cell (which is not editable), and on the next tab it starts editing the cell.
    I dont know if I made too much sense... but I reallly need help with this.

  • Help needed Urgently for XMLElement().please see

    Hi,
    Look at the xml code for XMLElement
    CREATE OR REPLACE FUNCTION create_sdixml(
    a_sdi_num           IN   NUMBER,
    RETURN CLOB
    AS
            -- Declare the variables
            queryCtx          DBMS_XMLquery.ctxType;
            v_xml             CLOB;
            v_xmlString       VARCHAR2(32767);
    BEGIN
    v_xmlString:=' Select SYS_XMLAGG(XMLElement("SDIEXTRACT",
                          XMLElement("SDI",
                                     S.Book_num,
                                     S.capacity_ind )))
                    FROM sdi S where S.sdi_num = ' || a_sdi_num;
    queryCtx :=DBMS_XMLQuery.newContext(v_xmlString);
    DBMS_XMLQuery.setRowTag(queryCtx,NULL);
    DBMS_XMLQuery.setRowSetTag(queryCtx,'SDIEXTRACT');
    v_xml    :=DBMS_XMLQuery.getXML(queryCtx);
    RETURN v_xml;
    END create_sdixml;On running this I get the ERROR:
    <ERROR>:Character ')' IS NOT ALLOWED AS AN XML Tag Name </ERROR>PLEASE Can anyone help regd the XMLELEMENT statements above??

    If I use this from the SQL prompt,it works fine.
    1  Select SYS_XMLAGG(XMLElement("SDIEXTRACT",
      2                               XMLELEMENT("SDI",
      3                                          active_flag)))
      4  From sdi
      5* where sdi_num = 22261
    SQL> /
    SYS_XMLAGG(XMLELEMENT("SDIEXTRACT",XMLELEMENT("SDI",ACTIVE_FLAG)))
    <?xml version="1.0"?>
    <ROWSET>
    <SDIEXTRACT><SDI>Y</SDI></SDIEXTRACT></ROWSET>
    SQL>Any suggestions? Shall I pass some alias to this?

  • Needed urgently pls help me if anybody knows

    my output has to look like this please help me
    name city cardno mobno count
    sha chennai 12344 35545 2
    raj chennai 12344 13244
    sur bombay 12445 343 1
    raj banglore 12244 24657 1
    total count 4
    according to the city and card no i need the output
    i need a output like this
    Edited by: user10464977 on Oct 23, 2008 4:27 AM

    user10464977 wrote:
    my output has to look like this please help me
    name city cardno mobno count
    sha chennai 12344 35545 2
    raj chennai 12344 13244
    sur bombay 12445 343 1
    raj banglore 12244 24657 1
    Please :
    SQL> select 'sha' name, 'chennai' city, 12344 cardno, 35545 mobno, 2 "count" from dual union all
      2  select 'raj' name, 'chennai' city, 12344 cardno, 13244 mobno, null "count" from dual union all
      3  select 'sur' name, 'bombay' city, 12445 cardno, 343 mobno, 1 "count" from dual union all
      4  select 'raj' name, 'banglore' city, 12244 cardno, 24657 mobno, 1 "count" from dual;
    NAM CITY         CARDNO      MOBNO      count
    sha chennai       12344      35545          2
    raj chennai       12344      13244
    sur bombay        12445        343          1
    raj banglore      12244      24657          1Now you could understand we have not enough information, especially for urgent request !
    Like :
    1. business rule
    2. oracle version
    3. input data sample
    Nicolas.

  • In need of advice&help PLEASE.

    I'm not sure how long this is going to be, so please bear with me.
    [I apologize if this question has been asked already].
    I'm having major problems with my first gen. ipod nano.
    I've had it since March 2006 [roughly], and it started failing me around Oct-Nov of 07. I had completely drained it and then left it uncharged for about a month-ish or so. I finally decided to charge it and when I did, I noticed that the Apple logo kept flashing and wouldn't stop, even when I unplugged it from my computer. After many failed attempts, I decided to do a restore, so everything on it erased.
    Now, before I proceed [I don't know if this is going to be helpful or not...but just in case]:
    I have a Windows XP, and an old USB port. The like...1.0 or 1.1? version.
    Something along those lines. I haven't got anywhere on this computer a USB 2.0 port. When I restored my ipod I also downloaded the latest version of iTunes-- before, I had been running on a really old version, one from 2006. After I restored my iPod, I didn't see anywhere a pop-up or whatever asking me to rename my iPod. So now, when I try plugging in my iPod, my computer recognizes that I've plugged something in, and so does my iTunes, and it opens. However, my songs won't bloody sync! Is it because my iPod doesn't have an "owner" so to speak? Or is it because I have a new ITunes version but an old USB port? Could it be a combination of the 3? Mind you, I think I may have the ITunes 7.5 version or something. Today I tried my iPod again and it asked me if I wanted to download the 7.6 version. Just to give you a hint of what iTunes version I have.
    I'm sorry if I come across a bit rude or impatient; this whole iPod thing has been driving me crazy. Pardon the length of the post as well.
    One more question though: if nothing works, can I take my iPod to an Apple technician or...do I just need to get a new one?
    I realllly hope someone can help me with all this! Thank you =)
    ...Oh! One more thing. How do I rename my iPod? I don't have a clue as to what to click.

    *How do I rename my iPod? I don't have a clue as to what to click*
    Connect your iPod to your computer
    When (or if, considering the problems you are having) it appears in the iTunes source list click on it's name once to highlight it
    Click on it's its name again.
    The text box will open for editing.
    Type a new name.
    Have a look here for more: How To Rename your iPod

  • Can I retrieve bookmarks from an older Firefox version to insert them into the current version? I was running Mac OS 10.4?(Tiger) but upgraded to 10.6.8; then I loaded Firefox 9.0.1 & discovered that I'd lost my bookmarks.Help please.

    The OS upgrade was done by a technician so no issues there. I uploaded the current Firefox without saving my old bookmarks. I remember now that previous FF upgrades progressed without bookmark problems. Is the current problem to do with the new OS? Not certain of the correct OS number but it was Tiger; also not certain of the correct FF number but it was the most appropriate one for Tiger. Again, please help.
    Thanks very much.

    Not unless they were saved somewhere on your computer. You can check the Time Machine if that storage has been used and wasn't reset as well.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile

  • Photoshop Elements 7:  Newbie Needs Drop Shadow Help, Please

    Hello.
    I'm brand new to Adobe Photoshop Elements 7 and need help with the Drop Shadow feature, please.
    I've read the documentation, but it's not crystal clear to me, so maybe someone can guide me through it.
    I want to create text on a blank white canvas, and add a little bit of drop shadow to it. That's all I want to do--plain and simple.
    I can create the text, but I can't for the life of me find any drop shadow options.
    The documentation I'm using is the on-line, web-based help. I type in Drop Shadow in Search, and select Add Text to a Slide.
    The third step says, "In the Properties palette, set any of the following options" and then offers some options, including Drop Shadow and Drop Shadow Color.
    I'll be darned if I can locate the Properties palette. Obviously, I'm not well-versed with Photoshop, so if anyone can just steer me towards this feature, I'll take things from there.
    I know this is probably rock-bottom basic, but I'm stumped. Thank you!
    J. Danniel

    I need a lot more help with this than I thought.
    The problem I'm having is this: After creating the drop shadow effect, when I try to save the image as a transparent GIF, it quite simply.... looks horrible.
    Here is what I'm doing in detail:
    1. New/Blank File.
    2. Blank File is set to transparent. (Is this the right way to make a transparent GIF?)
    3. Creating text.
    4. Cropping text.
    5. Selecting drop shadow effect.
    Now, here's where I get confused. Do I just select File/Save As, or File/Save For Web?
    When I just use File/Save As, and select the GIF format, the drop shadow effect in the final file looks horrible when I embed the image into a web page. The text looks good, and the file is transparent, but the effect is ugly.
    When I try to use Save for Web, there is a Before/After screen. The Before side looks decent; the After screen looks horrible, too.
    So, now I don't know what to do. Can you or anyone guide me through this a bit further, please? Thank you! Jd

  • Beachball - need to shutdown - help please

    Help. It's happened again and I'm embarassed to admit that I only have just over 10% free drive space.
    I was running VPC and inserted a USB diskette drive and now I've had a beach ball revolving for over an hour. I'd like to safely shut-down. The system clock has stopped.
    I have entered expose mode and can see several Safari windows, 2 Mail Windows, a Windows Excel window (running when I inserted the USB) and a VPC window. I can select any Mac application just by clicking the window and it shows me the control bar at the top of screen. However, I cannot get a cursor to access the controls.
    Pressing command - option - escape will not close any applications.
    I'm not sure what this will do to my open VPC image if I press the off switch.
    Any suggestions please?

    I've re-opened this thread, as the topic is similar.
    I cannot believe how instable my system is. I switched to Mac to get a reliable system, but I cannot do without Windows entirely, hence my heavy use of VPC.
    Today I got the small grey screen "You need to restart your computer". I was running VPC at the time. All apps were closed except Windows Explorer (the file system). The cause was merely unplugging my broadband connection. Wow!
    On rebooting VPC I got:
    "One of the specified disk images could not be opened. The disk image file is not the correct file type or uses a file format that is unsupported by this version of Virtual PC."
    I "detached" my "drives" 2+3, which were pointing to my Drive2.vhdp and Drive3.vhdp data "drives" and tried again. No luck.
    Drive 1 was pointing to Disk1.vhdp, which is a part of my Windows 2000.vpc package. I don't believe that it was pointing there before the crash.
    # side note #
    (The Windows 2000.vpc package is an old installation that I don't use but have not deleted. I currently use one called: "Windows 2000 copy 1-011105") which might or might not be a copy of "Windows 2000.vpc." I've had so many problems, it's hard to say.
    I then tried and successfully detached the Disk1.vhdp and received a warning:
    The hard drive data previously used by Drive 1 is no longer contained in this PC document. The data has been moved to a separate Virtual Hard Drive Document "Windows 2000 copy 1-011105 Disk1.vhdp".
    On examining the above package I find:
    BaseDrive.vhd 14.45GB (size about right) dated last night when I last closed VPC
    MainPackageFile Alias
    UndoDrive1.vud dated at the time of the problems.
    On examining my "Windows 2000 copy 1-011105.vpc7 I find:
    Configuration.plist
    IconCache
    MainPackageFile Alias
    StartMenu.plist
    Do you have a suggestion as to how I can rescue my above mentioned BaseDrive.vhd please? This is more recent than my last back-up.
    Many thanks in advance.

  • [code]"URGENT DATABASE HELP PLEASE"[/code]

    hi everyone, I need some urgent help in my program.
    Basically, I want to query a database. The problem is, I do not know what relations exist. Does anyone know of a way I can find out the relations that exist and their schemas?
    Anyone who can help me in this query shall be well rewarded.
    Thanks in advance.

    >>>
    so basically, in a nutshell, you guys are sayingI
    am
    screwed??Judging by your posts: yes. Very much so.sarcasm aside, I meant is there no way I can get the
    database schema simply by doing some funky queries
    from Java?As k the DB guys for the ER diagrams and if they still ask you get the dump ask for acces to some oracle tools like Enterprise Manager Console where you culd figure out the structure your self.

  • Lenovo A6000 Softbricked? Needs some serious help--Please

    Hi My A6000 phone got factory reset and then I tried to recover some lost pics...but I was advised that my phone needs to be rooted first, so the software opened kingo root soft, It showed me the message that phone has been rooted and when it rebooted there was a notification of software update which I said ok and ever since then the phone is stuck on system recovery mode (not sure if it is called soft brick or not) and I have tried many things including choosing all the options starting from reboot system now, apply update from ADB, wipe data/factory reset, wipe cache partition, apply update from sdcard but nothing seems to work!!! oh I for got to mention on the top of the screen it says  Androoid system recovery <3e>Kraft -A6000_S035_150507 and then gives all the option and i have tried this following : https://boycracked.wordpress.com/2015/06/03/unbrick-lenovo-a6000/ but some how for the first solution it keeps on saying download failed, emergency recovery download failed...anyways it does not work  Is there any soultion to this!!! Please help if there is one!

    it worked the link from boycracked (mentioned above )actually worked the trick was to hold vol up+down key (while the phone is off) and then insert the usb into your computer, secondly my computer kept of saying that qualcomms --digital signatures not verified and the port is supposed to be Qualcomm Lenovo HS-USB QDLoader 9008 where as mine showed up to 9091, to solve this I uninstalled the drivers and then disabled digital signatures (use goggle how to disable signatures verification on whichever windows you are using) and it worked fine. Thank you all

  • Bookmark help Please...........

    Hi everyone--
    I'm hoping someone can help me. I have bookmarked several sites, but when I go to click on them in bookmarks, it doesn't take me to the site. It just highlights the name of the site, and address in dark blue. If I hit return, it highlights the name in light blue, like I'm going to delete/change the name. Is this a problem that I should notify my ISP about, or is there something I need to do to enable my bookmark links? I hope this isn't too confusing(I apologize)I only do the basics on my computer, and leave the rest for my kids, lol.
    Thanks in advance for any help!

    Just got the computer brand new a few weeks ago, so thankfully it ended up being a minor problem.
    I feel silly but at least I know, and can let others know in case they come up with this problem. After waiting 11 minutes, I chatted with a tech support person. Turns out my mouse "click" speed was set all the way to "fast" and in order to have it open bookmarks I had to turn it down a few notches!
    Thanks for your help though!

  • I really need emergency iphone help- please- it has gone into restoration mode and wont come out unless i click restore- if i do will i loose all my photos and videos etc? please help!!!

    i recently plugged my iphone4 into my laptop to sync, when i plugged it in, itunes told me that i needed to update my software, so i clicked up date and walked awayfrom my computer leaving it to do the rest, but by the time i came back to my laptop 2-3 hours later i had realized that it has run out of charge and because of it my phone had gone into retoration mode- and the only way to fix it was to press restore. what do i do? do i click restore or will that take my phone back to factory settings as i have a tonne of photos and videos etc that i have not backed up yet?
    what should i do anny coments or ideas please let me know!

    The first step in the upgrade process is a backup.
    Did iTunes not create a new backup when you first connected it?
    You really should be syncing your device and copying pictures off of it on a regular basis.
    Starting an upgrade without first syncing and copying the pictures off is not a bright idea.
    At this point, you only option is to restore.
    Also, in the future, ensure your laptop is plugged into external power before starting upgrades.

Maybe you are looking for