Is it possible to create a swatch or style from part of a pasted image?

Good Afternoon,
I'm one of the many (I'm sure) that "jumped right in without floaties" and I have stumped myself this morning. I have an image of my program that I have pasted into photoshop. I'd like to select a certain portion of that image (a titlebar, if you will) and create a swatch or style based off of that selection on the image, that I may then use later on for creating web pages. I have the Master Collection of CS4, so using one software over another shouldn't be an issue.
My initial searching hasn't turned up positive results. I'm hoping it's something really easy that I'm just overlooking. Thanks in advance for any replies.

No, not possible. What you are looking for is similar to symbols and those only exist in Illustrator and Flash. You can also designate such items as editable regions/ library items in Dreamweaver and Fireworks, so they can be reused over and over again. In PS, you will simply have to structure your document accordingly and adapt the content you add to your existing navigation/ mock program UI or whatever, not the other way around.
Mylenium

Similar Messages

  • Is it possible to create a dynamic dispatch VI from parent VI as a template

    Hi all,
    I'm new to LVOOP and wondering if it's possible to create a dynamic dispatch VI from the parent VI as a template.
    For example:
    I've got a Class-method in the parent class. All child-classes use this method except of one child, which needs a little tweak on this VI.
    So I need to overload the VI in the child class.
    When I choose "New -> New Dynamic Dispatch VI" I get an VI based on a template
    (As described by Darren Nattinger here: http://forums.ni.com/t5/LabVIEW/Darren-s-Weekly-Nugget-07-07-2010/m-p/1172483/highlight/true#M510414 )
    Is it possible to get a copy of the parent VI instead that I can tweak ?
    Thanks you in advance!
    Best regards,
    Balze

    An over-ride VI is not that special.
    The input and output classe must be "Dynamic".
    The icon connectors have to be the same.
    The Over-ride VI must have the same name as the parent and be a member of the child class.
    So Save-as add to project but not to class.
    Move to child class.
    Rename.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Is it possible to create cube on t-code from R/3 ?

    Hi,
    there is one t-code in R/3 ZBDS.
    Is it possible to create one simple basic cube with all the fileds this t-code shows and to load data in BW ?
    Thanks,
    KS

    Hi Keral,
    BDS - Business Document Service . You can search for a document that has been stored using the Business Document Service (BDS).
    different tabs for Real estate objects, PM objects, Freight claims object etc. are different areas mainatined in the document finder  . Customization is done here :- In the IMG , choose SAP Web Application Server -> Basis Services -> SAP ArchiveLink -> Document Finder Customizing ->Register Document Areas and Create Aggregated Document Areas.
    Check this out fo rore information.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/3e/8241421b35033be10000000a1550b0/frameset.htm
    You say "In t-code there are different tabs for Real estate objects, PM objects, Freight claims object etc.
    each tab has fields like business entity, object key, document type, created by, created on, changed by, change on etc. business want to create info cube on this fields.."
    Do you want create reports on document finder?
    Thanks

  • Possible to create a randomly generated test from a pool of questions

    Is it possible to create a test which takes, say, 10 questions from a large pool of available questions?

    This is something that is not supported.

  • Is it possible to create a PDF "print" button from InDesign behaviors?

    In Acrobat, there is a way to create a button with a behavior for "print" that will queue the document up for printing. I don't see a way to do this on the InDesign end, though, via behaviors. Something that will export from InDesign and carry over to the PDF. As this is something I'd like to use on every page, adding it to a template would be much easier than manually adding these to each page in Acrobat post-export.
    Any guidance anyone can offer would be greatly appreciated.

    In Acrobat, Print is a button option, however, it only opens the Print dialog box, so the user can set choices and then print.
    Perhaps you'd want to submit an official feature request for a future version of ID at:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    HTH
    Regards,
    Peter Gold
    KnowHow ProServices

  • Is it possible to create a report combining data from 2 reports?

    Post Author: swalker
    CA Forum: General
    We are upgrading the application, ServiceCenter.  We have reports that show our Response and Resolution Metrics.  I have 2 set of reports, one for the old version and one for the new version.  I need to combine the results of both reports into 1 and do calculations on the data from both.  Can this be done with 2 sub reports in the main report that does the calculations?  Can 1 report connect to 2 separate databases?  I am using Crystal Reports v8.5. Is there any documentation on this or sample reports?  Can any one please give me some guidance?  Thanks

    Post Author: swalker
    CA Forum: General
    yangster thanks for the quick reply.  I am not really sure about combining reports, so I looked into what you said.  I tried to create a shared variable on the field that I need to share but that field is a running total and I get an error when I try to run the report "This field cannot be used becaus eit must be evaluated later."    So I am not sure what to do now.  Is there a work around for this?  Thanks for any help.

  • Is it possible to create a CUP request initiated from the ECC backend?

    Hello GRC experts,
      I am hoping to solve a problem by interrogating the HR and SAP users tables in the ECC backend, and then in some cases, creating CUP provisioning requests to delimt specific user roles.  I am not aware of any functionality that allows creation of requests other than HR triggers or manual data entry.  (HR triggers do not satisfy our need as we are doing direct provisioning, so we must explicitly specify roles in the request. ) 
    Has anyone done this before?  Any ideas.
    Thanks,
    Yvonne Davis

    Start with the test option in web service explorer to find out which items you need in the request.
    Roles must still be imported in CUP. You'll need about the exact same configuration in CUP like for manual requests, the web service will basically just fill out the request form.
    Frank.

  • Is it possible to create an image from part of a png image???

    i have an image and i want to create 4 indivdual image from it in which they could be combined to reform the image that i have

    Its actually quite easy, first you create a new blank image the size of the section you need, then you draw the larger image onto the new image so that the section you want starts at the top left corner of the new image. I use the code below, which works fine.
    Image image = Image.createImage("/myimage.png");
    int width = [whatever the width of the new image is];
    int height = [whatever the height of the new image is];
    int x = [x position of where your image section starts];
    int y = [y position of where your image section starts];
    //Creates a new Blank Image where we will draw our
    //section on to
    Image imageSection = Image.createImage(width, height);
    Graphics g = imageSection.getGraphics();
    //set the clip
    g.setClip(0,0, width, height);
    //Draws our larger image onto our new image
    g.drawImage(image, -x, -y, g.TOP|g.LEFT);

  • Is it possible to create a PDDoc object directly from the content stream (or byte array) in memory instead from a physical file?

    I want to read a pdf that has been saved to the database and if it has been signed display the signer's name and the sign date to the user.  If the file is first saved to a physical location I can do this with the SDK/ JSObject it there anyway I can do this without a physical file?  This is part of a C# application.

    OK.
    However, if you are using the SDK, then you are using Acrobat – it just may be doing all it’s work hidden.
    So the plugin that you have installed in Acrobat is therefore also hidden, doing its work behind the scenes, on command of your application.

  • Is it possible to create a DVD of photos that will play on a television?

    Is it possible to create a DVD of photos from iPhoto that will play on a television?

    Yes.  You'll need a video DVD authoring application like iDVD and an external optical drive. I suggest a 3rd party optical drive as the Apple Superdrive is limited to USB 2 which has rather slow through put.  Get one with USB 3 or FW.
    Export a slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  For iPhoto 9.4.3 and earlier select Size = Medium or Large. For iPhoto 9.5 and later selct 480p.  Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Or open iDVD, select a theme, create a slideshow in iDVD and add the photos from iPhoto via the Media Browser in iDVD.
    Follow this workflow to help assure the best quality video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process.
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailer like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago.
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them.
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    There are simpler (in features) video DVD authoring applications available from the App Store.

  • Possible to create detailed and Summary in same crystal report?

    Hello
    I have worked with cyrstal reports back in 2001. Now I am back to creation of reports. I vaguely remember I was able to create summary and detailed reports from one crystal report file. I don't remember if I was using two different stored procedures or not. Can anybody explain if it is possible to create summary and detailed reports from one crystal report file and with one stored procedure. I am guessing somehow I should be able to control behaviour of report - ie. say if user selects detailed report- report will show all records and if user selects summary view then report will show summarized view of same data.
    If its possible how do you do it? Can you explain.
    Thanks a lot.

    There are a couple of techniques with drilling and sub-reports, but what I do most frequently is create a Detail/Summary  parameter for the user to select, and then have a formula that references this parameter to either hide or display a Detail section of the report sepending on the option the user chooses.  My experience is that most users can relate to this approach better, where as driling and sub-reports can sometimes cause confusion for them.

  • Is it possible to create a Solaris DVD?

    Does anyone know if it's possible to create a Solaris 9 DVD from the installation cds? I find it rather impossible, I'm just wondering...
    Maybe a live Solaris cd/dvd?

    If you do this with Toast, the disc will play in any set top player, the WMVHD file will not show up until the user 'explores' the disc in their computer.
    You could do all of this from within DVDSP if you simply add the WMVHD as ROM content - you don't need to use DVD@ccess if you don't want to... doing it this way you can write the project to DLT and avoid some of the pitfalls of using a DVD-R as a master for replication (I take it you are replicating this project?)
    In Toast, click on the Data tab and select the 'advanced' view from the drawer. make sure DVD-ROM (UDF) is selected and then drag the VIDEO_TS and AUDIO_TS folders into the window. Now either add a folder and put the WMVHD in that, or simply drag the footage to the root of the disc. Click the 'Record Disc' button in the bottom right corner, and go from there. You should end up with a disc that can be played in a set top player, with content that can only be played via a computer.

  • Is it possible to create Automatic Scheduled Agreement like Automatic PO

    Could you please explain, is it possible to create an automatic schedule agreement from the PR, PIR (ie.e viz.. as Creation of Automatic Purchase Order)

    Hi
    Why you want to generate the Scheduling agreement automatically?  What is the requirment? Volume is high?
    As Sridhar mentioned you have no option in standard SAP to create automatic scheduling agreement. But you can create delivery schdule via MRP.
    If you have more volume then go for developing the program with ABAP guys.
    if the requirment is for Cut over only then go for LSMW or BDC options.
    Hoe it helps
    Karthik

  • TA24002 Is it possible to create a certificate or log to record disk erasure?

    I wanted to understand if it is possible to create a certificate or log from a Mac after a 7-pass disk erasure is performed. This is required to keep an evidence of disk erasure being performed. Something similar to what Darik's Boot & Nuke does for Windows?

    Following up on BD's post, I see that my Tiger Disk Utility Log file is in ~/Library/Logs, for instance.  It doesn't look like it gets rotated on a regular basis, so it can be pretty big.  It's best to view it in the Console utility, select the data you want to keep, then do a File->Save Selection As... operation on the info.
    Seems to be true also in Mountain Lion, so it's probably unchanged in between.

  • Create a new table style based on an existing table in a document

    Hi,
    In a document I'm working on, there is a specific table. It is made in the past by a colleague, and it has a very suitable format.
    Therefore I would like to use the layout of this table on all future tables in my document (or even in others).
    Is there an option to select my table, and create a new table style with it, so that I can use it over and over again? That would be very helpful.
    I'm working in MS Word, MS Office Professional Plus 2010, on a Windows 7 64-bit OS.
    Best regards, Sietske
    Ps.: I know
    a question like this was already asked, but the answer was quite dissatisfying (because it was not answering the question)
    Pps: Note that I'm now creating a new table style from scratch, so an answer to the above question is not that urgent, but it would still be nice to know for future use.

    you can  use format painter
    i hope that you already know about it.
    Nope, not the right answer. With Format Painter, you can copy the format of the table, but you can't create a new Table Style with it. I am looking for a solution as well.

Maybe you are looking for

  • OSMF Online-only User Group Meeting -- Edwin van Rijkom  |  TODAY Wed, Jan 20 @ 12:00 NOON PST

    TODAY Wed, Jan 20 @ 12:00 NOON PST we are having the third meeting of the online-only OSMF User Group ( http://www.adobe.com/go/osmf_usergroup ). The online-only OSMF User Group is pleased to have a live presentation on OSMF's new features by a devel

  • Yeh... Wont burn purchases

    Recently I bought alot of music off iTunes... problem is.. It doesn't burn. I insert a blank disc into the drive and it reads it(checking media) and then says insert blank disc. So I do insert a new(blank) disc and then it stops checking the disc and

  • Dynamic scrap praposal - Incremental scrap

    Hi all, We are going to implement scrap functionality in one our project. In that project client requirement is dynamic proposal of scrap based on the quantity. We need this scrap praposal prefferably at assembly scrap level. For exampl: 0 - 1000 ord

  • Jump from ABAP to EPORTAL

    HI, I am basically an ABAP Professional having 3+ years of exp in ABAP, i am planning to have EP Certification. i know the basic concept of JAVA. kindly guide me. Reg, Hariharan.

  • How to create table dynamic

    Is it possible to use dynamically configure the JDO at runtime?