Newbie question but need some advice!!!

Hi,
I Have Flash CS3 and am constructing an SWF for a presentation that will be shown on a TV
The presentation is a large video file with audio already edited and finished
Additionally i need a news ticker across the bottom of the screen to disaply scrolling text like news, events etc.
I'm not too familiar with actionscrip but i was thinking about running the video (FLV) into embedded video in the flash file, and then putting the scrolling ticker over this?
I can get any ticker that pulls from an XML and the embedded video i can already do
The only problem is how do i get the SWF to play full screen? what measurements should i use? is there a standard?
It will be running on a windows 7 laptop and hooked up to a 42" LCD TV
Or is there a better way of doing this completely?
Any advice would be greatly appreaciated!
Cheers
G

Thanks for the advice
Unfortunately I dont have After Effects and the ticker will be changing every few days so the XML will be a definite need rather than static.
As for the fullscreen issue - I somehow need to get the SWF to play fullscreen on the laptop without browser window bars as this will then be connected to TV and VGA output used
I assume I can just open the SWF in Flash Player and set to full-screen yeah?
I suppose I can mess with stage sizes to fill the screen as much as possible first so englargement is kept to a minimum

Similar Messages

  • A few questions I need some advice with.

    NOTE If you can put some source code as examples to answer some of my questions then that would be much appreciated.
    1)
    I know how to put an image on an applet but my problem is how do I put an image in a JFrame?... rather than just using the boring set background color options.Example I have matrix.bmp and I want that as my background image on my java application/frame how do I go about doing that.
    2)
    When I try the SCJP certification in x amount of time in the future, if I get a job as a Java programmer - would theye expect me to use a full blow API or IDE, or would theye just let me use a text editior?
    The reason I ask that is because I preffer using a text editor and want to know if i'll have to learn how to use an IDE in the future.
    3)
    I cant seem to find a good native compiler! (I can use a search engine so no smart comments please) i've found two, one is useless and the one I found on sourceforge cant seem to find the correct compiler once I attempt to create a Java exe. (link me a freeware one if you can please)
    4)
    Is it possible to create a Jar file with anything other than an applet? i'm guessing you can but I keep getting a manifest error message... thus an explanation on why mine and a lot of other jar files (even in the java sdk) get that message and how to get around it.
    I have some more questions about socks ect but i'll leave that for now.
    Thanks in advance

    System-error wrote:
    NOTE If you can put some source code as examples to answer some of my questions then that would be much appreciated.
    1)
    I know how to put an image on an applet but my problem is how do I put an image in a JFrame?... rather than just using the boring set background color options.Example I have matrix.bmp and I want that as my background image on my java application/frame how do I go about doing that.Much the same way as you do with an Applet. They're both Containers, I believe
    2)
    When I try the SCJP certification in x amount of time in the future, if I get a job as a Java programmer - would theye expect me to use a full blow API or IDE, or would theye just let me use a text editior?Depends entirely on the organisation, but most probably would provide an IDE
    The reason I ask that is because I preffer using a text editor and want to know if i'll have to learn how to use an IDE in the future.You may well change your mind about that when you've got a sizeable project to deal with!
    3)
    I cant seem to find a good native compiler! (I can use a search engine so no smart comments please) i've found two, one is useless and the one I found on sourceforge cant seem to find the correct compiler once I attempt to create a Java exe. (link me a freeware one if you can please)Re-consider your requirement to do such a thing. It rarely actually happens in the field, since exes aren't portable
    4)
    Is it possible to create a Jar file with anything other than an applet? i'm guessing you can but I keep getting a manifest error message... thus an explanation on why mine and a lot of other jar files (even in the java sdk) get that message and how to get around it.Yep. Follow a simple jar tutorial - there are millions of them around - to see how to build a manifest file

  • When I burn a disc from a playlist in iTunes, the track names and artist info does not display on the disc when friends view/listen to it. This probably is an easy fix, but I need some advice.

    When I burn a disc from a playlist in iTunes on my MacBook, the track names and artist info does not display on the disc when friends view/listen to it. This probably is an easy fix, but I need some advice.

    No, this standard has been implemented for several decades.
    How iTunes remembers audio CDs - http://support.apple.com/kb/TA27785
    It is just conceivable you burned a CD that exactly matched one already in the Gracenote database.  Gracenote uses track count and duration to decide what CD it is you have in a computer.  If you have one that matches that it will label it.  You could conceivably even have one that matches it that is not the correct one.
    This script will only work on Macs:
    http://dougscripts.com/itunes/scripts/ss.php?sp=cdtexttocdinfo - script to use CD-text file on CD to label CD in iTunes

  • Business Delegate pattern - need some advice

    Hi. First let me apologize for the long post. I could see no other way. I�m building a system that quite large and I need some advice. The system is a type of transaction system, let�s suppose a shopping cart. I�m using struts taglibs and tiles for presentation, struts proper for controller, and POJOs for business logic. Also I�m using OJB for my data tier.
    Now I�ve been reading Pro Jakarta Struts (Apress), which BTW is a recommended read to anyone with novice experience in struts and related technologies. I�ve assimilated most of the techniques and patterns described in the book, and most of them make sense to me. However, I�ve hit a snag while reading the Business Delegate and Service Locator patterns.
    The way I had though of building my application before reading the book, was to have a wrapper class, such as the following:
    public class ShoppingCart {
      private IAuthenticationService authenticationService;
      private ITransactionService transactionService;
      public ShoppingCart() {
         authenticationService = new DBAuthenticationService();
         authenticationService = new DBTransactionService();
      public login(String username, String password) {
         String sessionToken = authenticationService.logon(username, password);
         return sessionToken;
      private boolean isValidUser(sessionToken) {
         bolean validUser =  authenticationService.isValidUser(sessionToken);
         return validUser;
      public performTransaction(sessionToken, TransactionVO) {
         if (!isValidUser(sessionToken) {
              throw new AuthenticationException();
         transcationService.performTransaction(TransactionVO);
      public editPreferences(sessionToken, PreferencesVO) {
         if (!isValidUser(sessionToken) {
              throw new AuthenticationException();
         authenticationService.performTransaction(PreferencesVO);
    }My idea was that my wrapper class would isolate all the business logic and could perform login service in case my application was ever to be used with other presentation layer than struts (standalone client, web services). However I believe that this overlaps the Business Delegate pattern and maybe even totally implements it. The way I understand the code I�m reading in the book, they suggest having a BD for each major service such as AuthenticationServiceBD, TransactionServiceBD, etc� However this would break my single point of entry for authenticating users. I really need some advice on my design and how it fits with the BD and SL patterns (or others). I would also like to know what you think/recommend of my authentication strategy.
    thanks in advance
    Raphael

    Thanks for your reply. This however, I understood. My concern is regarding my application in regards to business delegate pattern. You see I have this class (simplified for clarity):
    public class ShoppingCart {
       private ILoginService ls = new DBLoginService();
       private ITransactionService ts = new DBTransService();
       // and so on for all services I offer.
       //  then I mirror all the calls of my private interfaces
       //  and pass them through internally
       public String sessionToken login(String username, String password) {
            ls.login(username, password);
       public boolean addToCart(sessionToken, itemNo) {
            // check session
            ts.addToCart(sessionToken, itemNo);
       //  and so on
    }Multiple questions for this one:
    1) Am I not already implementing the Business Delegate pattern with my ShoppingCart class since all interfaces are private and all calls are mirrored from the wrapper class (ShoppingCart) to the private interfaces? All services are implemented as POJOs and I am not using JNDI at the present so I don't use the ServiceLocator pattern.
    2) I store a reference to the wrapper class (ShoppingCart) in the ServletContext so I can grab it from my Action classes. What do you think of this approach?
    3) How many BDs should an application contain. In my case I use just one. What is the advantage of using more?
    4) I create my own session tokens in case I ever want to use to business code in a non-web applications where sessions are not available readily. This brings about the problem that I can't pass the interfaces directly to the Action classes because the login session needs to be checked before any calls to services. So all methods include a sessionToken parameter which I use to check the session. This way, if I want to expose some of the services through web services, I can still use a login. What do you think of this approach.
    5) Any other remarks are very welcome...
    I really need help with this from an experienced programmer. Most things I can handle on my own but with this type of design issue, books just don't cut it. I need experience. I would really apreciate some feedback.
    Raphael
    ps: I would give all my Duke dollars for this (I only have 30), but I'm not sure how. If you want them I can create a dummy question and give them to you.

  • I need some advice...

    Hi, I'm not quite sure where this topic should go exactly as it isn't about a specific topic. So plz fogive me if it's wrongly placed in your opinion.
    Anyway, I've been a long time fan of Linux and I don't want to have to stop using it. I've just recently converted my whole computer to a linuxbox only system, as I was running winxp(uke) before and couldn't stand it. It would lag during simple tasks like going from one directory to another and for no apparent reason, which aided me in my conversion. Enough about winblows, I don't need to tell you guys why it sucks, we all have our reasons. But there is just one thing bothering me now... and that is gaming. I am a huge fan of gaming and have been doing so for quite some time now (years) and well... gaming on linux hasn't been too pleasant for obvious reasons.
    1) the games I play except for quake3 are written and made to run solely on a winblows workstation.
    2) Wine and Winex3 have limited, but growing support for a range of games.
    3) Lastly the main game I would like to play (Steam CS 1.6) doesn't like to run on linux due to its constant updates, which throws WInex3 out of wack. Where it could have been working the day before but due to the update it no longer runs.
    I'm thinking of just making a partition for winxp(uke) so that I can game, but this isn't something I'm totally willing to do.
    Basically I need some advice and/or suggestions that anyone is willing to share with me.
    Thank you in advance.
    BTW: I'm not new to linux, I've been using it for almost 2 years now and have tried ALL of the distro's you can think of. (Arch is my distro of choice at the moment, along with slackware.)

    Enemy Territory is an excellent game, and it is totally free.
    I haven't played the free game from the US Army, but heard it is really good, and is totally free.
    I bought Return to Castle Wolfenstein, which plays perfectly in Single player mode, but I have some trouble in multiplayer mode (and I'm not an expert either).
    I bought Unreal Tournament 2004, which plays perfectly in both single player and online, but I simply suck at the game.
    I bought Never Winter Nights because I know the company has a linux version you can download once you have a registered copy.  I havent installed it yet, though, been playing UT2004.
    Doom3 is supposedly going to have a linux installer on the CD's, like UT2004 does.
    Anygame that uses OpenGL graphics instead of DirectX will prolly run under WINE or WINEX, or be easy for the original company to port (if they choose to).
    There are some "up and coming" linux only OpenGL games, light flightgear (a flight simulator), and a couple of 'massive online games".
    Betweet RTCW, EnemyT, Never Winter Nights, UT2004, and soon Doom3 - I have enough games to play, and thats without buying winex.
    Fergettabout Windows! You simply don't need it anymore.
    If you are determined to run Windows, get a removeable drive bay, and just swap boot drives when you want to swtich.  Or use GRUB if you want to select from multiple OS's.
    thx

  • Having some serious issues with my iPhone and need some advice

    I'm going to these two issues which have been occuring with me for the past weeks-
    1.) I am facing a problem with my iPhone 5's lightning port or the cable. This started happening all of a sudden; one second my phone is charging, and the other it is not. Even if it is slightly moved from its position, it would stop charging, and further shaking starts it again, so on and so forth. At first I thought the issue might be with my cable, so I asked my friend to bring his lightning cable to my house so we could test that. It happened again- one shake the phone will charge, another shake stops it. (Note that any kind of movement does this, not only shaking) I'm a bit skeptical about his (my friend's) cable too, though- it shows NOT CHARGING on his iPad while it is in fact actually charging. His cable is only 3-4 weeks old though, so this confuses me even more. I think the issue might be with my port, but as of now I cannot draw a valid conclusion to my problem.
    2.) The second problem is that I've noticed my battery drains a **** lot faster now- ever since the first issue started. I manage to get my phone charging by placing it very carefully on the table and it charges overnight. However, when I pick it up in the morning, and read some news, it drains from 100% to 99% in ~60 seconds. This never happened before. Before this, it used to be at 100% for at least 10-15 minutes (might be even more). If I reboot my phone, it shows 100% again, but it still drains a lot faster now. I know because I've been using this phone for the past 4 months now, and I know when it drains and when it does nots
    Please, help! I need some advice as to how I should approach this problem. My phone is in the warranty period, however, I would like to have an expert's opinion first.

    Hello,
    First: I've experienced the same problem with my iPhone 5. I've bought a new charger and it still did the same thing. I went to the Apple Store to get my iPhone checked out and they said that the pins inside my iPhone we're damaged, and I had to get a replacement.
    ~ Josh

  • Dell Live! Value Soundblater card!!!! Need some advice

    I have an old 400 that has this card installed model #CT4780. I have purchased a new Dell E30 and want to install this card in it. I have downloaded the driver pack <FONT face=Verdana color=#ff0000 size=3>Li'veDrvUni-Pack(ENG).exe. This<FONT face=Verdana color=#ff0000 size=3> was<FONT face=Verdana color=#ff0000 size=3> listed<FONT face=Verdana color=#ff0000 size=3> on<FONT face=Verdana color=#ff0000 size=3> the<FONT face=Verdana color=#ff0000 size=3> website<FONT face=Verdana color=#ff0000 size=3> as<FONT face=Verdana color=#ff0000 size=3><FONT face=Verdana color=#ff0000 size=3> the<FONT face=Verdana color=#ff0000 size=3> correct<FONT face=Verdana color=#ff0000 size=3> one<FONT face=Verdana color=#ff0000 size=3> for<FONT face=Verdana color=#ff0000 size=3> XP.<FONT face=Verdana color=#ff0000 size=3> I notice that in the old computer there is a cable from the card to the CD-Rom and also one from the card to the modem. Are these cables need in the new computer? Also will I have a conflict with the integrated sound card that came with the new computer? I have not done anything expect download the driver pack.
    I know some about computers but do not like to install boards and new computers fearing some thing will go wrong. I need some advice and the procedure before I preceded. Any help would be greatly appreciated. Thanks

    Newer operating systems, computers, & audio cards do not require the use of the cable from the CD Rom to the soundcard. It is now handled via the IDE cable. Being that you only upgraded half of this equation (that being the computer and not the soundcard), this may be a "trial & error" situation. I do not have the experience with modem cards to comment on that one.
    Finally, you will need to disable the onboard soundcard via the motherboard's Bios. Look in the MB's manual to perform this action.
    Message Edited by johnston2 on 0-25-2006 06:49 PM

  • Songs disappearing. Need some advice.

    I need some advice regarind my ITunes library. I spent a lot of time importing all my cd's. I now have approx. 14,000 songs now. First I had put them all in as mp3's, then I heard about the quality and smaller size of AAC. I think that is where some duplicates came from. But some how I've ended up with up to 6 of a lot of my songs, at least it is showing 6 copies of many of my song in my ITunes library. But when I go to delete all but one of the songs, through ITunes, sometimes it is fine and sometimes I get the ! icon. I guess even though I left one in Itunes it actually deleted all copies. I did not know I was doing this because it doesn't show the ! icon until you go back and try to select the song. This took days and days to deleted over 6,000 duplicates.
    Now I'm finding some albums are missing songs and some are missing the whole albums even though they show in Itunes. I even have gone through and tried to "FIND" the songs some are really there but most are not. So how to I go about reconstructing the library. Is it best to try and find each one or just wipe (delete) my library clean and just reimport the entire library? I'm talking about reconstructing approximately 12,000 songs and I have no idea how many cd's.
    I just would like to know how you guys would handle this. Thanks for your help.
    Nancy

    miner78 wrote:
    Need some advice....I just bought the new retina MacBook Pro (2,199 model) and after reading about the ghosting or burn in issues that some users are experiencing I am starring to wonder if I made the right decision.  I am still waiting for my laptop to come in so I can still cancel my order.  I'm seriously considering opting for the non-retina MacBook Pro instead.  This will be my first Mac and I will mainly be using it to browse the web and do photo editing (I'm an amateur photographer) I know the non-retina doesn't not come with SSD and wondering how much of difference that makes.  Any advice, suggestions will be welcomed
    That's incorrect:
    Order online and for a fee you can have an SSD.

  • I'm Back! Need some Advice! Rebuild time! 6/19 UPDATE! 2nd UPDATE 7/6/15

    WooHooooooo! Another quick update, only 5 minutes ago I found this link on credit karma http://www.creditonecards.com/pre-qualification.php?C1BSourceID=C1B1  that lets you prequalify for a credit card! Which I have tried many many many times  only to recieve the message sorry we couldn't prequalify you at this time but here are some SECURED cards you may like which sucks! I decided to try one more time at this link and was totally surprised to get preapproval for a platinum card yay! Mind you, this card is probably the worst card to get and I will probably never ever use it, just need it to help with my utilization scores. The fees are high, the rates are high, the balance is low........but oh well I am still doing the happy dance!!!

    izzesparks wrote:
    Hi everyone! Long time no see! Just need some advice on what else I should be doing. I have been a part of this forum for many years now and I have taken and heeded so much advice that my head is about to explode and now I just want to make sure I am not forgetting anything. I tried to keep it short  Last time I was on I hadn’t reached the 600 club yet. But I am here now in the 600 club! Still the low 600’s but its progress. Unfortunately slow progress because a lot has happened since I was last on here. I am now officially divorced. I finally have permanent steady income, no temp services anymore phew. I have had to reevaluate my budget and cut a lot of things out. No cable, no home phone, monitor my electric bill like a hawk and learn to like the darkness, cold in the winter and the heat in the summer. I have an older smart phone, had to do without the latest gadgets and gizmos, which truly hurts my heart because I am an electronic fiend. No tablets here, no high tech laptops. Instead of buying a new car and making payments I bought a really good used gas-efficient car cash, paid in full. But since it’s still a newer car I am paying for full coverage insurance, my only splurge. I have spent this time away from this forum truly taking heed to the lessons I learned on here and reflecting on my situation. I have paid nearly everything off! It took some time but I only have 2 creditors left ‘that I know of’ to pay.One of the creditors has not reported to the bureaus yet but I want to take care of them before they do. Most of the ones I paid have already fallen off because of SOL. I was getting to the point I had the problem where I didn’t just have bad credit, I had NO credit. I hadn’t opened any new accounts until this year. Just today I opened a $500 Secured Personal loan and a few months ago I opened a $300 Secured Credit Card at my credit union. I also applied for a Quicksilver CapOne card and was approved for $300. I just started school this year and there is now a financial aid loan of $1750 that is reporting on my credit report as deferred right now. I tried to prequal for some more but was denied by all of them. So far only quicksilver would approve me.  My plans are to move out of state next May and get an apartment for 6 months while I get the lay of the land and then purchase my FIRST home!! Hopefully everything has aged by then and I have had some CLI’s.  My situation in a nutshell (Transunion was only report pulled) USED CREDITCHECKTOTAL TO PULL ALL 3 FICO REPORTS The good:UPDATES BELOW FROM 7/6/15SDFCU Visa Secured $300 – reporting paid on time every timeQuicksilver Unsecured $300 – not reporting yetSecured Personal Loan $500- not reporting yetUtility- reporting paid on time every timeNEW CARDS ADDED-Cap One Platinum MC Unsecured-not reporting yetVictoria Secret-not reporting yetMarisota-not reporting yetSent a Goodwill email for the Portfolio account listed below 6/1/15, now must wait patiently. UPDATE!! 7/6/15 SENT 3 GOODWILL LETTERS NO RESPONSE. The bad:                                                                                                                                                                                                     DEBT RECOVERY SOLUTIONS- I PAID IN FULL ON 5/27/15 Haven't found a good email contact to send a GW letter, but the search continues....Original Creditor11 VERIZON MARYLAND INCStatus-OpenOpened Date-Mar 06, 2014Balance -$146 Collection Agency-FCOOriginal Creditor HERITAGE WOODSStatus -OpenOpened Date -Jan 21, 2011Responsibility – Joint (THIS IS IN BOTH MY NAME AND MY EX-HUSBAND, AND HE SAYS HE WILL HELP PAY, BUT HE IS NOT GREAT AT FOLLOW THRU)Balance- $1,912 (They have agreed to settle for less than owed for $978)    STARTED PAYMENTS, ASKED SEVERAL TIMES FOR A PFD, EVEN ASKED A SUPERVISOR AND THE RESPONSE WAS A BIG FAT NO, SO I AM GOING TO GO THE GOODWILL ROUTE. Collection AgencyPORTFOLIO Recovery (I ALREADY PAID A SETTLEMENT FOR LESS THAN OWED, ON 5/27/15)Original Creditor HSBC BANK SENT GW LETTER, NO RESPONSEStatus -OpenOpened Date-Apr 15, 2013Balance -$518 Collection AgencyRECEIVABLE SOLUTION (PAID IN FULL ON 5/27/15) THEY HAVE AGREED TO DELETE YAY!Original Creditor MED1 AMERICAN CURRENT CAREStatus OpenOpened Date Jul 25, 2013Balance $101 Collection AgencyUNITED CONSUMERS (PAID IN FULL ON 5/27/15) THEY HAVE ALREADY DELETED FROM ALL 3 CRA'S YAY!Original Creditor MED1 EMERGENCY PHYSICStatus OpenOpened Date Oct 06, 2011Balance -$109 ACS/JP MORGAN (PAID IN FULL ON 2/25/15) Tried several times for a goodwill, no responseOriginal Creditor- Wells Fargo education servicesStatus- closedopen date- 04/2004balance- $3000 ACS/JP MORGAN (PAID IN FULL ON 2/25/15) Tried several times for a goodwill, no responseOriginal Creditor- Wells Fargo education servicesStatus- closedopen date- 04/2004balance- $800 ECMC (TRANSFERRED TO ACS/JP MORGAN) Tried several times for a goodwill, no responseOriginal Creditor- Wells Fargo education servicesStatus- closedopen date- 04/2004balance- $800 ECMC (TRANSFERRED TO ACS/JP MORGAN) Tried several times for a goodwill, no responseOriginal Creditor- Wells Fargo education servicesStatus- closedopen date- 04/2004balance- $3000 A new account was added to my credit report Trident asset - original creditor - Lowe's home improvementI disputed the account since I do not remember ever shopping there, claims I wrote a bad check. I don't even have a checkbook, never have. A new creditor sending letters to me now (boy they sure are coming out of the woodworks, not that I have started paying everyone off) NOT reporting to CRA's yet, going to try to take care of this next week before it does. Sooooooooooo what should I do know????!!!! Thanks in advance for any advice given! 

  • I need some advice about the macbook pro and iPhone 5. I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it th

    I need some advice about the macbook pro and iPhone 5.
    I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it through other mail goes through any ideas how to resize it or what it might take to send it?

    I agree with LowLister, the best option for you to share the video online is to upload it to your online storage account for example : Box, Dropbox, SkyDrive (All of them provide free storage beginning from 2GB).
    You can upload the files which you want to share in this online storage and then they have sharing options in which you'll will get the link of the file to be sent and send the email. You're good to go!
    Tip : You can store multiple files for backup purposes.

  • I'm having trouble with My adobe Creative Suite 4 Design Standard programs opening. They will bounce to open but won't open up and eventually I will need to force quit as they aren't responding.  I'm thinking it may be a font issue but need some support A

    I'm having trouble with My adobe Creative Suite 4 Design Standard programs opening. They will bounce to open but won't open up and eventually I will need to force quit as they aren't responding.  I'm thinking it may be a font issue but need some support ASAP!

    Nobody can tell you anything without proper system info or other technical details like the crash logs.
    Mylenium

  • I am new to LR and needs some advice please

    I have been using Raw shooter and have been shy of going over to LR.I am not a hugely knowledgeable user nor that technically minded. I purchased Scott Kelbys, and Martin Evenings book on LR and am learning as I go, I have been reading several threads on this site and I am concerned about all the negativity I am reading about LR being buggy, with problems?
    and how it seems that Adobe are not doing enough with LR to address any such issues? I am a canon user and issues relating to Canon raw are a particular worry. I am about to put my entire collection from Raw shooter ( On External LAcie drives) into the hands of LR in the future. Is this a wise decision? Please help.
    Also I want to get started if it is the right thing to do, my PC is getting on abit, with 4 yr old tech inside and only 1gb ram. I will soon get somthing more powerful with 2-4 gb ram. my second question is this. I will be running my libraries on external drives only ( LAcie F.A. Porsche).
    If I have imported my images without moving folders, with LR 1.2 loaded on my pc. If later I remove LR from it and reload onto a new PC will it see all my libraries again and know all my settings again without issue and without having to re-do everything. If that is the case then I had better wait until i upgrade the Pc, before I start any work with LR, which will be frustrating.??
    Apologies for a long question, but I am technically challenged. If anyone can assist me in these areas I would be grateful
    Paul Apps

    LR is not buggy and it converts Canon RAW files just fine. I run LR on a PC without any significant issues except speed. LR is too slow in some areas (importing images, browsing thumbs and previews, in particular) compared to other programs such as Photo Mechanic and ACDSee, but it is very stable on a clean computer. Many features need improvement but hopefully that will come in time. Meantime LR is quite good and I bet you will like it. There is nothing better overall.
    You should never risk your images to any software or anything else. Keep a backup copy of your originals separate from the copy you use for LR or other software. Plus LR is a non-destructive editor (pixels are not changed) so your images will be quite safe.
    As Tomrock said you can transfer your database to a new computer without difficulty. I do recommend a new computer, a 4 year old machine with 1gb RAM will probably be frustrating. Other folks say that a quad core processor and at least 2GB RAM is the way to go. My 2 year old dual core Pentium with 4GB RAM is definitely too slow for LR. You might also consider switching to internal hard drives in your new computer and use your external drives for backups. Internal drives for your images and catalog file will be much faster.
    Also Tom's advice about importing a few images at a time and then testing how things work is very good. It is definitely a mistake to import a huge volume of images until your are familiar with LR. It is very easy to delete a small catalog file and start over since a few hundred images imports quickly.
    Good luck.

  • Switching to Mac need some advice

    This year my college is requiring laptops with certain specs and my hp doesn't meet them. Thisgives me an excellent excuse to get a mac. I am in advertising for my major and will need the machine to run cs4 and maybe some light gaming (think the sims that sort) anyway I don't really want to spend more than $2k and have been leaning toward the lowend mbp. Will this suffice or do I need the discrete graphics? I know these questions get asked a lot and I have been reading through some of the others but would appreciate an answer directly if I am about to spend that much cash. Thanks for the advice in advance.

    Do you qualify for a scholarship? Usually if the course/program requires a portable computer their usually is some financial aid available? But in some cases, you have to purchase directly from the "campus store" in order to qualify for the scholarship or discount?
    I recently had the MBP 15 early 2008 model and was pleased. But I just recently bought the MBP 17 09 model and it is sweet. The other concern is screen size. If you will be doing a lot of multi-media, I would not suggest the 13" because you will be cramped for space when you have large 2 page layouts in certain CS4 programs. The base model Graphics will run CS4 just fine on the MBP 15.
    If you have the cash why not just purchase something that you know will last for your entire program length.
    Make sure and check if there is any financial aid available that will offset your costs. Sometimes if they say there isn't that just means you will have to dig a little harder to find some type of scholarship in your area of study. If you find some free $, maybe you can get the pimped out MBP 15 2.66? It is worth a try?

  • Need some advice on a new build for CS5 Web Premium

    I am looking for a powerful PC that I can use mostly for work and some  light video work.  I have been looking at several systems, but I can't  decide if I should get the Core i7 875K, 950 or AMD 1090T for my needs.   I typically have many Adobe CS5 applications open at once like  Photoshop, Dreamweaver, Illustrator and Flash, iTunes, Quickbooks,  Microsoft Work and Excel. I would ideally like to buy a pre-built rig,  but I can surely put together if better.  Below are a few I have been  looking at, but I am unsure about cooling on one of them and about the  875K processor on the other one.  I figured a gaming PC would be fast  and powerful as my needs are behond a standard base config.  I would  like some advice also on a good video card.  Been looking at crossfire  ATI HD 5770, single ATI HD 5870, Radeon 6870, and GeForce GTX 470 and SLI GTX 460. I am not a typical overclocker, but I  can be if it will help performance running apps.  I leave my PC on all  day and night so cooling is a factor.
    Thanks in advance everyone for the advice on this.
    ==========================================
    Approximate Purchase Date: (the closer the better) 
    Budget Range: ($1000-$1500) 
    System Usage from Most to Least Important: (Web Development, Graphic Design, Internet, Movies)) 
    Parts Not Required: (keyboard, mouse, monitor, speakers) 
    Preferred Website(s) for Parts: (newegg.com) 
    Country of Origin: (USA) 
    Parts Preferences: by brand or type (I would like to use an Intel  Core i7 or AMD X6 CPU to power dual Big 27" Samsung LCDs via DVI and  full or mid tower case) 
    Overclocking: Maybe 
    SLI or Crossfire: Maybe 
    Monitor Resolution: (1920x1080 each monitor)
    =========================================
    Here is my latest config.  How does this one look?
    Qty.
    Product Description
    Savings
    Total Price
    1
    COOLER MASTER HAF 932 RC-932-KKN1-GP Black Steel ATX Full Tower Computer Case Item #: N82E16811119160Return Policy: Standard Return Policy
    -$30.00 Instant
    $159.98$129.98
    1
    Western Digital Caviar Black WD1002FAEX 1TB 7200 RPM SATA 6.0Gb/s 3.5" Internal Hard Drive -Bare Drive Item #: N82E16822136533Return Policy: Standard Return Policy
    $89.99
    1
    EVGA 012-P3-1470-AR GeForce GTX 470 (Fermi) 1280MB 320-bit GDDR5 PCI Express 2.0 x16 HDCP Ready SLI Support Video Card Item #: N82E16814130550Return Policy: VGA Replacement Only Return Policy
    $259.99
    1
    Nvidia Free Mafia 2 Game Coupon Item #: N82E16800999247Return Policy: Standard Return Policy
    -$59.99 Saving
    $59.99$0.00
    1
    CORSAIR HX Series CMPSU-850HX 850W ATX12V 2.3 / EPS12V 2.91 80 PLUS SILVER Certified Modular Active PFC Power Supply Item #: N82E16817139011Return Policy: Standard Return Policy
    -$30.00 Instant
    $20.00 Mail-in Rebate Card17-139-011
    $189.99$159.99
    1
    G.SKILL Ripjaws Series 12GB (3 x 4GB) 240-Pin DDR3 SDRAM DDR3 1600 (PC3 12800) Desktop Memory Model F3-12800CL9T-12GBRL Item #: N82E16820231358Return Policy: Memory Standard Return Policy
    $269.99
    1
    LG Black 10X Blu-ray Burner - Bulk SATA WH10LS30 LightScribe Support - OEM Item #: N82E16827136181Return Policy: Standard Return Policy
    $109.99
    1
    Intel Core i7-950 Bloomfield 3.06GHz LGA 1366 130W Quad-Core Processor BX80601950 Item #: N82E16819115211Return Policy: CPU Replacement Only Return Policy
    ASUS Sabertooth X58 LGA 1366 Intel X58 SATA 6Gb/s USB 3.0 ATX Intel Motherboard Item #: N82E16813131665Return Policy: Standard Return Policy
    -$5.00 Instant
    -$14.99 Combo
    $499.98$479.99
    1
    Crucial RealSSD C300 CTFDDAC128MAG-1G1 2.5" 128GB SATA III MLC Internal Solid State Drive (SSD) Item #: N82E16820148348Return Policy: Limited Replacement Only Return Policy
    Microsoft Windows 7 Professional 64-bit 1-Pack for System Builders - OEM Item #: N82E16832116758Return Policy: Software Standard Return Policy
    -$10.00 Instant
    -$30.00 Combo
    $419.98$379.98
    Subtotal:
    $1,879.90
    Calculate ShippingZip Code:    13662   FedEx 3Day Express Saver -- $145.44FedEx 2Day -- $219.19FedEx Standard  Overnight -- $263.21UPS Guaranteed 3 Day Service -- $15.97UPS 2nd Day --  $127.74UPS Next Day Saver -- $135.95
    Shipping:
    $15.97
    Redeem Newegg Gift CardsCard Number:                                          Security Code:
    Apply Promo Code(s):BFMB           
    Click here to clear promotion code(s).
    Sorry, the promo code BFMB you've entered is invalid.
    Promo Code:
    $0.00
    No Interest if paid in full in up to 12 Months. Minimum purchase required.                
    Subject to credit approval. See Terms
    Grand Total:
    $1,895.87

    Here is the final config I am looking to get.  I am just debating the hard drive config and video cards.  I want to be sure my video card will use teh GPU Accelleration and Advance features of Photoshop CS5.  Do you know if the NVIDIA GTX 460 is compatable or should I spend more for the 470?  I will not be gaming much and this pc is used mostly for work on CS5 Web Premium.  How does this all look?  All prices from NewEgg. I have another machine I will backup sata to each evening, so I really want a fast drive for program load and operation and another drive for data.  What is best way to config drives?  Should I get 2 of them and an SSD?
    Qty.
    Product Description
    Savings
    Total Price
    1
    EVGA GeForce GTX 470 (Fermi) 012-P3-1470-AR Video Card
    Item #:N82E16814130550
    Return Policy: VGA Replacement Only Return Policy
    $259.99
    1
    Nvidia Free Mafia 2 Game Coupon
    Item #:N82E16800999247
    Return Policy: Standard Return Policy
    $59.99
    1
    COOLER MASTER HAF 932 RC-932-KKN1-GP Black Computer Case With Side Panel Window
    Item #:N82E16811119160
    Return Policy: Standard Return Policy
    -$30.00 Instant
    $159.98
    $129.98
    1
    G.SKILL Ripjaws Series 12GB (3 x 4GB) 240-Pin DDR3 SDRAM DDR3 1600 (PC3 12800) Desktop Memory
    Item #:N82E16820231358
    Return Policy: Memory Standard Return Policy
    $269.99
    1
    LG Black 10X Blu-ray Burner - Bulk SATA WH10LS30 LightScribe Support
    Item #:N82E16827136181
    Return Policy: Standard Return Policy
    $109.99
    1
    CORSAIR HX Series CMPSU-850HX 850W Power Supply
    Item #:N82E16817139011
    Return Policy: Standard Return Policy
    -$30.00 Instant
    $20.00 Mail-in Rebate Card
    $189.99
    $159.99
    1
    Western Digital Caviar Black 1TB 3.5" SATA 6.0Gb/s Internal Hard Drive -Bare Drive
    Item #:N82E16822136533
    Return Policy: Standard Return Policy
    $89.99
    1
    ASUS Sabertooth X58 ATX Intel Motherboard
    Item #: N82E16813131665
    Return Policy: Standard Return Policy
    Intel Core i7-950 3.06GHz LGA 1366 130W Quad-Core Processor
    Item #: N82E16819115211
    Return Policy: CPU Replacement Only Return Policy
    -$5.00 Instant
    -$14.99 Combo
    $499.98
    $479.99
    1
    Microsoft Windows 7 Professional 64-bit 1-Pack for System Builders
    Item #: N82E16832116758
    Return Policy: Software Standard Return Policy
    Crucial RealSSD C300 CTFDDAC128MAG-1G1 2.5" MLC Internal Solid State Drive (SSD)
    Item #: N82E16820148348
    Return Policy: Limited Replacement Only Return Policy
    -$10.00 Instant
    -$30.00 Combo
    $419.98
    $379.98
    Grand Total:
    $1,879.90

  • Where to begin? Need some advice

    Greetings all,
    I've been poking around here trying to find a topic that matches my question and have not had much luck. Here is my situation.
    I'm back into photography after many years and, of course, am coming from the traditional film and darkroom days and now find myself drinking from a fire hose trying to master digital photography.
    I want to use Photoshop but would appreciate some advice on how best to learn it? Can you folks recommend what you consider the best books for a total neophyte to Photoshop to use to learn the fundamentals?
    Thanks for any advice you can offer.
    Paul McCain
    Saint Louis

    I was surpised to see that was from back in April; I would have said September or October, if pressed to guess when the thread ran. Glad I have it bookmarked, and archived on my hard drive.
    If it ever
    would
    be considered for an addition to the FAQs, I hope someone asks me first, because there are a few things I'd like to add and clarify before it gets all sticky.

Maybe you are looking for

  • Payment Advice with PMW & DTAUS0

    Hi We have a payment method which is using PMW. DTAUS0 is the format being used for this particular payment method. We would like to generate a payment advice only if 6 invoices are paid together. Do we really have to copy DTAUS0 and  reduce the numb

  • Macbook audio problem

    how can i fix the audio of my macbook so i can hear two things at the same volume. whenever i am facetiming with someone on my macbook, the music that i am listening too on itunes goes to a very low volume and i cant even hear it. it recently started

  • Cannot view order tracking page for items ordered from Apple store!

    I have just ordered a Mac Mini from the Apple UK store, and the order page shows it is being handled by "FLEX POSTAL & HUB NL", whose tracking page is at https://www.iec-logistics.com/apps/tracktrace/trk_tracking.asp. The problem is that when I enter

  • Why won't my HP Photosmart C7280 work with Maverick

    I have Maverick OS X 10.9.1 installed on my IMac. Since installing it the scanner will not save scans in PDF format. When I deleted the printer/scanner and tried to reinstall it seems to go well, but when I scan a document all I get is a pdf that whe

  • Resumable feature

    I know in Oracle 9i the RESUMABLE feature works for tablespace space issue but my concern is this feature detects space issue for temp and rollback or undo tablespace? -bala