Using with a G3 B/W?

Hello! I have an old G3 B/W that I was using an old dinosaur of a monitor with. I am running 8.6 on it because I mainly use it for my Agfa Arcus II scanner. I also have a PowerBook G3 Pismo and PowerBook G5. I have a 17" Studio display that I use with the G4 using the apple adapter. I thought I would use it with the G3 B/W and bought a DVI gender changer and a VGA gender changer but it still won't work with the G3 B/W. So, I am wondering if it would be possible to use the monitor on either of my PowerBooks with the G3 B/W? Or, any other ideas would be greatly appreciated!

My assessment of the seller's card was based on several things. I have a Radeon 7000 Mac Edition, which has the VGA, DVI, and S-Video ports. I'm not aware that ATI marketed a no-frills Radeon 7K Mac Edition card, having just a VGA port. If they did, I've never run across any spec page for it on their web site over the past 5 years. The original Radeon Mac Edition (a better card than the Radeon 7K Mac Edition) had the same ports, but had the fan on the heat sink because the GPU was faster and ran hotter. The flashed Radeon cards with the silver-colored/aluminum heat sink are usually the "Powered by ATI" cards, marketed by Sapphire or other electronics manufacturers/distributors. All of the "Built by ATI" Radeon cards have black heat sinks, with the original ME having a shorter height heat sink and integrated fan. All of the Radeon 7K cards that I purchased and flashed were ATI's retail, boxed products for PCs, and all have the black heat sink w/o fan. After word of flashing became widespread, ATI's Radeon 7K (PC) retail cards were manufactured with a smaller ROM chip that couldn't hold the Mac ROM. Many thought that this was an attempt to force Mac users to buy the more expensive Radeon Mac Edition. Apparently, some of the "Powered by ATI" products have the larger ROM chip (like the Sapphire Radeon with the bright aluminum heat sink), which can accommodate the Mac ROM. Some individuals who buy, flash, and sell cards have found a workaround for the smaller ROM chip, by flashing the cards with a truncated Mac ROM. If the eBay seller's cards are a "first generation" Radeon 7K Mac Edition with only a VGA port (which I've never seen), the label on the back of the card should indicate "RADEON 7000 MAC32M."
On the subject of ATI products, Mac users can only hope that their commitment to the Mac platform won't disappear, since their acquisition by AMD.

Similar Messages

  • HT201328 I have been given permission for unlocking my iphone 3 GS from Orange. I want to set up the phone for my wife to use with a new number and carrier. Do I unlock under my itunes account first or set one up for her and then unlock the phone.

    I have been given permission for unlocking my iphone 3 GS from Orange. I want to set up the phone for my wife to use with a new number and carrier. Do I unlock under my itunes account first ( I now have a new iphone on this account) or set one up for her and then unlock the phone. I am worried about upsetting the new phone.

    I would complete unlocking as is and then
    restore as new once you know the iPhone is unlocked
    Be aware Orange will process the request at their speed
    one of the reasons they usually reside at bottom of User Sat surveys
    will likely take weeks
    This may also help
    http://support.apple.com/kb/HT5014

  • Acmcneill1ug 14, 2014 7:16 AM I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great. When check how much memory I am using, with only Safar

    Acmcneill1ug 14, 2014 7:16 AM
    I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great.
    When check how much memory I am using, with only Safari open I am using 3.9 and more of her 4.0 memory. She is very. very slow in processing. I had 4000
    trash to clean out and it took her over an hour to expel. Also for some reason Safari will not allow me to click on a link, in my G-mail, and let it go to the page.
    It has a sign saying a pop-up blocker is on and will not let me do it. I must open the stamp to look at my e-mails and if I have redirected link now I can do it.
    I have not changed my preferences so where is this pop-up blocker?
    I have looked at preferences on Safari and Google, which I do not understand Google, and do not see where this blocker could be.
    Malware is something I want to make sure is not on my computer. Tech Tool Pro 6 is all I know of and it does not detect Malware.
    Help.
    Ceil

    Try Thomas Reed's Adware removal tool. He posts extensively in the communities.
    Malware Guide - Adware
    Malware Discussion

  • Not Refresh Value After Add New Record used with RPC Component

    This is my code in the class Users.as
    package inthanous
    import mx.controls.Alert;
    import mx.rpc.http.HTTPService;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    public class Users
    private var service:HTTPService;
    [Bindable]
    public var xmllist_user:XMLList;
    public function Users(){
    service = new HTTPService();
    service.method = "POST";
    service.useProxy = false
    service.resultFormat = "e4x";
    public function listUser():void{
    service.url = "/user/get_all_user_group_name";
    service.addEventListener("result", httpResultListUser);
    service.addEventListener("fault", httpFaultListUser);
    xmllist_user = new XMLList();
    service.send();
    private function httpResultListUser(event:ResultEvent):void{
    service.removeEventListener("result", httpResultListUser);
    service.removeEventListener("fault", httpFaultListUser);
    xmllist_user = new XMLList(service.lastResult.children());
    listAllUser();
    private function httpFaultListUser(event:FaultEvent):void{
    var faulstring:String = event.fault.message;
    service.removeEventListener("result", httpResultListUser);
    service.removeEventListener("fault", httpFaultListUser);
    Alert.show(faulstring,"Error");
    public function createUser(_xml:XML):void{
    service.url = "/user/create_user";
    service.addEventListener("result", httpResultCreateUser);
    service.addEventListener("fault", httpFaultCreateUser);
    service.send({firstName: _xml.firstName,
    lastName: _xml.lastName,
    gender: _xml.gender,
    login: _xml.login,
    pwd: _xml.pwd,
    dtBirth: _xml.dtBirth,
    telephone: _xml.telephone,
    idGroup: _xml.idGroup
    private function
    httpResultCreateUser(event:ResultEvent):void{
    service.removeEventListener("result", httpResultCreateUser);
    service.removeEventListener("fault", httpFaultCreateUser);
    listUser();
    clearUserDetail();
    private function httpFaultCreateUser(event:FaultEvent):void{
    var faulstring:String = event.fault.message;
    service.removeEventListener("result", httpResultCreateUser);
    service.removeEventListener("fault", httpFaultCreateUser);
    Alert.show(faulstring,"Error");
    This code i used with Ruby on Rail to connect with MySQL.
    When i used with FireFox browse after i create new user
    success it refresh the new record in Datagrid. But for the Internet
    Explorer Datagrid not refresh it because of it display the old
    recode before create.
    So i don't know it problem by Internet Explorer or my script.
    i hope someone can help me the solve this problem.
    thanks

    If you restrict the selection, a record value outside of that selection is not acceptable and will give you this error. This is how BPS works.
    You need to restrict on some other char so BASIC1 doesn't come in, but this value should be part of any selection on ZSEGMENT field for it to be accepted back.

  • After ios 8 update I can no longer play music through my car. I have a 2012 Nissan Rogue - whihc has its own cable made to use with iPhone 4 - I use a apple adapter to converst to use with 5.

    After ios 8 update I can no longer play music through my car. I have a 2012 Nissan Rogue - which has its own cable made to use with iPhone 4 - I use a apple adapter to converst to use with 5. Has been working fine up until update. Is there a fix for this? The car does not have usb

    Here I come to save the daaaaaaaaaay!!!
    Had the same issue with my Nissan Rogue 2011.
    This listed below will fix it...
    Go to General > Restrictions > CarPlay -- Make sure Carplay is DISABLED. (The new IOS 8 enables this on default)
    Go to General > Reset > Reset Network Settings
    The Nissan Rogue radio system was never designed to work with CarPlay. By default, CarPlay feature comes enabled when you install IOS 8. Suckz, right?
    You're very welcome! Have a great day!
    Sincerely,
    The Superhero

  • Inland external usp mouse malfunctio​ning when used with HP Pavilion dv6-2155dx laptop.

    I have a external usb mouse I have been using with my HP laptop for over two years now and it has always worked without a problem. This week it suddenly stopped working properly. Often it does not work when I click on it even after several tries. Due to disability with hands it is too hard to use the pointer on the pad on my laptop. I need to use a mouse.
    I am not sure if it is a bug from a recent software update or an issue with my snyaptics program (which is what I suspect).  I am older and my computer knowledge is not so good anymore.
    What can I do to diagnose to see where the problem is. I cannot afford to take my laptop in for service right now.
    Thanks

    Hi Richard61,
    Thank you for your post, I will do my best to assist you.
    I understand that your mouse is not working properly.  Here is a document onTroubleshooting Mouse Problems (Windows 7, Vista, XP).  Have you tried a different usb mouse?  Have you tried it in a different USB port?
    It is not the synaptics program as that has to do with Touchpads, not the mouse.  If you believe it was an update, you may be able to do a system restore back to when it was working correctly.  You could try running  MS Fix It to help resolve issues and look for updates. You should also run the HP Support Assistant  to aid with updates and resolve issues.  Please let me know how it turns out.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • How do I format my external HD to use with iMac?

    I have an external HD by Maxtor that I have used with a Windows computer. I am changing to iMac and want to use the same drive. I have transferred the files on it to my iMac successfully. But now I can't clean up the drive because everything is "read only". I read in Maxtor support how to format the drive but it was directions for Mac OS 9 and I couldn't figure it out.

    Additionally, you need to be aware of OS X file system formats and partition mapping schemes are two different things.
    OS X requires the Mac OS Extended (HFS+) file system formatting—applies to both PPCs and ICBMs (Intel-chip-base Macs). Details on file system formats are in <http://developer.apple.com/documentation/Performance/Conceptual/FileSystem/Art icles/MacOSXAndFiles.html>.
    PPCs require the ApplePartition Map scheme and the ICBMs the GUID Partition Table scheme. Details on partition mapping schemes are in <http://developer.apple.com/documentation/MacOSX/Conceptual/universalbinary/universal_binary_tips/chapter_5_section10.html>.
    So, for your situation, in addition to Mr. Clifton's advice, you need to select the GUID partition map scheme.

  • HT5624 Why in my email ( the one on my ipod5 that I use with my apple ID) when I get emails about my use of my apple ID to use a service in the from field it has my fathers name and when I click on it it shows his contact info ????

    Why in my email ( the one on my ipod5 that I use with my apple ID) when I get emails about my use of my apple ID to use a service in the from field it has my fathers name and when I click on it it shows his contact info ???? I also set up my apple ID with a new email account and also I signed up for iCloud but used the same apple I'd email and password but it gave me a I cloud email! I did activate the favorites in my email . Noticed the from field has my fathers name and contact and it is a notification about me using my apple ID to sign in to FaceTime! Something is messed up, not sure how or why???

    i didn't read a lot of your 2nd paragraph, but it seems like the password is the issue, right?
    do a true clean install
    reboot your machine and hold down command+option+r, you should see a spinning globe - if you don't see the globe or anything that reads internet recovery, shut down and try again
    at menu, chose disk utility and once there, find your HD on the left side, select the physical name and erase it as mac journaled
    exit disk utlity
    at menu, choose install OSX
    this time, when it asks for a password just hit continue, it will let you complete without a password
    you should be able to get into your laptop, now figure out what password you'll be able to use with your kb issue

  • Please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    Ok, you should generally only get this when you are converting your ID to an iTS account for the first time.
    Sign into iTunes with your Apple ID and you should get this.... IRC once you agree or accept it's now an iTS account and you wont get that again.

  • When i log in my apple id in itunes a message prompt me "This Apple ID has not yet been used with the itunes store" what do i need to do?

    when i log in my apple id in itunes a message prompt me "This Apple ID has not yet been used with the itunes store" what do i need to do?

    If you can log into the computer, go to the Mac App Store and purchase Mavericks under your AppleID.   Even though its free, they still consider it a purchase.
    If you are not able to log into your Mac you can try on a different Mac.  Once you purchase it, you can stop the download if you want.
    Once you do that then you should be able to reinstall via the Recovery HD

  • My itunes comes up with this when i try to download purchased songs: this devise is already associated with an apple id. this devise can be used with another apple id in 82 days. i need help to see if i can fix this problem please.

    i have an iphone 4s i signed out of my itunes on the devise and my friend signed herself into ituned but i signed her out an myself back in but my purchased songs and tones cannot download. it gives me a message of:this device is already associated with an apple id. this device can be used with another apple id in 82 days! is there anyway for me to fix this or override something. im freaking out!!

    Sorry: once a device has been authorised for a particular iTunes account you can't change it to another until 90 days have passed. This is to prevent people cirumventing the restrictions of purchases to one account from consteantly swopping between accounts. You will have to wait for the 82 remaining days, and there is no workaround.

  • I cannot sign in.  "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc."

    I applied and received an upgrade code to Redeem Mountain Lion for my new MBP. 
    I get this message when I try to Sign in to the App Store after entering the redemption content code, and also if I just try to "Sign In".   The first part of the error is true - I haven't used the AppleID with the iTunes store.  
    I received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    I also tried to re-create this appleID...(it was one suggestion I saw for this issue) It doesn't let me since the ID already exists...
    The error is:
    "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc." 
    It's clearly not a cookie issue..   Stuck...

    The first part of the error is true - I haven't used the AppleID with the iTunes store. 
    Try here >  Using an existing Apple ID with the iTunes Store and Mac App Store
    received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    Correct.
    It's clearly not a cookie issue..
    As for cookies. Quit the App Store. Now open the Finder. From the Finder menu bar click Go > Go to Folder.
    Type this exactly as you see it here:   ~/Library/Cookies
    Click Go the move the   com.apple.appstore.plist   file from the Cookies folder to the Trash.
    Relaunch the App Store.

  • Can the Mini DisplayPort to VGA Adapter for a 2011 Mac Mini be used with Windows 7?

    This question concerns the Mini DisplayPort to VGA Adapter described at the below link:
    http://store.apple.com/us/product/MB572Z/A
    When running Windows 7 via Boot Camp on a 2011 Mac Mini, can the above adapter be used with a VGA monitor?

    Thank you for the confirmation, Mr. Peck.

  • HT204149 What is the maximum resolution available for use with the Apple Mini DisplayPort to Dual-Link DVI adapter?

    What is the maximum resolution available for use with the Apple Mini DisplayPort to Dual-Link DVI adapter?

    Hey guys,
    I found out an answer by myself...
    The missing link : the MacBook Pro needs to be powered... as in you need to plug the charger in...
    In conclusion, you simply plug everything, turn on the MacBook Pro, close the lid, and there you go !

  • Can someone suggest an affordable external hard drive for use with FCPX and video editing on my Macbook Pro Retina

    I have a Macbook Pro Retina from 2012 and I only got the 250GB hard drive.  I'm getting ready to purchase a Panosonic HC-X920 to use with Final Cut Pro X already installed on my laptop.  Since I know the file sizes are going to be so big, can anyone suggest an affordable external drive fast enough to keep up with editing the video?  I'm not a pro and use it for family and personal projects. 
    I prefer some thunderbolt options since I haven't had a chance to use the inputs since I got my macbook pro. I just don't know what is necessarily too little or too big and too cheap and too expensive for my needs.  Thank you.  

    OWC is a Mac specialist and a very trustworthy vendor.  I have dealt with them and their technical stall on many occasions.  Hence you may look at what they offer and be assured that they will stand behind what they sell:
    http://eshop.macsales.com/shop/Thunderbolt/
    I suspect that for your needs, a 1 TB drive is going to be the minimum.
    Ciao.

  • Email can't be verified as its already in use with another apple id

    Hi there,
    This is my conundrum.
    When I got my iPhone 3Gs, I made an apple id with my @hotmail.com email.
    Then when I got an @me.com email about a year later, and automatically I have two apple id's.
    Well I tried to make the switch over to just using my @me.com apple id for everything as I don't use the @hotmail.com email anymore.
    But now its saying that my @me.com email can't be verified for my @me.com apple id because its in use with a different apple id.
    Somehow my @hotmail.com account was verified with the @me.com email.
    I changed the @hotmail.com apple id to not be verified with the @me.com email anymore.
    After successfully changing it I tried to get the @me.com account to have the @me.com email be the primary email address.
    But it still says that it is verified with another account.  I am at my wits end trying to figure this out.  Any help?

    Hi Kanemelinda8833,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Associating and verifying email addresses with your Apple ID
    http://support.apple.com/kb/HE68
    Also, make sure you have signed out of your Mom's Apple ID and are signed in with your own Apple ID on this device.
    Click on the link to see more details and screenshots. 
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Sign out of your Apple ID on all iOS devices, in the following locations:
    Settings > Messages > Send & Receive. Tap your Apple ID, then tap Sign Out.
    Sign in to your Apple ID on your device.
    When activation is complete, your Apple ID and all verified email addresses should be visible in Settings > Messages > Receive At
    Cheers!
    Judy

Maybe you are looking for

  • Report on SD

    Hi Gurus, I have a doubt on Grouping can anyone please help me regarding this. The issue is i displayed the vendors and many materials they are supplying like Vendor, No.of Material 100, 5 200, 11 1000, 25 and so on.................... Now i want to

  • St. loc. for Acct Assignment category K

    Hi Team, We have come across strange scenario while creating PO for Acct assignment categoty "K". As we know, when we are using "K" means procuring material for Cost centre (free text mtrl). For this type NO st. Loc is required as material will be di

  • Miro Rark tax amount wrong calculate

    Hi 1.I am Miro Directly posting But tax amount correct calculated. 2.Miro parked document posted tax amount wroung calculater. please help on this issues i need urnent .full posined assigned Regards YSr

  • Use audio uint to play iLBC but the AudioBuffer is nil in Callback

    Hi all , now i try to use audio uint to play iLBC stream , but in the render callback the audiobuffer of the ioData always be null , can you give me some advices , thanks , my code is below: init code: OSStatus err = noErr; if (m_bPlayChannelIsInitia

  • Audition font size?

    I want to increase the font size in Audition CS6 for mac,can anyone help please?