Apologies for complete 'idiot' question..

Been sort of thrown in at the deep end with this app really, but hey ho..
I have a nice crisp company vector logo that I wish to import into FCP.
Saved it as a .ai file and it comes in with the white page background & logo in the middle - no good!
Plonked it into a photoshop file, saved it as a .psd, imported into FCP. This time I get the psd layers showing in the timeline BUT with a nice black box round the vector info - again not good.
Am I presuming too much here and hoping for a simple answer?
I completed a 3 day Apple course yesterday and we never got onto this subject, and subsequent google searches haven't really unearthed much.
Cheers in advance,
Andy

Yeah, this is one of those things - as you tell by the range of suggestions - where there is no simple, single workflow.
If you need to maintain the scalable nature of the vector artwork, drop your .ai file into Motion and work on it there. Once you've corrected things in Reveal Source Media - press Shift-F after you've dropped your file in and uncheck the Fixed Resolution box in the Media tab of the Inspector - you will be able to grow/shrink the file as necessary without the nasty pixelation.
But since you're new to Final Cut Studio and are probably just looking to keep things as simple as possible for a while, next time try a File > Save for Web and Devices out of Illustrator using the PNG-24 preset (transparency should be toggled on by default). It'll be all good when you import the .png file into FCP.

Similar Messages

  • How do I apply programmatic skins for completely custom drawn components of a Flex library project?

    Hello folks,
    I am looking for best practices advice when (1) creating
    custom components and (2) styling and skinning.
    I already know how to skin a component part of the Flex
    framework. I can make a class extending ProgrammaticSkin and have
    my component skinned using CSS to link the component with the
    reference to my custom class.
    However what about those cases when you are completely
    creating a component from scratch?
    Imagine a "Freehand Drawing Canvas" component that allows the
    user to draw on it and has some buttons to set color styles, line
    styles, etc., or imagine a "Screen Flow Gallery" component that
    displays visual objects in a fashion similar to Cover Flow in the
    Mac.
    In many components I am aware you may reuse other components
    part of the Flex framework but I am trying to picture an scenario
    where you would need to draw everything yourself because there just
    isn't something to base it upon so you will end up drawing it from
    scratch.
    To learn how instead of building one of those components I
    mentioned previously I decided to start with something simple that
    would illustrate this like a LiteButton component that will behave
    just like the Flex mx.controls.Button but will extend UIComponent
    and be completely custom drawn.
    The component will have a default look and will also be
    style-able and skin-able. I will provide styles for users of the
    component to modify and regarding skinning anyone can create a
    custom ProgrammaticSkin adding its own drawing logic and link it to
    the component via CSS with the ClassReference applied to the skin
    selector.
    So far so good and it's clear what I want to achieve. I
    actually know how to do most of the stuff here but I have one
    single problem.
    Here is my question, where should I put my custom drawing
    logic? If I do it in the updateDisplayList inside the class
    extending UIComponent it works, however I thought that it would be
    a better practice to do it using programmatic skins, that way I
    could provide different skin themes for my component set.
    The problem is that I can't make the programmatic work in
    this scenario. I tried instantiating the custom programmatic skin
    during the updateDisplayList of the LiteButton component and adding
    it to my display object via addChild but that didn't do anything. I
    also tried creating a "default.css" stylesheet and tried to use
    ClassReference as I would normally do to skin an already existing
    component (or composite component as well) but that didn't do
    anything either.
    So how do I apply programmatic skins for completely custom
    drawn components of my Flex library project?
    I could do it inside the updateDisplayList of the LiteButton
    class extending UIComponent but again I would like to provide
    different theme sets for my components so it makes sense using
    programmatic skins.

    "jbucaran" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello folks,
    >
    > I am looking for best practices advice when (1) creating
    custom components
    > and
    > (2) styling and skinning.
    >
    > I already know how to skin a component part of the Flex
    framework. I can
    > make
    > a class extending ProgrammaticSkin and have my component
    skinned using CSS
    > to
    > link the component with the reference to my custom
    class.
    >
    > However what about those cases when you are completely
    creating a
    > component
    > from scratch?
    >
    > Imagine a "Freehand Drawing Canvas" component that
    allows the user to draw
    > on
    > it and has some buttons to set color styles, line
    styles, etc., or imagine
    > a
    > "Screen Flow Gallery" component that displays visual
    objects in a fashion
    > similar to Cover Flow in the Mac.
    >
    > In many components I am aware you may reuse other
    components part of the
    > Flex
    > framework but I am trying to picture an scenario where
    you would need to
    > draw
    > everything yourself because there just isn't something
    to base it upon so
    > you
    > will end up drawing it from scratch.
    This may help with that
    http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_3.html
    > To learn how instead of building one of those components
    I mentioned
    > previously I decided to start with something simple that
    would illustrate
    > this
    > like a LiteButton component that will behave just like
    the Flex
    > mx.controls.Button but will extend UIComponent and be
    completely custom
    > drawn.
    >
    > The component will have a default look and will also be
    style-able and
    > skin-able. I will provide styles for users of the
    component to modify and
    > regarding skinning anyone can create a custom
    ProgrammaticSkin adding its
    > own
    > drawing logic and link it to the component via CSS with
    the ClassReference
    > applied to the skin selector.
    >
    > So far so good and it's clear what I want to achieve.
    Actually after
    > playing
    > with the weekend and today I know how to do most of the
    stuff but I have
    > one
    > single problem. So here is my question, where should I
    provide my custom
    > drawing logic? If I do it in the updateDisplayList
    inside the class
    > extending
    > UIComponent it works, however I thought that it would be
    a better practice
    > to
    > do it using programmatic skins, that way I could provide
    different skin
    > themes
    > for my component set.
    These aren't mutually exclusive. When you provide a skin with
    a
    TypeSelector, you have to add it to the display list
    somewhere, and this is
    typically done in updateDisplayList or addChildren. I prefer
    to do it in
    updateDisplayList, because you can then change it if the
    style changes.
    > The problem is that I can't make the programmatic work
    in this scenario. I
    > tried instantiating the custom programmatic skin during
    the
    > updateDisplayList
    > of the LiteButton component and adding it to my display
    object via
    > addChild but
    > that didn't do anything.
    Exactly what did you do?
    > I also tried creating a "default.css" stylesheet and
    > tried to use ClassReference as I would normally do to
    skin an already
    > existing
    > component (or composite component as well) but that
    didn't do anything
    > either.
    I've never had any problem using an approach similar to
    this...but I will
    say that I couldn't see any advantage in creating a
    default.css style sheet,
    since it's not really default in the way that the one that
    comes with Flex
    is. It's much more obvious to anyone using your component
    what's going on
    there if you create a style sheet where they're likely to
    spot it.
    > So how do I apply programmatic skins with the default
    look for custom
    > drawn
    > components?
    It seems like your approach is fine, but maybe you've made a
    mistake in your
    implementation.
    > I could do it inside the updateDisplayList of the
    LiteButton class
    > extending
    > UIComponent but again I would like to provide different
    theme sets for my
    > components so it makes sense using programmatic skins.
    You might want to consider also adding an instance of
    HaloBorder to your
    component. That brings a lot of functionality with it.
    HTH;
    Amy

  • WIP - Job Order Pending for Completion Transaction Reprt

    How can we get report - job order pending for completion transaction from WIP module?
    Please give us solution.
    Thanks & Regards,
    PressureJet Systems Pvt. Ltd.
    Edited by: PressureJet Systems Pvt. Ltd. on Apr 7, 2013 9:57 PM

    Can you elaborate your question more?
    Mahendra

  • I can not export photos onto DVD. After I click export, close iPhoto, click Finder, At this point I can't find the file to burn. (copy to be used on Windows) Sorry for the lame question....new to mac

    I can not export photos onto DVD. After I click export, close iPhoto, click Finder, At this point I can't find the file to burn. (copy to be used on Windows) Sorry for the lame question....new to mac

    So it sounds like you are trying to burn a DVD with photos on it so the photos can be either transferred to or displayed on a Windows PC, is that correct?
    For the purposes of this I am going to assume you are using iPhoto '11.
    Gather the photos you want to burn to DVD in one album in iPhoto. This is not absolutely necessary but it sure makes things easier for me.
    Select that album, then go to the File menu and select Export...
    In the dialog that shows up, select the File Export tab. Select the setting you want to use for export. Click the Export button.
    Another dialog will show up. Set the location to Desktop and click the New Folder button. Name the folder something nice and descriptive and click the Create button.
    Click the OK button. Quit iPhoto as the rest of this work will be done in the Finder.
    You will now have a folder on your desktop with that nice descriptive name. Find it and select it. Go to the File menu and from it select Burn "Descriptive folder name" to Disc...
    Insert a blank DVD when prompted.
    Let the finder complete the work and eject the disc afterwards.
    That's it. Best of luck.

  • Setting a Conditional Action for Pre-Test questions: Skipping Content Slides

    OK boys and girls, let's see if this is even possible within one course SCO, or if this a multi-SCO solution (which means I'm toast, because we don't have the multi-SCO aggregator)?
    I want to set up a prescriptive pre-test. In my ideal world, answers to each individual question would either enable or disable the content slides connected to the question. If the user passes the pre-test, they could opt to skip the prescriptive stuff and complete the course. If the user fails the pretest, they would have to view the enabled content.
    Is this even possible in a single SCO world?
    Justenuf

    Jim belongs in that pantheon of good guys as well, so many here have pointed me in the right direction and helped me move forward with the capabilities of this software. And, in that spirit - here's my work around for the pretest/post test in a SCORM 1.2 environment:
    Created an entrance slide that allows opting totake the pretest or not - but only allows you to take it once.
    Created one test (take off the question x of x widget) split it and slide the content in between it. In this case, 10 questions with 5 in each set.
    Titled the first set of questions as a PreTest and the second set as a Post Test.
    Set my passing score at 4 correct. (the user only needs to get 4 out 5 on either set correct to pass - and I'm setting up an action that only allows the user to see the questions they missed if they fail the pretest.)
    Created variables for each "pretest" question and set them at 0. Created on Enter advanced actions on each slide following a question that toggled the variable to 1 if the question was answered correctly  if "CpQuizInfoLastSlidepointScored is equal to 1" then "Assign Question<x> with 1"
    Created an On Enter advanced action for each content area slide "Skip #" that allowed prescription:
    "If Question # is equal to 1 or cpQuizInfoPassFail is equal to 1, then Go to Next Slide"
    Only the content connected to the missed questions in the pretest is seen.
    Copied the same On Enter advanced action the Post test questions and renamed it "SkipPost #" that allowed prescription:
    "If Question # is equal to 1 or cpQuizInfoPassFail is equal to 1, then Go to Next Slide"
    Only the questions related to the reviewed content are seen
    The sum total of these activities is the following -
    The user can choose to take the pretest and complete the course by gettiong 4 or 5 questions correct and jump to the exit page.
         If the user takes the pretest and scores lower than 80%, the content for the missed questions is viewed and the user must answer the questions regarding
         that content. The user passes the course when he/she answers the fourth question correctly.
    The user can choose to view the content, take the post test and pass the course by answering 4 of 5 correctly.
    it's running right in preview, in web browser preview and on my LMS previewer, with one navigation error.
          the error: after failing the pretest, taking the prescribed content and anse wering the questions correctly, the course occasionally jumps to the results page
         and s displays a failure message, then freezes in place. it does NOT happen each time, which is why I am cy urrently scurrying back to my happy place to dwell
         on this mystery awhile.
    Justenuf

  • Scripting for Required Contingent Questions?

    I have a form with a table, and depending on the answer selected in the left-most column, which is a dropdown menu, fields in the will become required.  Sounds confusing when I read this, but what I mean is if someone selects YES from the dropdown menu for rows1 and 2 and NO for 3-6, then the rest of the fields in rows 1 and 2 become required and text has to be added or dropdown menus have to have a valid answer selected while the rest of the table does not.
    The table looks like this:
      Order book?    Author  Title    ISBN\Publisher    Total Requested  Readopt?   Required?
      (Dropdown Y/N)  (Text)   (Text)  (2 Sep. Text Fields)   (Text)     (Dropdown) (Dropdown)
    1.
    2.
    3.
    4.
    5.
    6.
    The answers become required in the sense that they have to be filled out before the form can be submitted, and not in the sense that one answer can only be filled in if the previous is answered.  It might be too much for the people filling out the form to have to make sure the previous field is entered before moving on to the next one.  The entire table is visible already, so I don't need the fields to become visible upon selecting YES, although I see the benefit in this too.  Can I have the scripting formulas for both, like, can I make the fields become visible upon selecting YES (so text can't be entered if they select no) and required to fill in before submitting?
    Oh, another thing I'd like to do is make 1 selection from a dropdown menu not valid.  I have a list of **, YES, and NO.  I want to make the ** not recognized as a valid response.  Thanks for your time and patience.  I realize this question probably belongs in the Scripting forum, so I'll add it there too.

    If you use a field naming convention that places a row identifier at the beginning of the field name, you can do what you want with a single statement in the Validate event of the column 1 combo box. For example, if the field names for the row are:
    row1.author, row1.title, row1.isbn, row1.publisher, row1.total, row1.readopt, row1.required
    The following code can be used as the combo box's Validate script:
    // Validate script for the column 1 combo box
    getField("row1").required = (event.value !== "**");
    Set up the combo box options so that "Commit selected value immediately" is selected.
    You can then use a similar script for the other combo boxes in the other rows. If you stick to the row1, row2, row3, naming convention, you can create a single document-level function that can be called from all of the combo boxes:
    function setRequired() {
        // Get the row ID, which is the fourth character of the field name that called this function
        var num = event.target.name[3];
        // Set the required property of the other fields on the row
        getField("row" + num).required = (event.value !== "**");
    and call this function like this in the combo box's Validate event:
    // Validate script for the column 1 combo box
    setRequired();
    The problem is setting the required value of a combo box (readopt, required), since a combo box always has a non-blank value, unlike a text field. So a better way to handle this is to create a script that scans all the fields in all the rows and checks for completeness. This allows you to create a more user friendly error message and can handle required combo boxes. Post again if you need more help with this approach.

  • HT201363 hi, I don't remember the answers for my security questions and I don't have "send an email to your rescue email address to reset your security questions and answers" when I select "Password and security" on my apple ID. What should I do?

    hi, I don't remember the answers for my security questions and I don't have "send an email to your rescue email address to reset your security questions and answers" when I select "Password and security" on my apple ID. What should I do?

    Hi Roy,
    Contact iTunes support:
    https://getsupport.apple.com/GetproductgroupList.action
    Select your country, complete the prompts.
    Or you can contact them by email:
    https://ssl.apple.com/emea/support/itunes/contact.html
    They usually will get back to you via your regular email within 24 hours.
    Cheers,
    GB

  • Can I track the time it takes to complete each question?

    I know I can track the time for the entire quiz, but can I track how long it takes to complete each question?
    Thanks!

    I know I can track the time for the entire quiz, but can I track how long it takes to complete each question?
    Thanks!

  • HT5312 What if I forgot my rescue email? I got locked out of the Password & Security section for trying my questions too many times.

    I got locked out of the Password & Security section for trying my questions too many times. I was just trying to buy an app and it completely locked me out. Do I have to call iTunes?

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • WMI Writer :: State: [5] Waiting for completion

    How do I get 'System Writer' and 'WMI Writer' out of "State: [5] Waiting for completion"?
    C:\Users\username>vssadmin list writers
    vssadmin 1.1 - Volume Shadow Copy Service administrative command-line tool
    (C) Copyright 2001-2005 Microsoft Corp.
    Waiting for responses.
    These may be delayed if a shadow copy is being prepared.
    Writer name: 'System Writer'
       Writer Id: {e8132975-6f93-4464-a53e-1050253ae220}
       Writer Instance Id: {c9762bc0-1a4e-441d-9287-1bf398649219}
       State: [5] Waiting for completion
       Last error: No error
    Writer name: 'SqlServerWriter'
       Writer Id: {a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}
       Writer Instance Id: {2fe91d80-b228-435f-9fa4-c583866db232}
       State: [1] Stable
       Last error: No error
    Writer name: 'ASR Writer'
       Writer Id: {be000cbe-11fe-4426-9c58-531aa6355fc4}
       Writer Instance Id: {9635656d-b908-4e41-bea1-a454e19e5f6b}
       State: [1] Stable
       Last error: No error
    Writer name: 'BITS Writer'
       Writer Id: {4969d978-be47-48b0-b100-f328f07ac1e0}
       Writer Instance Id: {3a810b02-25ae-4f81-a375-bfe20a1205a7}
       State: [1] Stable
       Last error: No error
    Writer name: 'Shadow Copy Optimization Writer'
       Writer Id: {4dc3bdd4-ab48-4d07-adb0-3bee2926fd7f}
       Writer Instance Id: {dce1819f-65ff-4106-bbcf-71ebc75fc635}
       State: [1] Stable
       Last error: No error
    Writer name: 'WMI Writer'
       Writer Id: {a6ad56c2-b509-4e6c-bb19-49d8f43532f0}
       Writer Instance Id: {a9b527c7-375a-44b3-bc40-48e4d3d38150}
       State: [5] Waiting for completion
       Last error: No error
    Writer name: 'Registry Writer'
       Writer Id: {afbab4a2-367d-4d15-a586-71dbb18f8485}
       Writer Instance Id: {3fad1a53-2860-44bd-9f4c-4acf7b3a7aab}
       State: [1] Stable
       Last error: No error
    Writer name: 'COM+ REGDB Writer'
       Writer Id: {542da469-d3e1-473c-9f4f-7847f01fc64f}
       Writer Instance Id: {c826425d-c7a0-4c1d-9a03-68973ed78f43}
       State: [1] Stable
       Last error: No error

    Hi,
    Thank you for update. I suggest we try the steps below to narrow down the cause:
    1. Open elevated CMD, run "net stop vss && net start vss", press Enter. If there is prompt that VSS service is not started, try "net start vss && net stop vss" press Enter. Run " vssadmin list writers" again, does the same issue occur?
    2. Try to backup VM using Windows Server backup, is there any error message? If so, please let us know the detailed error message?
    3. Restart this server and check if there is any difference.
    4. If the same problem occurs, please help to collect MPS report:
    1) Download proper MPS Report tool from the website below.
    Microsoft Product Support Reports
    http://www.microsoft.com/downloads/details.aspx?FamilyID=CEBF3C7C-7CA5-408F-88B7-F9C79B7306C0&displaylang=en
    2) Double-click to run it, if requirement is not met, please follow the wizard to download and install them. After that, click Next, when the "Select the diagnostics you want to run" page appears, select "General", "Server Components", click Next.
    After collecting all log files, choose "Save the results", choose a folder to save <Computername>MPSReports.cab file. upload the file to Windows Live SkyDrive (http://www.skydrive.live.com/). If you would
    like other community member to analyze the report, you can paste the link here, if not, you can send the link to
    [email protected] (with this thread title or link in the email. Please don’t share documents with this address).
    Thanks.
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your
    question. This can be beneficial to other community members reading the thread.

  • What I can go to iTunes support for complete my transaction ?

    What season to iTunes support do you mean for complete my transaction ?

    Don't understand your question.
    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
     Cheers, Tom

  • Complete idiot on my team.

    I have a developer on my team, and I can't convince him to program in a clean manner. I have spoke to my manager about it, and my manager is just useless.
    Anyways, he has this fascination of using the GUI builder tool for swing panels, which produces pretty horibble looking code. For example there is one section of our application which is a JTabbpane contain 6 tabs, and tables under each tab. The class that has been built is over 7000 lines long, and is a complete mess.
    How would you guys go about convincing this guy that java is an object oriented language, and that does not mean one object. I mean I am blue in the face with him and he is a complete muppet!!! Its funny, I want to rewrite the whole thing but I know he will only start crying to our manager.

    smcmorro wrote:
    Hey, I am only a contractor here, and pretty much don't really care what happens with the project. My initial impression that you were said complete idiot was correct.
    As a contractor you should care, it's your job.
    The fact that you don't means you're not doing your job.
    We have to constantly edit the code and there is absolutely no division between the screen code, and the functional code used to populate the screen. Sounds like most code I've ever seen, especially code created by contractors.
    If the gui builder was used to create the look and feel, etc. and then another class or 2 was used to do the functional manipulation of the screen. I would be ok with that, but its just so all over the place.
    Which is just how gui builders create code, and how people learn to create code in school.
    Most likely all that's needed is some professional education in object oriented design and analysis (courses usually not provided to programmers for some reason).
    I think I will just have to put up with it, cos in the end there ain't much you can do in organizations like this.Wrong attitude. Most organisations and people are quite willing to listen to reason, but won't listen to ranting.
    And as you appear to only be ranting it's small wonder that they don't listen to you, especially given your attitude that you don't care one way or another.

  • HT201363 I have a lot of money on my Apple ID but when I try to buy something it ask for my security questions that I do not remember the answers to. I also don't have access to the email I used to set up my Apple ID but I do know the password how do I fi

    I have a lot of money on my Apple ID but when I try to buy something it ask for my security questions that I do not remember the answers to. I also don't have access to the email I used to set up my Apple ID but I do know the password how do I fix this ?

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (105412)

  • Invoice grouping for completed invoices

    Dear Experts,
    i have requirement where i want to group invoice which are complete and assign an output type for it to get invoice list in the print.
    option i tried.
      As discussed sometime back, i tried with VF21 for invoice grouping for completed inovices.
      Our IDES  allows to group inovices in VF21  those are complete but in my client system it does not allow.
    My VOFA for F2 has LR in Invloce list type in both the machine
    Copy control exisiting for F2 and LR existing in both
    In OVV7  invoice type(F2) is assigned to an invoice-list type(LR)
    only difference i found is FActory calender is assingned to Cusomer in client machine but assigned in IDES
    and in turn FKDAT_RL in VBRK table(VF02-Goto> Header>Header) is blank for completed inpvoicesin IDES. but it is filled in IDES
    is that the reason it is not allowing in client box.
    If so how to go about it, it is not allowing to change FKDAT_RL in VBRK table(VF02-Goto> Header>Header)
    is there any other option other that VF21 where in i can group invoices which are complete and assing out put type
    Kindly help or suggest
    Regards
    Siva

    Hello Siva,
    In order to create an invoice list, it is mandatory to maintain the field "InvoicingListDates" must be filled in the Customer Master.
    Regards,
    Raghavendra

  • HT204088 Dear sirs,  Could you please help me on my problem with my apple ID  I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,  My account have 50$ and stil

    Dear sirs,
    Could you please help me on my problem with my apple ID
    I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,
    My account have 50$ and still didn't buy anything

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (100546)

Maybe you are looking for

  • How can I put an output stream (HTML) from a remote process on my JSF page

    Hello, I've a question if someone could help. I have a jsf application that need to execute some remote stuff on a different process (it is a SAS application). This remote process produces in output an html table that I want to display in my jsf page

  • How can I transfer music and movies from my iPod to my PC?

    I recently lost all of my content on iTunes and have been looking for a way to transfer my content from my iPod over to my PC. I have no idea how I can do it, and my iPod is going screwy, so I need to transfer my content before my iPod finally breaks

  • Unable to Set-Up ePrint for Deskjet 3050A

    Hi, I'ved my HP Deskjet 3050A for some time, however I've recently set it up using Wi-Fi, which I find amazing! Furthermore, I wanted to set up the ePrint service, so that I'm able to print remotely from other devices I use. I followed the instructio

  • Can't enable cookies

    I keep getting informed by Google+ that I need to enable cookies to log in, but I HAVE cookies enabled in all browsers. I checked my Firefox folder, but could not find a profile folder anywhere to check if cookies.sqlt was corrupted. HOW MANY TIMES D

  • Refreshing JLIst

    I'm having a bit of trouble refreshing JList I have a file that stores an arraylist of objects. What happens when the program starts up is the arraylist is deserialized, converted to an array, and then displayed in the JList. I also have 3 other clas