MOVED: [Athlon64] tv out problem

This topic has been moved to AMD64 nVidia Based board.
[Athlon64] tv out problem

Oh my God! 1 mth still no reply from ppl?   

Similar Messages

  • MOVED: [Athlon64] Annoying little problem! PLease help

    This topic has been moved to Operating Systems.
    [Athlon64] Annoying little problem! PLease help

    Hi Ben.
    Thank you very much vor your replay
    but I still can get it
    Here the code
    on testAlphaChannels sourceImage, cNewWidth, cNewHeight,
    pRects
    cSourceAlphaImage=sourceImage.extractAlpha()
    newImage = image(cNewWidth, cNewHeight, 32)
    newImage.useAlpha = FALSE
    newAlphaImage = image(cNewWidth, cNewHeight, 8)
    repeat with i=1 to pRects.count
    destRect=......
    newImage.copyPixels(sourceImage, destRect, pRects
    newAlphaImage.copyPixels(cSourceAlphaImage, destRect,
    pRects,
    [#ink:#darkest])
    end repeat
    newImage.useAlpha = TRUE
    newImage.setAlpha(newAlphaImage)
    textMember = new(#bitmap)
    textMember.image=newImage
    end
    But the result is not correct. O my example
    http://www.lvivmedia.com/fontPr/Fontproblems3.jpg
    image to the left is
    created on background image, and image to the right - with
    code above
    What is wrong in the code, I quoted above?
    Any help will be appreciated
    Jorg
    "duckets" <[email protected]> wrote in
    message
    news:ekhekq$c6g$[email protected]..
    > I think this is what you'll have to do:
    >
    >
    >
    > Do the copypixels command as per your 2nd result example
    (where "no
    background
    > image is used") using destImage.useAlpha = false.
    >
    > Create a new image as a blank alpha channel image (8
    bit, #greyscale)
    >
    > Repeat the same copypixels commands for each number, but
    this time the
    source
    > image is 'sourceAlphaImage', and the dest Image is this
    new alpha image.
    And
    > the crucial part, use: [#ink:#darkest] for these
    operations. This is
    because
    > you are merging greyscale images which represent the
    alpha channels of
    each
    > letter. The darker parts are more opaque, and the
    lighter parts are more
    > transparent, so you always want to keep the darkest
    pixels with each
    copypixels
    > command.
    >
    > hope this helps!
    >
    > - Ben
    >
    >
    >
    >

  • [Athlon64] tv out problem

    How to use the tv out port that build-in motherboard?
    Is it just connect it to the tv? Do it need other extra driver, software or settings?
    I tried already but no image come out from tv, just a bunch of lines.
    So anyone please help me with this. thank you.

    Oh my God! 1 mth still no reply from ppl?   

  • Purchased a new Apple TV and the remote double clicks each time I press the button. It worked fine during set up and for the first two days.  I have since moved it and this problem started. Restarted,reset,unplugged,change remotes, no change.Help please.

    Purchased a new Apple TV and the remote double clicks each time I press the button. It worked fine during set up and for the first two days.  I have since moved it and this problem started. Restarted,reset,unplugged,changed remotes, no change. Latest software update. This is really annoying.  iPhone remote app works just fine.  Any suggestions?

    That's one of the weird things.. it recognizes it maybe 10% of the time. And usually, only after I do the two-button reset. Problem is.. since it won't charge above 2%, anytime I try to do a restore or anything like that using iTunes, my device shuts off and I lose whatever progress I'd made.
    So, an update... after reading through a bunch of similar complaints (there are literally 1000's of them so there's NO WAY this isn't somehow ios7 related, thanks a lot APPLE ) I decided to try a restore in recovery mode. After 3 hours and several disconnections... I ended up having to just set it up as a new iPad, as the restore did nothing. Weirdly though... as I was doing the restore in recovery mode.. I noticed I'd gotten up to a 10% charge.. higher than it's been since September, so after setting it up as a new device, I turned it off and plugged it in using the wall charger. 2 hours later and I was up to 38%. Still not great, as my iPad, before ios7 could've fully charged twice in the amount of time it took for me to now get 28% more of a charge. And that's with a fully cleaned out device.. so that really ***** and I'm now more confused than ever.
    But I'm gonna leave it overnight charging and see what I come up with tomorrow. Sadly, when I paid $600 for it in February, I never expected to have to play "wait and see" with it...

  • A proposal - moving some things out of mx.rpc into mx.async?

    Hey guys,
    Just want to get your thoughts rather than jump in and filing a feature request. What do you think about moving a few things that aren't necessarily RPC out of mx.rpc and into a new package (for example mx.async) and removing some of the service-related assumptions? A couple of candidates for this in my mind would be:
    AsyncToken - I use this for all sorts of Async stuff, which is usually waiting on a service, but not always.
    IResponder - This is useful for things such as command chains, and listening in to user actions, and the like. I would also like to see IResponder.applyFault() and IResponder.applyResult() be taken out of mx_internal (and their parameters changed from event types to something else, perhaps Object for result, and Fault for fault).
    And the various impls of IResponder as well :)
    Just an idea that's been bouncing around my head, thought I'd throw it out there and see what you guys think - worth filing a feature request?
    -Josh
    "Therefore, send not to know For whom the bell tolls. It tolls for thee."
    http://flex.joshmcdonald.info/
    :: Josh 'G-Funk' McDonald
    :: 0437 221 380 ::
    [email protected]

    Nice, well while you're in there, any chance we can get FaultEvent from send() dispatching on next frame like a normal event (and on the AsyncToken as well as the WebServie)? I've got some *ugly* workaround code because the fault is dispatched (and handlers invoked) before send() returns, and you can't listen to invocation faults on the AsyncToken like normal events:
                //This code is to catch invocation problems, since Flash has decided to interrupt the flow of the VM for
                //FaultEvent rather than dispatch it on next frame from the token
                operation.addEventListener(FaultEvent.FAULT, invocationFaultHandler);
                //Send the request
                log.debug("Sending request...");
                token = operation.send();
                log.debug("...Send attempt completed");
                //Remove our invocation fault listener
                operation.removeEventListener(FaultEvent.FAULT, invocationFaultHandler);
                //Do we need to send this info on to the token's listeners in a frame or two?
                if (invocationFaultEvent) //Instance-level global
                    log.debug("There was an invoke error, which means the token listeners aren't notified. Will redispatch to them in 250ms");
                    //When we create the timer, we're using a hard listener reference because this helper instance may otherwise be collected before we're done!
                    //So make sure to remove the handler (and kill the timer) on firing!
                    timer = new Timer(250, 1);
                    timer.addEventListener(TimerEvent.TIMER, reDispatchInvocationFault);
                    timer.start();
                return token;
    Cheers,
    -Josh
    On Wed, Oct 1, 2008 at 10:49 AM, Matt Chotin
    <
    [email protected]> wrote:
    A new message was posted by Matt Chotin in
    Developers --
     A proposal - moving some things out of mx.rpc into mx.async?
    I'm not sure the changes are in Iresponder as much as in a new impl class, but we're looking at making the service classes accept an Iresponder as the last arg to send(...) (where we'd look at the last arg and if it's a responder pull it off).  This can make some of the declarative stuff that we're looking at a little easier.  So any APIs we do would just be to assist in the wiring up of all this stuff.
    Not sure when we'll have a writeup for it, a lot of it is do to features in the IDE and we're not sharing those yet :-)  But I'm hoping that I can get that team to provide a writeup in a few days.  Admittedly, the changes we're making are for RPC, not for independence from it, so we'd have to see if it makes sense to do both.
    Matt
    On 9/30/08 5:38 PM, "Josh McDonald" <
    [email protected]> wrote:
    A new message was posted by Josh McDonald in
    Developers --
     A proposal - moving some things out of mx.rpc into mx.async?
    Don't really care about the package name thing, mainly just about changing some of the things that make them less useful when you not actually using mx.rpc.*
    What can you tell us about the changes to IResponder coming in Gumbo? I know the UM extensions to Cairngorm use it for callbacks on generated events. I use it for the same purpose, and also as part of an implemtation of command chains, where each invocation takes a context and an IResponder, and it's up to the impl to call Result or Fault.
    -Josh
    On Wed, Oct 1, 2008 at 4:27 AM, Matt Chotin <
    [email protected]> wrote:
    A new message was posted by Matt Chotin in
    Developers --
     A proposal - moving some things out of mx.rpc into mx.async?
    So it probably would have been better if we had created mx.async or used utils for these before, but I don't know that repackaging is a great idea at this point since it will make migrating code forward harder.
    The applyFault/Result stuff may be reasonable, we're actually looking at some work in Iresponder as part of Flex 4 (more of another impl that we'll provide) so we can see as we do it.  Do other people use these classes and want these kinds of adjustments?
    Matt
    On 9/29/08 7:23 PM, "Josh McDonald" <
    [email protected]> wrote:
    A new discussion was started by Josh McDonald in
    Developers --
     A proposal - moving some things out of mx.rpc into mx.async?
    Hey guys,
    Just want to get your thoughts rather than jump in and filing a feature request. What do you think about moving a few things that aren't necessarily RPC out of mx.rpc and into a new package (for example mx.async) and removing some of the service-related assumptions? A couple of candidates for this in my mind would be:
     *   AsyncToken - I use this for all sorts of Async stuff, which is usually waiting on a service, but not always.
     *   IResponder - This is useful for things such as command chains, and listening in to user actions, and the like. I would also like to see IResponder.applyFault() and IResponder.applyResult() be taken out of mx_internal (and their parameters changed from event types to something else, perhaps Object for result, and Fault for fault).
     *   And the various impls of IResponder as well :)
    Just an idea that's been bouncing around my head, thought I'd throw it out there and see what you guys think - worth filing a feature request?
    -Josh
    View/reply at <
    http://www.adobeforums.com/webx?13@@.59b69e6f/0>
    Replies by email are OK.
    Use the unsubscribe form at <
    http://www.adobeforums.com/webx?280@@.59b69e6f!folder=.3c060fa3 <
    http://www.adobeforums.com/webx?280@@.59b69e6f%21folder=.3c060fa3> > to cancel your email subscription.
    View/reply at <
    http://www.adobeforums.com/webx?13@@.59b69e6f/2>
    Replies by email are OK.
    Use the unsubscribe form at <
    http://www.adobeforums.com/webx?280@@.59b69e6f!folder=.3c060fa3> to cancel your email subscription.
    "Therefore, send not to know For whom the bell tolls. It tolls for thee."
    http://flex.joshmcdonald.info/
    :: Josh 'G-Funk' McDonald
    :: 0437 221 380 ::
    [email protected]

  • Finder and application windows moving in and out rapidly.

    I was on hulu last night on my macbook and all of a sudden all the widow started moving in and out of the screen rapidly. There was nothing I could do to make it stop. Nothing was on the keyboard. Nothing I did with the track pad did anything. I shut it down and let it cool off. It gets pretty hot after an evening of running flash on hulu. After a restarted it it was fine for a while then started again. Has anyone else seen this problem?

    Do you have the correct version of Flash Player installed for your OS version (if your profile is correct)? Also, it would help to update your profile with the model of your MB (processor, RAM, etc).

  • Time out problem in BPS

    BPS friends,
    We have a planning function to copy Versions based with some filters. The copy function takes 5 hours and times out after that. The function is reaching max buffer size as recommended by SAP so we cant increase the buffer size anymore.
    We are on BW-BPS 3.5.
    How can I solve this time out problem? Please respond to me.

    Hi Pat,
    How many record did you copy ??
    Could you restrict the copy in not 1 package ??
    Package per package ...
    I suggest you ..
    e.g. you have restriction by a 0CALMONTH / something ..
    Then,
    You can copy e.g. for January to March, then March to August, etc.
    You can automate it by planning sequence.
    Hopefully it can help you a lot.
    Regards,
    Niel.
    thanks for the points you choose to assign.

  • AirTunes with AirportExpress cut or drop out problems - my solution...

    I buyed 2 of the Airport Extreme one month ago (Firmware 6.3, Itunes 7.1.1), never got them working fine, till yesterday...
    I have A Zyxel ADSL WLAN Router Switch. WPA-PSK as I wanted a secure Network. Both of the AX were connected with static IPs. WLAN was always working fine, but I had many cut outs with airtunes. I wanted a solution with lossles streaming audio with the possibility to connect my Receiver digitally. That's why I bought my first Apple hardware, as I was always told, Apple=Plug'n play. Very frustrating!
    I tried other switches, Routers, WLAN adapters and cards, nothing worked. Airfoil does not support multiple speakers yet, so it's useless for me.
    In the FAQ of the Airtunes, Apple mentioned to use lower security, as some Computers probably do not have enough power to stream music flawlessly. But my Computers really do have enough power! I think the AX does not have enough power to do that. So I created another wireless network with one of my AX. I set the security to WEP-40bit key and joined this new Network with my other AX. Not the best solution, as I'm now connected to the Internet or to the AX to use Airtunes. Cables could fix that problem, but then I could use a wired system instead...
    I use Channel 11 for the AX WLAN (the only clean channel in my area), Multicast to 11, only G mode for Wireless and a 5 characters WEP-40 key and no WDS. Seems to work at the moment.
    I hope this will help others with the cut or drop out problem. If you have a working AirTunes system, please post your setup. Mostly I'm interested in a Setup with working WPA...

    Thanks, I hope I can help others with this annoying problem...
    Sorry, I forgot to write about the RF Interference. Belive me, I spent hours and hours searching for a solution in the Internet and every checkbox the Admin utility offered me to try out... I'm working as a system engineer, and supporting computer systems since the early 90ties, so I'd say I have a bit knowledge about all the networking, WLAN, Audio... In school we had the Apple Mac I with the 12" monochrome monitor and appletalk for networking quite funny!
    But back to the RF interference: At the moment I activated it on both AX I own. I have a microwave, wireless phone and I'm living in a Area with many WLAN access points. I can choose between 6 networks!
    I'm the only one with a network higher than channel 6, so this area is clean at least.
    As my AirTunes do work at the moment, I'm not going to try if I could also deactivate it.
    Next step is to try if I can connect the AX Router to the internet. A connection to my ADSL router should do that, but up to now I had very strange behavior when plugging in a ethernet cable to the AX. If this will work, it will be my final solution, at the moment I only see it as a workaround...

  • TV OUT Problem this is how I solved.

    Well, first of all I cannot  guarantee if this will work for all people with tv out problems. TV with PC I think will always be a BIG headache .
    How I did fix my TV OUT problem. Since I live here in Brazil, people have a problem with the system that is Pal-m. But this is easy to set up, since you just have the screen working on your TV.
    The first thing that I did is to remove completely the most recent NVDIA drive (not the one made for MSI) that is 30.82. I also removed the WDM driver. Since Im using XP I didnt have to reboot 30 times just 20,   , yes 20 reboot times to see if everything was all right, it took me about 1,5 hour of work.
    The second thing was that I started to install the driver that came with my MSI Card (Geforce4 MX-460 TV OUT).  The version was 27.50. The TV out problem was gone. I got a really nice image from the screen.
    Than It came the must boring part.  ;(  I tested all nvidia drives from 27.50 to 30.82. Look the results I got concerning just the nview situation(dual monitors):
    Nvidia 28.32. work with nview.
    nvidia win-xp-2k-2835 work with nview.
    nvidia win-xp-2k-2880 doesnt work with nview.
    nvidia win-xp-2k-2890 doesnt work with nview.
    nvidia win-xp-2k-2911 doesnt work with nview. Not all parts from the driver was updated, someone belongs to 28.90.
    nvidia win-xp-2k-2920 doesnt work with nview.
    nvidia win-xp-2k-2942 doesnt work with nview.
    nvidia win-xp-2k-2960 doesnt work with nview.
    nvidia win-xp-2k-2980 doesnt work with nview.
    nvidia Win2k-xp-29.90 doesnt work with nview.
    nvidia W2K_XP_V29.90 doesnt work with nview
    nvidia Win2k-xp-3020 doesnt work with nview
    nvidia Win2k-xp-3030 doesnt work with nview.
    nvidia Win2k-xp-3082 doesnt work with nview.
    I got all this drivers from a really nice site: 3dchipset .
    Of course most of these are beta drivers and due to my limitation knowledge, I dont know why the nview display stopped to work at version 28.32.
    And the last. The driver 28.90 driver did a really fatal crash on my PC when I was using my web camera and the nview together. It just shut down my PC, at once.  X(
    That all folks

    Yes, that's how iMessage should work. Try this. Sign out of Messages on both devices. Sign back in on your phone and wait until it activates. Go to Settings>Messages>Send & Receive. Make sure Start New Conversations From is set to our mobile number. Then sign in on your iPad using the same Apple ID as you use on your phone. Once it activates, verify the settings. I've got iMessage syncing across my iPhone, iPad and MBA. Every once in a while, there's a glitch but rarely.
    Best of luck.

  • The Video Out Problem...Fixed?

    I know Wikipedia can be edited by virtually anyone with membership and an opinion, but I had to know.
    It said that an itunes update 1.0.2 fixed the video out problem...does that mean that videos can now be connected to a TV and play on the TV? They fixed that?
    I am still ever in the market for the nano, just waiting until the right ammount of money to purchase one. Thanks

    I think it is currently working according to this knowledgebase article: http://docs.info.apple.com/article.html?artnum=300233
    That is, for the new Nano, you can use the older iPod Universal Dock (ie the normal one that has been available for a couple of years) together with an iPod composite video cable or an SVideo cable (ie all currently-available stuff you may have already bought for a previous-series video iPod), OR you can use the brand new "Apple Universal Dock" with the brand new Apple Composite AV Cable or with the (new) Apple Component AV Cable, OR you can use one of those brand new Apple AV Cables directly with the Nano (without the new Apple Universal Dock).
    What you cannot do is connect an old video cable or accessory, which was expecting to get composite video from the RCA/audio jack on the Nano, because it looks like (on the new Nano and the Classic) the audio out jack is now just for audio out and video is only available via the dock connector on the iPod.
    ted.h.

  • SB Xtreme Audio Notebook optical out problem with Home TheaterSystem-HELP!

    JSB Xtreme Audio Notebook optical out problem with Home TheaterSystem-HELP!, I have this sound card connected?(optical OUT) ?to my home?theater system's digital IN ?through the recommended /8in. optical miniplug-to-optical SPDIF cable. Theater system is set correctly to Digital-In mode. I have no sound!
    The cable is a Velocity Toslink-to-Optical Mini Plug digital cable. I don't see any settings in the Creative Console Launcher. The notebook is a Dell XPS M730 (Vista 32).
    I have a PS3, DirecTV, and the SB Xtreme Audio Notebook cable on a hub switch that connects to the system's?one Optical IN. The PS3 and DirecTV sound perfect!
    The sound card works fine with standard PC speakers. I'm at a loss as?to what to try next. I set this whole system up myself, so I'm pretty good at working out the kinks, except this one!
    Karen

    OK. I just went to Control Panel - Sound - Playback - Digital Output Device (SB Xtreme Audio Notebook) - Properties - Advanced. I experimented with different sample rates and bit depths. Clicked the test button and lo and behold - sound from the HTS! I've tried iTunes, PowerDVD (configured to digital output) and YouTube - no sound! Am I missing something really obvious?
    HA! Just backed out to Playback and selected Digital Output Device (SPDIF) and set as Default. Sound is emunating from HTS! Well, that mystery is solved! Who knew.
    Thanks anyway! Any comments or advice will still be appreciated.

  • TS3274 MY MINI IPAD keep jumping from screen to screen and moving in and out

    mini pad keep jumping and moving in and out.

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...

  • IPod Nano Grey Out Problem in iTunes??

    I purchased my iPod Shuffle last year. I installed iTunes in my Window PC and purchased music via the music store.
    A month ago, I purchased a iPod Nano, I added the iPod Nano to iTunes. iTunes will update my iPod Nano automatically when I connect it to my computer.
    However, all the songs in my iPod Nano menu in iTunes appear 'grey out'. I can't do anything like delete, play them etc??
    Can anybody advise me how to solve this 'grey out' problem?
    Thanks,
    Jacky

    Welcome to Apple Discussions!
    If you update automatically, the songs are grayed out, because the songs should be on your computer.
    To delete songs, you can uncheck the songs/podcasts you don't want on your iPod in iTunes. Then connect your iPod to the computer. When it appears in iTunes, go to edit-->preferences. Click the iPod tab, then the music tab under that. Check "Only Update Checked Songs" and click OK. Only checked songs will be put onto the iPod.
    See this for more ideas/tips...
    Deleting songs or playlists from your iPod
    To be able to play songs on the iPod through the computer, delete songs only on the iPod (without having to check and uncheck), and to have songs not grayed out, you would have to manually update. Songs would no longer automatically update onto the iPod. You would have to drag new songs that you want on your iPod onto it (through iTunes)...
    Managing Your Songs Manually
    btabz

  • Are you ever going to fix the "You've been signed out" problem?

    I've gone through forums and your trouble shooting page and I've found a lot of angry customers over thus Creative Cloud "You've been signed out" problem. Fortunately for me, I'm not a customer. I installed it so I could download a trial or premiere with the intention to buy, but now I don't need the trial because this is issue has made up my mind. But I am still curious if you're ever going to fix it?

    This is a user forum please open a problem report over at http://feedback.photoshop.com/photoshop_family/

  • I have Photoshop CS purchased many years ago for a LOT of money.  Other day went to use it, got msg. "computer configuration changed, need to re-activate".  Tried that for days, didn't work.  Cannot call ANYONE to find out problem.  Am not very computer l

    I have Photoshop CS, purchased many years ago for a LOT of money.  Other day went to use it, got msg. "computer configuration changed, need to re-activate.  Tried that for days, didn't work.  Cannot call ANYONE to find out problem.  Am not very computer literate, so don't understand what that means.  LOVE the CS program and know how to use it, so don't want to have to learn something new.  Don't know what to do.  Went to all the big name stores and no one can tell me anything, like what happened to CS or what is replacing it that is the same as CS.  CAN SOMEONE PLEASE HELP!!!     

    jd49034389 wrote:
    down further there is a Photoshop CS2, do I just do that one?
    Yep. That's the one. Make sure to use the supplied key on the download page, not your old one.
    Good luck.
    --OB

Maybe you are looking for