Define several Classes of liaison

I have trouble getting my links appear different from the default blue appearance underlined, even after I set a link for the specific class style. Is there something that I am missing? I stuck my styles below for you to review. Thank you much in advance.

Quote:
Posted by: djdk224
I have trouble getting my links appear different from the default blue appearance underlined, even after I set a link for the specific class style. Is there something that I am missing? I stuck my styles below for you to review. Thank you much in advance.

Quote:
Posted by: djdk224
I have trouble getting my links appear different from the default blue appearance underlined, even after I set a link for the specific class style. Is there something that I am missing? I stuck my styles below for you to review. Thank you much in advance.

Hey people, regardless of my question, I thought about it. Turns out that I just forgot to apply the class to the link.

Tags: Dreamweaver

Similar Questions

  • How to create several classes of cascade?

    Goal: Create the button to start and stop the service.

    Situation: One button works.

    However, whenever I click on another button, the button does not work.

    Question: how to create several classes of cascade?

    or something wrong in my code?

    Mini code:

    Calls a CPP QML.

    ApplicationUI::ApplicationUI (bb::cascades:Application * app): QObject (app)

    {
    QmlDocument * qml = QmlDocument::create("asset:///main.qml").parent(this);

    CameraWrapper * wrapper = new CameraWrapper();

    QML-> setContextProperty ('wrapper', wrapper);

    AbstractPane * root = qml->() createRootObject;
    App-> setScene (root);
    }

    And then, QML calls another RPC.

    import bb.cascades 1.0

    {Page}
    {Of container
    layout: {DockLayout}
    }
    Button {}
    text: qsTr ("Start")
    onClicked: {}
    wrapper.startRec ();
    }
    }
    Button {}
    text: qsTr ("Stop")
    onClicked: {}
    wrapper.stopRec ();
    }
    }
    }
    }

    The main CPP:

    #include "cam.hpp".

    using namespace bb::cascades;

    {CameraWrapper::CameraWrapper()}

    int CameraWrapper::startRec() {}

    This button works.

    }

    int CameraWrapper::stopRec() {}

    This button does not work.

    }

    The main.hpp

    Class CameraWrapper: public QObject
    {
    Q_OBJECT
    public:
    CameraWrapper();
    Virtual ~ CameraWrapper() {}

    Q_INVOKABLE
    int startRec();
    int stopRec();
    };

    Thank you for your attention,

    Finally, we use the thread to solve the problem.

    Solution:

    loopWrapper (void * test) {void *}
    CameraWrapper * a = (CameraWrapper *) test;
    a-> startRec();
    return null;
    }

    setFlagWrapper (void * test) {void *}
    CameraWrapper * b = (CameraWrapper *) test;
    b-> setFlagFalse)
    return null;
    }

    void * CameraWrapper::setFlagFalse (void * arg) {}
    exit_application = false;
    fprintf (stderr, "Flag changed to false\n");
    return arg;
    }

    void CameraWrapper::runLoop() {}
    pthread_create (& thread_a, NULL, & loopWrapper, (void *) this);
    }

    void CameraWrapper::runSetFlag() {}
    pthread_create (& thread_b, NULL, & setFlagWrapper, (void *) this);

  • Apply several Classes

    2014 CC of Dreamweaver, you can choose from the menu set class > apply several Classes. The set class is an option in 2015 of Dreamweaver, but multiple Classes to apply is not. I'm trying to follow the steps of a book for an assignment. In 2014, I'd choose apply several Classes and then in the dialog box I verify the container class, and then click OK. How to do this step even in 2015?

    Sorry, he's on a CC2015

    You can return to an earlier version of this project.

    1. log-in to the creative cloud desktop application.

    2. click on applications > applications.

    Then, go to previous Versions

  • Trouble woring with several classes.

    Hello.

    Do you know where I can find out who is the straight dope on the use of the classes?

    I'm having a few problems at the moment with several classes - but I think that the main problems is that I don't really know how to work with multiple classes.

    Right now I have 4 classes:

    ProjectOne

    ProjectOneText

    ProjectOneVideos

    StageElements

    I have all this in the same file called "asFiles". I can get a single class (ProjectOneText) to load via the ProjectOne class. But I can't get 2 classes to load in the ProjectOne class.

    It is another question, I tried to sort all day.

    I probably got it all wrong... but that's why I need help.

    I appreciate any help you can give me!

    Try to comment out this line and see the results

  • Identify several Classes in particles classifier

    Hey guys!

    So, I do this VI that differentiates a nut and a washer and a screw. I use the classification of particles for the same. The problem lies here. I want the program to respond only to a particular type of object, even when there are several objects in the image. The IMAQ classify VI alone gives me a unique class of an image where objects of all 3 classes!

    Can someone help me find a way around this problem? I enclose an excerpt from my VI below, as well as the VI.

    Yes, sorry, I found the solution. A lot of my embarrassment, it was there before me. All I had to do was the result of matches of the wizard of vision and the search for the string in the table.

  • Open to several Classes of javaFX is impossible

    Hello!
    I want to open several screens of javafx, each of them is a class with an example from the book.
    But im having problems in doing this.

    Only, I can do a project for each screen?

    Here is the screenshot:
    http://ImageShack.us/photo/my-images/526/duvidajavafx.jpg/

    I've tried several things, none has worked so far.

    Here is a summary of what your code is doing:
    1. you create an instance of the Pagina16 class.
    2. you will get back the class Pagina16, which is currently null and scene recording it ss in your main class (which will always be null)
    3. you start JavaFX.
    4. control between the start of the hand method.
    5. you call step primary setScene to assign the ss (which is always set to null).
    6 display. you the scene.

    I'm a little unclear as to what is the point of the Pagina16 class. Also, you try to use the stage of the Pagina16 before it has been initialized (which is zero). Even if you had called code Pagina16 startup to initialize this scene, the fact remains that a scene can be shared between two steps. If you try to do what I think you are, it would work better like this:

    public class Main extends Application {
    
        /**
         * Since we need to create two scenes that contain the same elements, we will need some sort of factory method.
         * For simplicity, I am just using a static method that returns a new scene.
         */
        static Scene createScene() {
            //Create the root node.
            Group root = new Group();
    
            //Create the new scene.
            Scene scene = new Scene(root, 550, 250, Color.LIGHTBLUE);
    
            //Curva Cúbica
            CubicCurve cubiccurve = CubicCurveBuilder.create()
                    .startX(50).startY(75)
                    .controlX1(80).controlY1(-25)
                    .controlX2(110).controlY2(175)
                    .endX(140).endY(75)
                    .strokeType(StrokeType.CENTERED).strokeWidth(1)
                    .stroke(Color.BLACK)
                    .strokeWidth(3)
                    .fill(Color.WHITE)
                    .build();
            root.getChildren().add(cubiccurve);
    
            // Sorvete
            Path path = new Path();
            MoveTo moveTo = new MoveTo();
            moveTo.setX(50);
            moveTo.setY(150);
    
            QuadCurveTo quadCurveTo = new QuadCurveTo();
            quadCurveTo.setX(150);
            quadCurveTo.setY(150);
            quadCurveTo.setControlX(100);
            quadCurveTo.setControlY(50);
    
            LineTo lineTo1 = new LineTo();
            lineTo1.setX(50);
            lineTo1.setY(150);
    
            LineTo lineTo2 = new LineTo();
            lineTo2.setX(100);
            lineTo2.setY(275);
    
            LineTo lineTo3 = new LineTo();
            lineTo3.setX(150);
            lineTo3.setY(150);
            path.getElements().add(moveTo);
            path.getElements().add(quadCurveTo);
            path.getElements().add(lineTo1);
            path.getElements().add(lineTo2);
            path.getElements().add(lineTo3);
            path.setTranslateY(30);
            path.setStrokeWidth(3);
            path.setStroke(Color.CHOCOLATE);
    
            root.getChildren().add(path);
    
            //QuadCurva Create a Smile
    
            //Outer Donut
    
            //Donut Hole
    
            //Make a Donut
    
            //Add Drop Shadow
    
            //move Slightly Down
    
            //Now that we have created the scene, return it.
            return scene;
        }
    
        public static void main(String[] args) {
            //Initialize JavaFX and run the rest of the start up code.
            Application.launch(args);
        }
    
        @Override
        public void start(Stage primaryStage) {
            //Set the primary stage to use a scene created from the factory method.
            primaryStage.setScene(createScene());
    
            //Create a second stage.
            Stage anotherStage = new Stage();
    
            //Set it to use a scene created by the factory as well.
            anotherStage.setScene(createScene());
    
            //Make both stages appear.
            primaryStage.show();
            anotherStage.show();
        }
    
    }
    
  • Generic limits for several classes

    I have a class called shape and 5 subclass called square, Triangle, circle, Rhombus and Rectangle. I want to do a generic class that is bounded. I want to type T to accept a square, Triangle, circle and their respective subtypes. I don't want T to be able to accept a diamond or a Rectangle.

    How do I do that?

    I tried this, but it doesn't seem to work properly.
    public class GenericShapes < T extends square, Triangle, circle >

    Published by: SquareBox on March 25, 2011 10:08

    SquareBox wrote:

    I know semi – you can do that. Is there a real reason why you would need that?

    Suppose you need to process orders. You have called superclass for all products of the company. The company sells computer parts. You want to make a list of all parts of the computer that are sold. The company also makes the cheese. You want to make a list of all the objects of cheese that are sold. You do not want parts of computer in the list of cheese and you don't want cheese in the list of computer parts.

    If this analogy is accurate, then there must be something on these 3 shapes that go together what they have in common that the other 2 do not share. In other words, they are examples of a certain type which are not the other 2. This is precisely the case for another interface - if marker or normal - that identifies this type. This interface may or may not extend to form, depending on whether it is a property of the 'form is', or something completely different. For example, if it is RotationalSymmetry90Degrees, it must extend the form. If it is StuffMyGrandmaLikes, it should not.

    Then share what property these 3 forms that the other 2 are not?

    You are new to the company, and the boss says you need to use these existing classes. You can't change them because it will screw everything up. It will tell you you need to do a generic class that excludes all types of monitors, devices, hard disks, ect... but without cheese. To make it more difficult that you are NOT authorized to create a superclass called ComputerParts. The boss wants to inherit everything from product. Product may be the only supertype in the program.

    I'm not going to dig deep enough into the analogy to understand if you say that you can't create another interface for the forms 3 to implement. If it is in fact what you say, it is an artificial constraint, then I don't know what you're instructor is on everything he's trying to teach you, and what are the other artificial constraints may be present, so I'm out.

    What would you do to fix this? In addition to tell your boss that he is a nut.

    In the real world, tell him he's wrong. In artificial medium such as coursework, this would depend on a lot more details that I don't know and am not interested.

    I tried several approaches. I want to just do something like this but T can range from diamond. I don't know how to write syntax for this. I'm sure it's possible

    Why do you have to be sure that it is possible? Just because you want to be it?

  • Several classes of documents?

    Hey guys,.

    I'm just getting into flash and I would like to know how run you several as3 since the main .fla file files?

    Is it possible to use more than one document class file?

    Thank you

    Chris

    I believe that you can have only one class of document set for a file, but you can import all other file of class/.as you need.

  • Defining a class of assets to the menus to navigate on the pages of models

    Hi, I want to specify a class 'active' in the menu navigation for the current page, to show the user what page they are on. However, my site is created using a template, so I'm stuck on the code for the menu. I want to leave the menu attached to the model. Is it possible to define an active class?

    Couple of solutions stated here

    http://forums.Adobe.com/message/3672418

  • Extraction of several classes of a SWF using contentLoaderInfo.applicationDomain.getDefinition

    I build a Flash 10 channel mixer/remixer.  Users can select a 'song' to load from an xml based on the drop-down list at the top of the application area.  In the document class, there is a function that takes the item selected from the drop-down list box and load in an external swf file, which is used just like a library for the 10 sounds of a song in particular.   I then extracted from each of these sounds by their class name ("Track 1", "Track 2", "Track3", etc.) and send them to their respective objects of 'MixerChannel '.  As you can see, the following code in the "initHandler' block is quite long and redundant.  Is there any other way/shortcuts that I can use to reduce the code a bit?

    initHandler(evt:Event):void private function

    {

    var sndClass: Class = Class (this.loaderInfo.applicationDomain.getDefinition("Track1"));

    newSound = new sndClass();

    Mixer1.TRACK_1.setTracks (newSound);

    var sndClass: Class = Class (this.loaderInfo.applicationDomain.getDefinition("Track2"));

    newSound = new sndClass();

    Mixer1.TRACK_2.setTracks (newSound);

    var sndClass: Class = Class (this.loaderInfo.applicationDomain.getDefinition("Track3"));

    newSound = new sndClass();

    Mixer1.TRACK_3.setTracks (newSound);

    etc...

    }

    In addition, this part seems a little strange to me because I still redeclarant 'sndClass ':

    var sndClass: Class = Class (...)

    I did it by accident, but it does not work.  In fact, if I change almost anything, it does not!

    Any help or advice on this would be greatly appreciated!

    Thank you

    Matt

    Oops, that was a mistake.  use:

    Define maxtracks, use:

    private void initHandler(evt:Event):void {}
    for (var i: uint = 1; i<>
    setTracksF ("Track" + i.toString (), i);
    }
    }

    private void setTracksF (s:String, i: uint) {}
    var sndClass: Class = Class (this.loaderInfo.applicationDomain.getDefinition ();
    newSound = new sndClass();
    Mixer1 ["TRACK_" + i.ToString ()] .setTracks (newSound);
    }

  • I have to define several of the FIFO to synchronize a master loop at three other parallel loops?

    If I have a single loop to generate a waveform and I mean, three other parallel loops to extract the values from this first loop via a FIFO defined by VI, must I place three separate FIFO components 'Write' (essentially by defining three different FIFOs) on the first lap which correspond to the three elements of FIFO 'Read' in each of the three loops accessing data of the first loop?

    The problem with the help of a simple FIFO, is that when a value is read, the value has disappeared.  The other loops will not see this element.  And since it looks you speak too well of FPGA, you would have to worry about arbitration as well.

    You need a different FIFO for each loop that you send.

  • With the help of several classes and create an object of a class and calling its method in a different class.

    Creating a new class, I need to move my main method class SaveDate DynamicTest class. Below I've listed the code of both classes. The goal is to be able to run my class DynamicTest program. I need help to understand the process of moving my main method of a different class and creating an object of a class and calling its method.

    public class {SaveData

    private public static final map < String, Object > myCachedTreeMap = new TreeMap < String, Object > ();

    public static final List < String > getLines (final String resourceParam, final Charset charset) throws IOException {}

    System.out.println ("please:" + resourceParam);

    If {(myCachedTreeMap.containsKey (resourceParam))

    Use the file cached, to avoid a further reading.

    System.out.println ("found in memory:" + resourceParam);

    }

    else {}

    Load the file from the disk

    System.out.println ("found in memory:" + resourceParam);

    }

    Returns a null value.

    }

    Public Shared Sub main (String [] args) throws IOException {}

    String target_dir = "C:\\myfiles\\config\\en";

    Line = "C:\\myfiles\\config\\en\\output.txt";

    File dir = new File (target_dir);

    File files [] = dir.listFiles ();

    If (file == null: files.length < 1) {}

    System.out.println ("file list is empty...");

    return;

    }

    Open the Printwriter

    PrintWriter OutputStream = new PrintWriter (output);

    try {}

    for (textFile file: files) {}

    If (textFile.isFile () & & textFile.getName () .endsWith (".txt")) {}

    readFromDisk (textFile);

    }

    }

    }

    {Finally

    outputStream.close ();

    }

    String fileNameFromCache = "en_synonyms.txt";

    Sheet1 = myCachedTreeMap.get (fileNameFromCache) object;

    System.out.println (fileNameFromCache + ": \n" + "Sheet1");

    }

    @SuppressWarnings ("resource")

    private static Sub readFromDisk(File textFile) throws FileNotFoundException, IOException {}

    BufferedReader InputStream;

    inputStream = null;

    String content = "";

    try {}

    inputStream = new BufferedReader (new FileReader (textFile));

    content = readFile (textFile);

    System.out.println ("bytes read =" + content.length ());

    Save the content

    FileContentsObject Sheet1 = new FileContentsObject (System.currentTimeMillis (),

    textFile.lastModified (), content,

    textFile.getName (),

    getLines (null, null));

    Add to the map

    myCachedTreeMap.put (textFile.getName (), Sheet1);

    }

    {Finally

    If (inputStream! = null) {}

    inputStream.close ();

    }

    }

    }

    private static String readFile(File f) throws FileNotFoundException, IOException, UnsupportedEncodingException {}

    Text of StringBuilder = new StringBuilder (1024);

    read int, N = 1024 * 1024;

    char [] buffer = new char [N];

    BufferedReader br = null;

    try {}

    BR = new BufferedReader)

    (new) InputStreamReader

    (new FileInputStream (f), 'UTF8'));

    While (true) {}

    read = br.read (buffer, 0, N);

    If (read > 0)

    Text.Append (new String (buffer, 0, read));

    if(Read < N) {}

    break;

    }

    }

    }

    {Finally

    If (br! = null)

    Br. Close();

    }

    Return text.toString ();

    }

    private static final class FileContentsObject {}

    private long cachedTime; currentTime

    private long lastModifiedTimestamp;

    private string content

    List < String > lines;

    private String fileName;

    public FileContentsObject (long cachedTime, long lastModifiedTimestamp,

    Content string, String fileName, List < String > lines) {}

    this.cachedTime = cachedTime;

    this.lastModifiedTimestamp = lastModifiedTimestamp;

    This.contents = content;

    this.fileName = filename;

    This.Lines = lines;

    SimpleDateFormat sdf = new SimpleDateFormat ("MM/dd/yy hh: mm :"); ")

    System.out.println ("time & Date:" + sdf.format (cachedTime));

    System.out.println ("' last modification timestamp:" ")

    + sdf.format (lastModifiedTimestamp));

    }

    /**

    *

    * @return the lines of the file

    */

    List < String > getLines() {}

    Return this.lines;

    }

    public String toString() {}

    "return"Sheet1 {}"+" fileName =' ' + filename + '------"+", content = "" "

    + content + "\"+ ", lastModifiedTimestamp ="

    + lastModifiedTimestamp + ', CurrentTime & Date ='

    {+ cachedTime + '}';

    }

    }

    }

    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    public class DynamicTest {}

    Public Shared Sub main (String [] args) {}

    Game characters charset = Charset.forName("UTF-8");

    try {}

    List < String > = CacheData.getLines lines ("en_synonyms", character set);

    If (rows! = null) {}

    System.out.println ("number of rows:" + lines.size ());

    for {(String ligne: lines)}

    System.out.println ("DynamicTest:" + line);

    }

    }

    } catch (IOException e) {}

    e.printStackTrace ();

    }

    try {}

    List < String > = CacheData.getLines lines ("en_stopwords", character set);

    If (rows! = null) {}

    System.out.println ("number of rows:" + lines.size ());

    for {(String ligne: lines)}

    System.out.println ("DynamicTest:" + line);

    }

    }

    } catch (IOException e) {}

    e.printStackTrace ();

    }

    }

    }

    I have read and watched videos about the creation of an object of a class and calling its method in a different class. I'm still confused on how to do it properly. By using the code below if someone can explain how to properly call the method of objects from my hand.

    Huh? You have NOT posted any 'hand' or any 'method of objects '.

    If you need help with the code, you need to view the code.

    The Java tutorials has dozens of trails "Classes and objects": what they are, how to create and how to use them.

    https://docs.Oracle.com/javase/tutorial/Java/javaOO/classes.html

    1. create an instance of a class

    2. call to one or more of the public methods of this class

    If the class has public static methods, you don't need to create an instance first.

    I suggest that you work your way through these tutorials. They include the WORKING example code.

  • Divide the class into several classes (simple fix I think)

    Here's the class, images and library for blueJ in a .rar file:
    http://www.mediafire.com/file/467dunvcmtfd67f/Ucigame_pong.rar

    If you don't use blueJ or want just the code, it's just a class:
    import ucigame.*;
    
    public class Pong extends Ucigame
    {
        Sprite ball;
        Sprite paddle;
    
        public void setup()
        {
            window.size(250, 250);
            window.title("Pong");
            framerate(30);
    
    
            Image bkg = getImage("images/background.png");
            canvas.background(bkg);
    
            ball = makeSprite(getImage("images/ball.gif", 255, 0, 0));
            paddle = makeSprite(getImage("images/paddle.png"));
    
            ball.position(canvas.width()/2 - ball.width()/2,
                          canvas.height()/2 - ball.height()/2);
            ball.motion(6, 3);
            paddle.position(canvas.width() - paddle.width() - 10,
                           (canvas.height() - paddle.height()) / 2);
        }
    
        public void draw()
        {
            canvas.clear();
    
            ball.move();
            ball.bounceIfCollidesWith(paddle);
            ball.bounceIfCollidesWith(TOPEDGE, BOTTOMEDGE, LEFTEDGE, RIGHTEDGE);
            paddle.stopIfCollidesWith(TOPEDGE, BOTTOMEDGE, LEFTEDGE, RIGHTEDGE);
    
            paddle.draw();
            ball.draw();
        }
    
        public void onKeyPress()
        {
            // Arrow keys and WASD keys move the paddle
            if (keyboard.isDown(keyboard.UP, keyboard.W))
                paddle.nextY(paddle.y() - 2);
            if (keyboard.isDown(keyboard.DOWN, keyboard.S))
                paddle.nextY(paddle.y() + 2);
            if (keyboard.isDown(keyboard.LEFT, keyboard.A))
                paddle.nextX(paddle.x() - 2);
            if (keyboard.isDown(keyboard.RIGHT, keyboard.D))
                paddle.nextX(paddle.x() + 2);
        }
    }
    and the library: http://ucigame.org/ucigame-source.zip

    All I want to do is have the Pong class call setup() and draw() onkeypress() of different classes. Or is it better that way? There is no main() or run() class the way ucigame makes the examples.

    Thank you
    Joey

    This isn't necessarily the best solution because I don't know all the details of your project, but if you wanted to put methods in a separate class and call them from the main() in the class of Pong method, you might do the following

    import ucigame.*;
    
    public class Pong extends Ucigame
    {
        public static voic main(String args[]){
            GameUtil gameUtilClass = New GameUtil();
    
            gameUtilClass.setup();
            gameUtilClass.draw();
            gameUtilClass.onKeyPress();
    
        }
    }
    
    // new class to hold methods
    public class GameUtil
    {
        Sprite ball;
        Sprite paddle;
    
        public void setup()
        {
            window.size(250, 250);
            window.title("Pong");
            framerate(30);
    
            Image bkg = getImage("images/background.png");
            canvas.background(bkg);
    
            ball = makeSprite(getImage("images/ball.gif", 255, 0, 0));
            paddle = makeSprite(getImage("images/paddle.png"));
    
            ball.position(canvas.width()/2 - ball.width()/2,
                          canvas.height()/2 - ball.height()/2);
            ball.motion(6, 3);
            paddle.position(canvas.width() - paddle.width() - 10,
                           (canvas.height() - paddle.height()) / 2);
        }
    
        public void draw()
        {
            canvas.clear();
    
            ball.move();
            ball.bounceIfCollidesWith(paddle);
            ball.bounceIfCollidesWith(TOPEDGE, BOTTOMEDGE, LEFTEDGE, RIGHTEDGE);
            paddle.stopIfCollidesWith(TOPEDGE, BOTTOMEDGE, LEFTEDGE, RIGHTEDGE);
    
            paddle.draw();
            ball.draw();
        }
    
        public void onKeyPress()
        {
            // Arrow keys and WASD keys move the paddle
            if (keyboard.isDown(keyboard.UP, keyboard.W))
                paddle.nextY(paddle.y() - 2);
            if (keyboard.isDown(keyboard.DOWN, keyboard.S))
                paddle.nextY(paddle.y() + 2);
            if (keyboard.isDown(keyboard.LEFT, keyboard.A))
                paddle.nextX(paddle.x() - 2);
            if (keyboard.isDown(keyboard.RIGHT, keyboard.D))
                paddle.nextX(paddle.x() + 2);
        }
    
    }
    

    Methods should not really have a class for each of them.

    Published by: JDScoot on May 23, 2011 15:33

  • How to use several classes of children?

    OK, I'm lost.

    In the image of an example of the expedition with LabVIEW, I can see how the circle example. I want to be able to do is to use more than 1 child in the same way. What I have to reproduce the code for the other child, or can I somehow have more than 1 child use the same wire?

    Use an array where each element of the array is an instance of the child, that you need.

    Call your methods inside a auto-indexe for the loop.

    Ben

  • Is it possible to define several files at once?

    Hi all

    I'm new to this platform, so forgive me if I haven't posted this question in the right place. I went through Google as well as the FAQ section and couldn't find an answer to the question above.

    Here are some details:

    I've got 75 files I need to sketch. I know Photoshop and other software it is possible to create a process to resize the images, for example. Is there something similar to Illustrator CS5? I played a bit with stocks, but if could not understand (and so, how) it is possible to get all the files described only once.

    All responses are much appreciated.

    Thank you!

    do you mean vectorize paths or text or what?

    you could make an action select all, then object > path > contour Contour or type > create outlines (or both), and then use the batch processing options (at the bottom of the menu drop-down of the Actions Panel) to choose a folder to perform the action.

    the batch option is perhaps what you are looking for here, not sure.

Maybe you are looking for

  • RD XV47KB still not eject a disc from the DVD unit

    I have a problem, for some reason any it ejects a disc from the dvd unit, I tried the obvious solutions without result, any suggestions will be greatly appreciated

  • VS 2008: Publish a Web application

    I have a web application that I'm doing a ClickOnce deployment.  When I click on properties/project to open the Project Designer, I don't have tab publish.

  • Need help with sharing on connected pc 2013 Windows server r2 and Windows 7

    I have a strange problem, I have windows 2013 server r2 running on our server and I have about 40 PC running windows 7 Pro. all these systems have been set up by me out of the box and put in place identical (except for the user name and computer of c

  • See the list of numbers such as "call number?

    I've added a menu to MENUITEM_ADDRESSBOOK_LIST and I'm looking to display the dialog box "Call what number?" as BlackBerry does for contact with many numbers. Do I have to use Dialog.ask or a class exist? 1. open address book 2. Select a contact with

  • session is not killed properly

    I use oracle 10g (10.2.0.1) in Redhat Ent Linux 5.0.In my production database, one of my session which is connected thorugh 'TOAD' program is hanged.I kill this session several times but not removed from the session and it shows the status is 'DEAD '