Converting the results of a blend tool back to strokes.

When you blend two stokes to give multiple lines is it possible to make each of those lines into individual strokes that can be edited independently of the points used to blend? I know you can flatten each line to give shapes, however I'd like to be able to edit each line as a stoke to add new anchor points.
Thanks,
Kyle 

Do you mean something like... Object > Expand

Similar Messages

  • How can I convert the variable expression stored as string back to variable expression

    How can I convert the variable expression stored as string back to variable expression?
    I am storing the expression enterd in the TSExpresssionEditControl as simple string and want to convert back to expression since I want to get the data type of that expression.

    pritam,
    I'm not sure what you're trying to do exactly. If you are trying to get the value of a variable and you only have the name of value in a string, then you can use Evaluate() to get its value. If you want the data type, my advise is to use the GetPropertyObject() API method and just pass in the loop up string. Then you'll have a handle to the data object and then proceed from there.
    Regards,
    Song D
    Application Engineer
    National Instrument
    Regards,
    Song Du
    Systems Software
    National Instruments R&D

  • I made some changes to my header, I did not like the results, so I changed them back and now I cannot edit the content of the page.  It is all grayed out..

    I was making some changes to my header file.  I did not like the results of the changes, so I changed them back.  When I did make the change back, I lost the ability to edit the page.

    Unfortunately, a picture of the code is not useful.
    The best way for us to help is if you put a copy of your problem page on a server and post a link for us.
    (rename it to avoid disrupting your live site)
    A less desirable method is to copy & paste your code in a post in the the web forum (not by email)
    https://forums.adobe.com/thread/1615559

  • JSP Servlet and convert the result set of an SQL Query To XML file

    Hi all
    I have a problem to export my SQL query is resulty into an XML file I had fixed my servlet and JSP so that i can display all the records into my database and that the goal .Now I want to get the result set into JSP so that i can create an XML file from that result set from the jsp code.
    thisis my servlet which will call the jsp page and the jsp just behind it.
    //this is the servlet
    import java.io.*;
    import java.lang.reflect.Array;
    import java.sql.*;
    import java.util.ArrayList;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.naming.*;
    import javax.sql.*;
    public *class *Campaign *extends *HttpServlet
    *private* *final* *static* Logger +log+ = Logger.+getLogger+(Campaign.*class*.getName());
    *private* *final* *static* String +DATASOURCE_NAME+ = "jdbc/SampleDB";
    *private* DataSource _dataSource;
    *public* *void* setDataSource(DataSource dataSource)
    _dataSource = dataSource;
    *public* DataSource getDataSource()
    *return* _dataSource;
    *public* *void* init()
    *throws* ServletException
    *if* (_dataSource == *null*) {
    *try* {
    Context env = (Context) *new* InitialContext().lookup("java:comp/env");
    _dataSource = (DataSource) env.lookup(+DATASOURCE_NAME+);
    *if* (_dataSource == *null*)
    *throw* *new* ServletException("`" + +DATASOURCE_NAME+ + "' is an unknown DataSource");
    } *catch* (NamingException e) {
    *throw* *new* ServletException(e);
    protected *void *doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    Connection conn = *null*;
    *try* {
    conn = getDataSource().getConnection();
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery("select post_id,comments,postname from app.posts");
    // out.println("Le r&eacute;sultat :<br>");
    ArrayList <String> Lescomments= *new* ArrayList<String>();
    ArrayList <String> Lesidentifiant = *new* ArrayList<String>();
    ArrayList <String> Lesnoms = *new* ArrayList <String>();
    *while* (rs.next()) {
    Lescomments.add(rs.getString("comments"));
    request.setAttribute("comments",Lescomments);
    Lesidentifiant.add(rs.getString("post_id"));
    request.setAttribute("id",Lesidentifiant);
    Lesnoms.add(rs.getString("postname"));
    request.setAttribute("nom",Lesnoms);
    rs.close();
    stmt.close();
    *catch* (SQLException e) {
    *finally* {
    *try* {
    *if* (conn != *null*)
    conn.close();
    *catch* (SQLException e) {
    // les param&egrave;tres sont corrects - on envoie la page r&eacute;ponse
    getServletContext().getRequestDispatcher("/Campaign.jsp").forward(request,response);
    }///end of servlet
    }///this is the jsp page called
    <%@ page import="java.util.ArrayList" %>
    <%
    // on r&eacute;cup&egrave;re les donn&eacute;es
    ArrayList nom=(ArrayList)request.getAttribute("nom");
    ArrayList id=(ArrayList)request.getAttribute("id");
    ArrayList comments=(ArrayList) request.getAttribute("comments");
    %>
    <html>
    <head>
    <title></title>
    </head>
    <body>
    Liste des campagnes here i will create the xml file the problem is to display all rows
    <hr>
    <table>
    <tr>
    </tr>
    <tr>
    <td>Comment</td>
    <td>
    <%
    for( int i=0;i<comments.size();i++){
    out.print("<li>" + (String) comments.get(i) + "</li>\n");
    }//for
    %>
    </tr>
    <tr>
    <td>nom</td>
    <td>
    <%
    for( int i=0;i<nom.size();i++){
    out.print("<li>" + (String) nom.get(i) + "</li>\n");
    }//for
    %>
    </tr>
    <tr>
    <td>id</td>
    <td>
    <%
    for( int i=0;i<id.size();i++){
    out.print("<li>" + (String) id.get(i) + "</li>\n");
    }//for
    %>
    </tr>
    </table>
    </body>
    </html>
    This is how i used to create an XML file in a JSP page only without JSP/SERVLET concept:
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*" %>
    <%
    // Identify a carriage return character for each output line
    int iLf = 10;
    char cLf = (*char*)iLf;
    // Create a new empty binary file, which will content XML output
    File outputFile = *new* File("C:\\Users\\user\\workspace1\\demo\\WebContent\\YourFileName.xml");
    //outputFile.createNewFile();
    FileWriter outfile = *new* FileWriter(outputFile);
    // the header for XML file
    outfile.write("<?xml version='1.0' encoding='ISO-8859-1'?>"+cLf);
    try {
    // Define connection string and make a connection to database
    Connection conn = DriverManager.getConnection("jdbc:derby://localhost:1527/SAMPLE","app","app");
    Statement stat = conn.createStatement();
    // Create a recordset
    ResultSet rset = stat.executeQuery("Select * From posts");
    // Expecting at least one record
    *if*( !rset.next() ) {
    *throw* *new* IllegalArgumentException("No data found for the posts table");
    outfile.write("<Table>"+cLf);
    // Parse our recordset
    // Parse our recordset
    *while*(rset.next()) {
    outfile.write("<posts>"+cLf);
    outfile.write("<postname>" + rset.getString("postname") +"</postname>"+cLf);
    outfile.write("<comments>" + rset.getString("comments") +"</comments>"+cLf);
    outfile.write("</posts>"+cLf);
    outfile.write("</Table>"+cLf);
    // Everything must be closed
    rset.close();
    stat.close();
    conn.close();
    outfile.close();
    catch( Exception er ) {
    %>

    Please state your problem that you are having more clearly so we can help.
    I looked at your code I here are a few things you might consider:
    It looks like you are putting freely typed-in comments from end-users into an xml document.
    The problem with this is that the user may enter characters in his text that have special meaning
    to xml and will have to be escaped correctly. Some of these characters are less than character, greater than character and ampersand character.
    You may also have a similiar problem displaying them on your JSP page since there may be special characters that JSP has.
    You will have to read up on how to deal with these special characters (I dont remember what the rules are). I seem to recall
    if you use CDATA in your xml, you dont have to deal with those characters (I may be wrong).
    When you finish writing your code, test it by entering all keyboard characters to make sure they are processed, stored in the database,
    and re-displayed correctly.
    Also, it looks like you are putting business logic in your JSP page (creating an xml file).
    The JSP page is for displaying data ONLY and submitting back to a servlet. Put all your business logic in the servlet. Putting business logic in JSP is considered bad coding and will cause you many hours of headache trying to debug it. Also note: java scriptlets in a JSP page are only run when the JSP page is compiled into a servlet by java. It does not run after its compiled and therefore you cant call java functions after the JSP page is displayed to the client.

  • Is there a way to get the result of using multiple blending modes in one object?

    Hello,
    I wonder if there's a way to merge multiple objects with blending modes to one object. Here is the example:
    On the left rhere are three objects with the same appearence but different blending modes(color dodge, normal, overlay), on the right they are overlapped, which are still three object. I'm looking for the way to have the same result as the right overlapped one, but as one object. Having the same multiple objects only for the result of color blending mode uses too much memory for my computer.
    Thank you for your help in advance.

    create one object: then in your appearance panel, duplicate the fill twice. Select the top fill and expand the sub menu, click on opacity, choose blending mode. repeat.
    G

  • Send and See the result Survey Campaign

    Dear All Expert,
    Im completing Survey form and was attach my URL link to the mail form. Now i can test by survey campaign transaction. my questions is:
    1. How Can I send this campaign for lets say i want to send this survey campaign for 50 BP person. FYI i was create mail form and attach the link survey form, in the campaign where tab can be define for this case? how about the action tab function? is any spesific setting there?
    2. later, If I want to see a feed back or result response from my respondent can u tell me how to solve this?
    Many Thanks for ur attention Guru's better if the answer include documentation.
    Rgds
    Karmila

    Dear,
    Thanks for ur respond Gregor. I was try to solve this issue by ur suggestion but Im still confusing, especially in the phase choose "extra and then target group to channel". but for for the point 2 this is I  mean im just make sure if want to converted the result survey by spreadsheet format. (do you think this need to ABAP effort again? cause im get error message for this). Would you give me some documentation for this Gregor?
    Ur answers always helpfull Gregor and give progress for my issue. im waiting for next post in your blog : )
    Rgds
    Karmila

  • Convert query results to a list

    Have a query which returns 20 records or so. I need to
    convert the results to a list and then search through the list to
    populate checkboxes. Simple query which returns 20 records:
    <CFQUERY NAME="GetTest" datasource="test">
    SELECT * FROM data
    WHERE brid = '012345'
    </CFQUERY>
    How can I convert these results to a list so I can use
    listfind?

    <CFSET foo = ValueList(getTest.bar)> converts the
    database field bar to the comma-delimited list foo.

  • I am using Lightroom 5 and am hapy about it, but recently I hav encountered a problem when trying to edit an image in another program, i.e. Elements. I used the clone tool, saved the result and went back to Lightroom to open the image there. I did find a

    I am using Lightroom 5 and am hapy about it, but recently I hav encountered a problem when trying to edit an image in another program, i.e. Elements. I used the clone tool, saved the result and went back to Lightroom to open the image there. I did find a second copy, but this is identic with the one I already had in Lightroom, and I can see noe result of the clone process.

    At the moment I would say it is uncertain whether Acrobat is completely ignoring the change, or whether the changes you are making aren't affecting the ink density. I have a suggestion for a test you could make to see which is the case.
    When editing in Photoshop just add a box or mark on the image, for your tests.
    - If this box does not appear in Acrobat, you know Acrobat is not seeing the edit
    - If this box does appear in Acrobat, you know the problem is that your tool for changing ink densities is not taking effect.

  • I'm a bit confused. Since my original camera format was 720/60p, and I converted the footage to Pro Res422 in order to edit in Final Cut Pro 7, should I convert back to a higher quality format before sending the file to DVD Studio Pro?

    I'm a bit confused. Since my original camera format was 720/60p, and I converted the footage to Pro Res422 in order to edit in Final Cut Pro 7, should I convert back to a higher quality format before sending the file to DVD Studio Pro? If so, which Compressor codec is best to use in order to preserve the original 720/60p?   How do I maintain the highest quality?

    No...ProRes is a high quality format. Finishing format.  Many TV networks take that as a final deliverable. 
    BUT...DVDs aren't high definition...they are SD.  You cannot make a 720p60 DVD with DVD Studio Pro.  Any DVD you make will be SD...720x480.  The only HD DVD format out there is BluRay, and for that you need a BluRay burner.
    As for making a high quality DVD...using the BEST QUALITY settings in Compressor will work:
    #42 - Quick and dirty way to author a DVD
    Shane's Stock Answer #42 - David Roth Weiss' Secret Quick and Dirty Way to Author a DVD:
    The absolute simplest way to make a DVD using FCP and DVDSP is as follows:
    1. Export a QT movie, either a reference file or self contained using current settings.
    2. Open DVDSP, select the "graphical" tab and you will see two little monitors, one blue, one green.
    3. Select the left blue one and hit delete.
    4. Now, select the green one, right click on it and select the top option "first play".
    5. Now drag your QT from the browser and drop it on top of the green monitor.
    6. Now, for a DVD from an HD source, look to the right side and select the "general tab" in the track editor, and see the Display Mode, and select "16:9 pan-scan."
    7. Hit the little black and yellow burn icon at the top of the page and put a a DVD in when prompted. DVDSP will encode and burn your new DVD.
    THATS ALL!!!
    NOW...if you want a GOOD LOOKING DVD, instead of taking your REF movie into DVD SP, instead take it into Compressor and choose the BEST QUALITY ENCODE (2 pass VBR) that matches your show timing.  Then take THAT result into DVD SP and follow the rest of the steps.  Except you can choose "16:9 LETTERBOX" instead of PAN & SCAN if you want to see the entire image.

  • If I compress my iTunes library by converting to 'AAC' will the resulting music still be of CD quality or higher?

    I apologise if this has been covered elsewhere but I am new here and a bit confused by file formats. Basically all of my music existed as MP3 files of 320kbps on my computer. I imported them all to itunes. I have read that if I use the 'convert to AAC' feature in iTunes I will end up with music of the same quality but save a lot of memory as the AAC files are smaller. Other comments imply that would be a pointless move and that the resulting audio quality will be poorer because I'd be converting 'lossy' to 'lossy'-this doesn't mean anything to me lol.
    Basically I want all my music to be of CD quality or better. With that in mind, is it worthwhile me converting all my 320kbps songs to this 'AAC' version or not? If the advantages/disadvantages of this feature could be stated that would also be appreciated!
    Thanks

    Rob,
    Both AAC and MP3 are less than CD quality.  There is no conversion you can do that will raise them to CD quality.  The person who told you it was "pontless" was correct.
    If you want CD quality music, you can go back to the original CDs and re-rip using one of the "lossless" formats:  WAV, AIFF, or Apple Lossless.
    On the other hand, if your current MP3/320 music sounds good, you may want to leave it alone.  Besides people with audiophile equipment and well-controlled listening conditions, most people do not notice a difference.

  • My e-mail has quit updating.  Anybody know why or how to get it started back?  The result is that I dont get my e-mails on the phone.

    My e-mail has quit updating. Anybody know why or how to get it started back?  The result is that I can not get e-mails on my phone.

    Thank you for the info re. the main menu. Your answer I used worked; however, the menu bar all the way across is solid black. The only way I can find out the names on the menu is to point the cursor from left to right over the black bar to find "file" "edit" tools", etc. What do I need to do to get these menu titles to be seen?
    As regarding the GMail --the menu bar used to have an envelope symbol which was white and outlined in red. That disappeared. I googled "mail.google.com" to try to get back my email. This didn't work. I then tried to get a different email address and password--after 8-19 attempts, this never worked. My other email (sbcglobal.net) has never returned. So I don't know where that went or how to get it back

  • How do I convert the MP4 files in itunes back to MP3 files so they can be downloaded on a usb drive to play on a CD player?

    I am not a computer genius.  Somehow, my Itunes files are now in MP4 format.  How do I convert the whole library back to MP3 so I can download on a usb drive to play on the CD player?  Help!!!

    iTunes: How to convert a song to a different file format - http://support.apple.com/kb/HT1550 - including information about different formats and discussion about compression.
    In iTunes11: File > Create New Version

  • Are .mov files usable in PE 13?  If not, can PE 13 convert them to a usable format?  Will the result be usable in a slide show created with Photoshop Elements 13?

    Are .mov files usable in PE 13?  If not, can PE 13 convert them to a usable format?  Will the result be usable in a slide show created with Photoshop Elements 13?

    jayarl
    Please do not duplicate thread. It gets confusing for you as well as for those trying to respond to your question.
    I have replied to your question in your other thread.
    https://forums.adobe.com/thread/1662961
    Please continue the discussions there.
    A moderator will probably delete or close one of the duplicates as soon as seen.
    Just a note...Photoshop Elements 13 and Premiere Elements 13 are standalone products. Each comes with the
    Elements Organizer 13. When both are on the same computer, they share the same Elements Organizer 13.
    ATR

  • My callout toolbar stopped working abruptly.  Restarted computer.  Still doesn't work - how do I get the tool back?

    My callout toolbar stopped working abruptly.  Restarted computer.  Still doesn't work - how do I get the tool back?

    The tool is called a “callout” note.  It places a text box with a leader.  It’s been working just fine until suddenly it stopped working and I get an error message saying “desired operation cannot be performed on this object”.  It doesn’t matter where I try to place the callout.  It simply stopped working.  I have tried restarting Acrobat.  I have restarted my computer.  I have used multiple files to ensure the issue isn’t with a corrupted file.  Nothing works.  The tool simply stopped working.

  • I am trying to download iOS5 on my iPad and this is the message : an error occurred while backing up this iPad (-37). Would you like to continue to update this iPad? Continuing will result in the loss of all content on this iPad

    I am trying to download iOS5 on my iPad and this is the message : "an error occurred while backing up this iPad (-37). Would you like to continue to update this iPad? Continuing will result in the loss of all content on this iPad"  Pls advise what is my next step

    continue to updatae your phone.

Maybe you are looking for

  • Can't Update iPod Touch 1G

    Hello I am currently using an iPod Touch 1G, version: 2.2.1. The problem I am having is that I can't update it. I've gone back to it after not using in a while and it won't allow me to use the free apps that I used to enjoy such as iMob until I updat

  • Getting Exit Code 7 installing Adobe Premiere Pro Cs 5.5 HELP!!

    Hello everyone. I am trying to install my Adobe Premiere Pro Cs 5.5, but keep getting error right in the beginning of the installation. The product I purchased is Adobe Premium Pro Cs 5.5, but I am only needing the Premiere Pro for now, so I am only

  • From DVD to FCP

    Hey guys,  I saw a post for this but it was older and wanted to know if it is still accurate.  I am taking DVDs to edit in FCP.  I am using mpegstreamclip but what is/are the best setting(s) to export?  Thanks

  • Adobe Acrobat X Pro update problem

    I just received and downloaded an update, but now I can't open my Acrobat X Pro or the Distiller.  The distiller boxe briefly flashes on the screen but doesn't open.  Acrobat briefly gets an orange halo around it on my taskbar but doesn't open. 

  • Where is OCA605290.zip in 8iLite download

    I downloaded & installed 8iLite & Forms6i in WIN95. 8i release notes said to "copy OCA605290.zip file from the \WIN32 folder of the Oracle8i Lite CD-ROM" but I can't find it in the un-zipped folder. I found a similar file in Forms6i folder and it wor