Around the web where are there lists of mac magazines?...

Around the web where are there lists of mac magazines?... besides macworld and macaddict.

http://www.macmagazines.co.uk/
http://www.magazine-group.co.uk/magazine/computers-technology/apple-mac
http://www.icreatemagazine.com/
Try google. Unless you live in China .There is much more on the web.

Similar Messages

  • Around the web where are there pictures of how you insert a disc?...

    Around the web where are there pictures of how you insert a disc?... into a 27 inch iMac 3.2GHz Intel Core i3

    I can see this happening sometimes. Especially if someone is mainly used to working with power macs; most of which have a dvd tray/s as opposed to slot loading mac computers.
    @ Bengt Wärleby .... good point regarding the use of mini dvd's most of which can easily be used with modern burners and dvd-rom drives that use a tray.
    Slot loading macs work well with a full size / standard dvd or CD only.
    Message was edited by: SDMacuser

  • Macbook Pro 2011 boots to Recovery disc or bootcamp only after successfully installing bootcamp on Mt Lion 10.8, the 3 harddiscs are there, but selectin Mac HD will boot to recovery disc

    On my Macbook Pro 13.3" mid 2011 model, with Lion and bootcamp, upgrading to Mountain lion 10.8 hung for the whole night. It failed to boot up, I was panic, reinstall the OS in the hope it will repair the boot disc, but it locked up the macintosh HD.
    I rebuilt OS without bootcamp from backed up image (Lion) then upgraded to Mountain lion, no problem at all. Used it for a couple of days, then installed bootcamp and restored the Windows 7 image from the backup. It's completed without any problem. It can boot up in Windows 7 and I changed startup disc in control panel to Mac HD, it can only boot from the recovery disc. Holding down the option key will show the 3 hard discs: Macintosh HD, Windows and Recovery 10.8, but selecting Mac HD always boots up by recovery disc. I have use disk utility from recovery disc to verify and repair Macintosh HD to no avail.
    If I use only mountain lion, it will be OK.
    Has anyone experience the same problem? Thank you.

    http://www.youtube.com/watch?v=QaDMbmsRqkQ

  • Question: When I want to send SMS and click on the contact, the contact came out with names and numbers, as if the whole contacts are there in the phone. When I open the contact, I can only see 3 contact names and the rest of 4000  contacts are not listed

    Question: When I want to send SMS and click on the contact, the contact came out with names and numbers, as if the whole contacts are there in the phone. However, when I open the contact, I can only see 3 contact names and the rest of 4000 plus contacts are not listed, and it makes you difficult to call through contact

    The iPhone remembers information about previous contacts.
    Complelely independently, you have a Contacts app with a contacts list.  It sounds like your contacts list has 3 names on it.  You need to add a few names.

  • Where are there pictures of all the iMac Apple computers?...

    Where are there pictures of all the iMac Apple computers so you can identify which one you're using?...
    20 inch flat panel iMac   Mac OS X (10.3.9)  

    Use this link: how to identify your iMac.
    Miriam

  • Firefox was working on my new iMac but then, after switching on recently, won't connect to the web – whereas Safari has no problem.

    ===
    Hi
    I bought an iMac a week ago and installed Firefox via Safari. It worked fine for a while but, after a recently switching on, it won't connect to the web whereas Safari has no problems.
    I've tried following the Firefox Help, looking into the iMac firewall, but still no luck.
    I've no idea whether related or not but yesterday I had a system glitch where the iMac stated no wi-fi was installed and only connected via a physical lead to my house router. Also, there was no sound output via Safari. However, after booting up today all seems well – apart from Firefox still not working. It loads the start page but can't access the web.
    I have Little Snitch running, and wonder if that's the culprit... but it's working fine with Safari, seemingly.
    (Finally, how do I stop a dialogue box appearing on start-up saying that "To open “X” you need a Java runtime. Would you like to install one now?)
    Any ideas anyone?
    Cheers
    Rob / Sheffield / UK
    ===

    On the wireless networks that your Mac has had trouble connecting to, do you know which Wireless Security type (WEP, WPA, or WPA2) is being used?
    If it is WEP, one of the problems is that the actual standard relies on a 10 character HEX key for 40bit WEP and a 26 character HEX key for 128bit WEP.   In order to make things easier, vendors use certain algorithms to convert simple alphanumeric passwords (or passphrases) into HEX keys, thus enabling the use of simple easy to remember WEP password rather than lengthy HEX keys. The problem is that different vendors use different algorithms to generate the HEX key and therefore a ASCII password on an AEBS will be hashed differently on a non-Apple client and vice versa.   You may find the following Apple Support article helpful.

  • How do i get my contacts back? they are backed up by i cloud but when I "MERGE" only the new ones are there and not the old ones

    how do i get my contacts back? they are backed up by i cloud but when I "MERGE" only the new ones are there and not the old ones

    Hi sfuentes,
    You need to check iCloud to see if they are actually there. Go to iCloud.com and sign in and then look at your Contacts there to see if the old ones are still showing on iCloud.
    If they are not, then you can either re-enter them while you are on iCloud.com, or you can restore your device from the backup where you saved them:
    https://support.apple.com/kb/ph12521
    Cheers,
    GB

  • I trying to cancel the adobe illustrator CC monthly plan. I followed the direction of the web site but there's no cancel icon in the plan management page.

    I trying to cancel the adobe illustrator CC monthly plan. I followed the direction of the web site but there's no cancel icon in the plan management page. I am paying more than 30 USD for several months for what I not using.what should i do?Creative Cloud Download & Install

    Moving this discussion to the Adobe Creative Cloud forum.
    Ssy10101 if you are unable to cancel your membership then please contact our support team directly at Contact Customer Care.

  • Parameter field should pick the values which are there in the value table

    Hi Experts,
    I have a requ. where in a parameter field should pick only the values which are there in the value table for that particular field and should not allow the User to put in any other value.
    The value table is created in the program manually.
    EX:If the value table contains two sales organization VE03 and VE65 then the field shouldn´t allow anyother value other then those two.
    Thanks and Regards,
    Arun

    Try using a listbox.
    report  zrich_0001.
    type-pools: vrm.
    data: ivrm_values type vrm_values.
    data: xvrm_values like line of ivrm_values.
    data: name type vrm_id.
    parameters: p_vkorg(4) type c as listbox visible length 20.
    at selection-screen output.
      name = 'P_VKORG'.
      xvrm_values-key = 'VE03'.
      xvrm_values-text = 'VE03'..
      append xvrm_values to ivrm_values.
      xvrm_values-key = 'VE65'.
      xvrm_values-text = 'VE65'..
      append xvrm_values to ivrm_values.
      call function 'VRM_SET_VALUES'
           exporting
                id     = name
                values = ivrm_values.
    at selection-screen.
      if p_vkorg is initial.
        message e001(00) with 'Please enter a sales org'.
      endif.
    Regards,
    RIch Heilman

  • How can I stop those anoying pop-up ad's that pop-up as I move my cursor around the web-page?

    How can I stop those annoying little ad's that pop up as I move my cursor around the web page, seems like anything that is highlighted in green will trigger it? Seems it just started happening with the new version of Firefox.

    hello hamguy, this sounds like a problem possibly caused by adware/malware on your pc. please go to ''firefox > addons > extensions'' & remove any suspicious entries (toolbars, things that you have not installed intentionally, don't know what purpose they serve, etc). also go to the windows control panel / programs and remove all toolbars or potentially unwanted software from there and run a full scan of your system with the security software that you have in place and different other tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] & [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner].
    [[Remove a toolbar that has taken over your Firefox search or home page]]
    [[Troubleshoot Firefox issues caused by malware]]

  • How do I prevent the Window Office applications from launching when my iMAC boots or recovers from sleep? I've tried System Preferences however the Office programs are not listed?

    How do I prevent the Window Office applications from launching when my iMAC boots or recovers from sleep? I've tried System Preferences however the Office programs are not listed?

    lunagirl wrote:
    The first 3 apps listed are not installed because I have not run the activation assistant for the Office trial that came with the T61.  Add/Remove programs has only these pre-installed apps:
    Microsoft Office 2003 Web Components
    Microsoft Office 2007 Primary Interop Assemblies
    Microsoft Office Small Business Connectivity Components
    MS SQL Server 2005
    MS SQL Server Native Client
    MS SQL Server Setup Support Files
    MS SQL Server VSS Writer
    Is the activation assistant one of them?
    No, AFAIK should be listed as Microsoft Office Suite Activation Assistant
    Rgds,
    Ahti

  • How do I copy photos from my Mac to my iPad without deleting the ones that are there?

    I understand how to sync photos from my iPhoto library to my iPad. I want to copy photos from my Mac to the iPad without syncing, because syncing deletes everything on the iPad that isn't included in my sync selections. In addition,I have several iPhoto libraries and want to copy photos from each of them to the iPad. A further issue is that apparently photos can be synced from only one computer to the iPad -- how would I copy photos from a different computer? (What happens when I buy a new Mac?) I am extremely experienced with Mac, iPhoto/Aperture, iPad, etc. A year or two ago I transferred 1000 photos to the iPad but I don't remember how, and it was probably done with my previous Mac. Now I just want to add some recent photos without deleting the ones that are there. Bottom line: is there a way to add photos to an iPad without syncing and losing what's there?

    You can still sync the photos and keep the photos that are already on the device. You have to include all of the albums or events in the pictures folder that you sync from. If you are using iPhoto, select that in the Sync Photos from drop down menu and then select all of the albums or events that you want to sync. Make sure to check Selected Albums, events, faces and automatically include (no events). Using that option will allow you to choose exactly which albums and events to sync.
    You have to remember that all photos must be included in every sync so you cannot sync photos from iPhoto today and then try to sync photos from another folder tomorrow, or you will erase all of the photos that were synced from iPhoto. You need to maintain one main Photos syncing folder for the photos that you want to transfer to the iPad. You can have subfolders within that one main folder and you can selectively sync those subfolders. You just have to place all of the photos that you want to sync into one main iPad syncing photos folder.
    There are WiFi transfer apps that allow you to transfer photos to the iPad without having to sync with iTunes. I use this one. This app (and others like it) will allow you to use multiple computers to transfer photos.
    Wireless Transfer App Easily send photos to iPhone/iPad ...

  • Enterprise Manager can't show web-service in the web-services area

    I'm deploying my application(stateless web-service) it work's well, but Enterprise Manager show that it's not a web-service, it can't show application in the web-services area, this fuсking server have many-many-many bugs and errors (fuсking developers was drunken a lot, imho), documentation's have many errors too, and I hate this server, but I need to use it on my work :-(
    p.s. read documentation's carefully it have many errors.
    p.p.s. From Russia with LOVE! Russian developers are the best from the best!

    Hello,
    Could you be more specific about the version of OracleAS you are using?
    - which exact version ? (10.1.3.x, 10.1.2.x or 9.0/x)
    - which kind of Web Service are you developing? (J2EE 1.4/JAX-RPC or earlier version)
    Also if you find bug in the documentation or product please send let the Oracle Support Service knows.
    Regards
    Tugdual Grall

  • When I am re-installing the Mac OSX snow leopard onto an older Mac I run into the window that says select the disk where you want to install Mac OSX but nothing is there to select

    I am trying to re-install the Mac OSX snow leopard onto an older I mac with a new hard drive.  I run into the "select the disk "where you want to install Mac OSX but there is nothing in the window to select. Any advice?

    After you install a new hard drive, you need to boot to another drive to initialize it to MAC OS Extended (journaled) format and create the partition(s) on the drive. You do this using Disk Utility. Otherwise, the mac operating install process doesn't see a formatted disk to install to.

  • TS1702 On my iPad 2 the mail app opens and the page icons are there but no mail. I can access my mail in other ways so I know mail is being received.

    On my iPad2 the mail app opens and the page icons are there but no messages are shown. I know mail is being sent as I can access it in other ways plus the envelope icon on my homepage continues to show the number of messages received.
    I have rebooted twice now but cannot think of anything else to do
    Help please

    Go to Settings>Mail the account and turn the account off and then back on
    Next delete the account from the iPad and reenter the settings.

Maybe you are looking for