C++ classes into subfolders

After you have created a default Cascades project which developed the class source files C++ in the src folder, if I add a new class in a subfolder of the CBC, the build process does not compile the cpp files in subfolders.

Is this possible? It is difficult to organize large projects without being able to use subfolders.

OK, so you must change your .pro file and add the sources here.

Tags: BlackBerry Developers

Similar Questions

  • load the java class into the database 10g

    Hello

    We have a program that creates pdf files using bi publisher.for this program we use some java package to create a directory under unix, whenever the invoiceprint program runs.

    Now, I need to load this class in the database, so how do I load this class into the database.

    I got a few samples and google docs, but I was confused with this weather I should load from Oracle/applmgr user.

    So could you please tell me how can I load a java class into the oracle database.

    I am grateful for your help kind verymuch. Its a way out for me.


    Thank you
    YZR

    Hello

    http://www.Oracle-training.cc/teas_elite_util9.htm

    SS

  • 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

  • call dbms_java.loadjava to load the java class into the database

    Hey guys...

    I have a few issues with the appellant dbms_java.loadjava.

    (1) it is owned by SYS, can apps to call him?
    (2) I want to load the class file must be in a particular directory, or simply in the same directory that I run sqlplus to?
    (3) I have tried to do so and the procedure "ends with success", but when I try to find in the table object is not there... no idea what I am doing wrong?

    The syntax is like this:

    sys.dbms_java.loadjava ('v ' ZebraGetPrinterFromXML.class);

    It does not give an error message if it cannot load the file. The 2nd parameter is for resolver.

    must be at a certain place?

    As far as I know: No.

    Published by: InoL on November 23, 2010 15:16

  • store an entire class in persistent store?

    I need to store a set of many parameters in the persistent store. I wonder if it is possible to create a class that contains all the settings and get an instance of the class into the store, instead of putting every parameter in the store separately. The questions are:

    1 is it possible?

    2. If so, are there performance issues with the storage of an instance of the class, or any other concers?

    Thank you

    1 Yes its possible, you must make sure that your class extends the persistable interface

    2. Yes, there are performance concerns and limitations in number of handles object that you could use on some operating systems... see these articles for a more detailed explanation:

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/7979/1181821/832210/Memory_b...

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800431/What_Is...

  • QRCode in Oracle Database 10g class

    Hi guys,.

    I am trying to install a java class that generates an Image QR in the server. The class is QRCode.class if I run this class in the server, then the QR Image is generated, now I want to do this, but the appeal of this java class in the database but I can't compile the java class into the database, the code for the class is:

    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED APPS. " QRCode"AS

    package prosegur.qrcode;

    to import java.awt.image.BufferedImage;

    import java.io.IOException;

    import java.util.ArrayList;

    import java.util.List;

    public class {QRCode

    private static final int PAD0 = 0xEC.

    private static final int PAD1 = 0x11;

    private int reference;

    Private Boolean [] [] modules;

    private int moduleCount;

    private int errorCorrectLevel;

    private list < QRData > qrDataList;

    public QRCode() {}

    this.typeNumber = 1;

    this.errorCorrectLevel = ErrorCorrectLevel.H;

    this.qrDataList = new ArrayList < QRData > (1);

    }

    public int getTypeNumber() {}

    return of reference;

    }

    {} public void setTypeNumber (int reference)

    this.typeNumber = reference;

    }

    public int getErrorCorrectLevel() {}

    Return errorCorrectLevel;

    }

    {} public void setErrorCorrectLevel (int errorCorrectLevel)

    this.errorCorrectLevel = errorCorrectLevel;

    }

    {} public void addData (string data)

    addData (data, QRUtil.getMode (data));

    }

    ' Public Sub addData (String, int mode data) {}

    {Switch (mode)}

    case Mode.MODE_NUMBER:

    addData (new QRNumber (data));

    break;

    case Mode.MODE_ALPHA_NUM:

    addData (new QRAlphaNum (data));

    break;

    case Mode.MODE_8BIT_BYTE:

    addData (new QR8BitByte (data));

    break;

    case Mode.MODE_KANJI:

    addData (new QRKanji (data));

    break;

    by default:

    throw new IllegalArgumentException ("mode:" + mode);

    }

    }

    public void clearData() {}

    qrDataList.clear ();

    }

    protected void addData (QRData qrData) {}

    qrDataList.add (qrData);

    }

    protected int getDataCount() {}

    Return qrDataList.size ();

    }

    protected QRData getData (int index) {}

    Return qrDataList.get (index);

    }

    {} public is Boolean (int row, int col)

    If (modules [row] [column]! = null) {}

    Return modules [row] [col] .booleanValue ();

    } else {}

    Returns false;

    }

    }

    public int getModuleCount() {}

    Return moduleCount;

    }

    public void make() {}

    make (false, getBestMaskPattern());

    }

    private int getBestMaskPattern() {}

    int minLostPoint = 0;

    model int = 0;

    for (int i = 0; i < 8; i ++) {}

    Make (true, i);

    int lostPoint = QRUtil.getLostPoint (this);

    If (i == 0 | minLostPoint > lostPoint) {}

    minLostPoint = lostPoint;

    model = i;

    }

    }

    return the template;

    }

    Private Sub (Boolean test, int maskPattern) {} do

    moduleCount = reference * 4 + 17;

    modules = new Boolean [moduleCount] [moduleCount];

    setupPositionProbePattern (0, 0);

    setupPositionProbePattern (moduleCount - 7, 0);

    setupPositionProbePattern (0, moduleCount - 7);

    setupPositionAdjustPattern();

    setupTimingPattern();

    setupTypeInfo (test, maskPattern);

    If (reference > = 7) {}

    setupTypeNumber (test);

    }

    DataArray [] QRData = qrDataList.toArray (new QRData [qrDataList.size ()]);

    data Byte [] = createData (reference, errorCorrectLevel, dataArray);

    mapData (data, maskPattern);

    }

    ' Private Sub mapData (data byte [], int maskPattern) {}

    int inc = - 1;

    int row = moduleCount - 1;

    int bitIndex = 7;

    int byteIndex = 0;

    for (int col = moduleCount - 1; col > 0; col = 2) {}

    If (col == 6) col -;

    While (true) {}

    for (int c = 0; c < 2; c ++) {}

    If (modules [row] [column - c] == null) {}

    darkness Boolean = false;

    If (byteIndex < data.length) {}

    Black = (((données [byteIndex] >>> bitIndex) & 1) == 1);

    }

    Boolean mask = QRUtil.getMask (maskPattern, line, col - c);

    If {(mask)

    Black =! Dark;

    }

    modules [row] [column - c] = Boolean.valueOf (dark);

    -bitIndex;

    If (bitIndex ==-1) {}

    byteIndex ++;

    bitIndex = 7;

    }

    }

    }

    rank += inc.;

    If (row < 0 | moduleCount < = row) {}

    rank-=, increase;

    Inc = - inc;

    break;

    }

    }

    }

    }

    private void setupPositionAdjustPattern() {}

    int [] pos = QRUtil.getPatternPosition (typeNumber);

    for (int i = 0; i < pos.length; i ++) {}

    for (int j = 0; j < pos.length; j ++) {}

    int row = pos [i];

    int col = pos [j];

    If (modules [row] [column]! = null) {}

    continue;

    }

    for (int r = - 2; r < = 2; r ++) {}

    for (int c = - 2; c < = 2; c ++) {}

    If (r ==-2 | r == 2 | c ==-2 | c == 2)

    || (r == 0 & & c == 0)) {

    modules [line + r] [col + c] = Boolean.valueOf (true);

    } else {}

    modules [line + r] [col + c] = Boolean.valueOf (false);

    }

    }

    }

    }

    }

    }

    ' private void setupPositionProbePattern (int row, int col) {}

    for (int r = - 1; r < = 7; r ++) {}

    for (int c = - 1; c < = 7; c ++) {}

    If (line + r < = - 1 | moduleCount < = row + r)

    || Col + c < = - 1. moduleCount < = col + c) {}

    continue;

    }

    If ((0 < = r & & r < = 6 & & (c == 0 || c == 6)))

    || (0 < = c & & c < = 6 & & (r == 0 | r == 6))

    || (2 < = r & & r < = 4 & & 2 < = c & & c < = 4)) {

    modules [line + r] [col + c] = Boolean.valueOf (true);

    } else {}

    modules [line + r] [col + c] = Boolean.valueOf (false);

    }

    }

    }

    }

    private void setupTimingPattern() {}

    for (int r = 8; r < moduleCount - 8; r ++) {}

    If (modules [r] [6]! = null) {}

    continue;

    }

    [r] modules [6] = Boolean.valueOf (r % 2 == 0);

    }

    for (int c = 8; c < moduleCount - 8; c ++) {}

    If (modules [6] [c]! = null) {}

    continue;

    }

    modules [6] [c] = Boolean.valueOf (c % 2 == 0);

    }

    }

    {} private void setupTypeNumber (Boolean test)

    int bit = QRUtil.getBCHTypeNumber (typeNumber);

    for (int i = 0; i < 18; i ++) {}

    Boolean mod = Boolean.valueOf (! test & & ((bits >> je) & 1) == 1);

    modules [I / 3] [I % 3 + moduleCount - 8-3] = mod;

    }

    for (int i = 0; i < 18; i ++) {}

    Boolean mod = Boolean.valueOf (! test & & ((bits >> je) & 1) == 1);

    modules [I % 3 + moduleCount - 8-3] [I / 3] = mod;

    }

    }

    ' Private Sub setupTypeInfo (Boolean test, int maskPattern) {}

    data = int (errorCorrectLevel < < 3) | maskPattern;

    int bit = QRUtil.getBCHTypeInfo (data);

    // ???

    for (int i = 0; i < 15; i ++) {}

    Boolean mod = Boolean.valueOf (! test & & ((bits >> je) & 1) == 1);

    If (I have 6 <) {}

    the [i] [8] modules = mod;

    } ElseIf (I < 8) {}

    modules [i + 1] [8] = mod;

    } else {}

    modules [moduleCount - 15 + i] [8] = mod;

    }

    }

    for (int i = 0; i < 15; i ++) {}

    Boolean mod = Boolean.valueOf (! test & & ((bits >> je) & 1) == 1);

    If (I < 8) {}

    modules [8] [moduleCount - i - 1] = mod;

    } ElseIf (I < 9) {}

    modules [8] [15 - i - 1 + 1] = mod;

    } else {}

    modules [8] [15 - i - 1] = mod;

    }

    }

    // ??

    modules [moduleCount - 8] [8] = Boolean.valueOf(!test);

    }

    public static ubyte [] createData (int errorCorrectLevel, int reference, dataArray [] QRData) {}

    RSBlock [] rsBlocks = RSBlock.getRSBlocks (reference, errorCorrectLevel);

    BitBuffer buffer = new BitBuffer();

    for (int i = 0; i < dataArray.length; i ++) {}

    Data QRData = dataArray [i];

    buffer.put (Data.getMode (), 4);

    buffer.put (Data.getLength (), data.getLengthInBits (typeNumber));

    Data.Write (buffer);

    }

    int totalDataCount = 0;

    for (int i = 0; i < rsBlocks.length; i ++) {}

    totalDataCount += rsBlocks [i] .getDataCount ();

    }

    If (buffer.getLengthInBits () > totalDataCount * 8) {}

    throw new IllegalArgumentException ("code length overflow. ("

    + buffer.getLengthInBits)

    + « > »

    + totalDataCount * 8

    + ")");

    }

    // ?????

    If (buffer.getLengthInBits () + 4 < = totalDataCount * 8) {}

    buffer.put (0, 4);

    }

    padding

    While (buffer.getLengthInBits (% 8)! = 0) {}

    buffer.put (false);

    }

    padding

    While (true) {}

    If (buffer.getLengthInBits () > = totalDataCount * 8) {}

    break;

    }

    buffer.put (PAD0, 8);

    If (buffer.getLengthInBits () > = totalDataCount * 8) {}

    break;

    }

    buffer.put (PAD1, 8);

    }

    Return createBytes (buffer, rsBlocks);

    }

    private static ubyte [] (BitBuffer buffer RSBlock [] rsBlocks) createBytes {}

    int offset = 0;

    int maxDcCount = 0;

    int maxEcCount = 0;

    int [] [] dcdata = new int [rsBlocks.length] [];

    int [] [] ecdata = new int [rsBlocks.length] [];

    for (int r = 0; r < rsBlocks.length; r ++) {}

    int dcCount is rsBlocks [r] .getDataCount ();.

    int ecCount = rsBlocks [r] .getTotalCount () - dcCount;

    maxDcCount = Math.max (maxDcCount, dcCount);

    maxEcCount = Math.max (maxEcCount, ecCount);

    [r] dcdata = new int [dcCount];

    for (int i = 0; i < dcdata [r] .length; i ++) {}

    dcdata [r] [i] = 0xff & buffer.getBuffer ([i + shift]);

    }

    offset += dcCount;

    Polynomial rsPoly = QRUtil.getErrorCorrectPolynomial (ecCount);

    Polynomial rawPoly = new polynomial (dcdata [r], rsPoly.getLength () - 1);

    Polynomial modPoly = rawPoly.mod (rsPoly);

    [r] ecdata = new int [rsPoly.getLength () - 1];

    for (int i = 0; i < ecdata [r] .length; i ++) {}

    int modIndex is i + modPoly.getLength () - ecdata [r] .length;.

    ecdata [r] [i] = (modIndex > = 0)? modPoly.get (modIndex): 0;

    }

    }

    int totalCodeCount = 0;

    for (int i = 0; i < rsBlocks.length; i ++) {}

    totalCodeCount += rsBlocks [i] .getTotalCount ();

    }

    data Byte [] = new ubyte [totalCodeCount];

    int index = 0;

    for (int i = 0; i < maxDcCount; i ++) {}

    for (int r = 0; r < rsBlocks.length; r ++) {}

    If (I < dcdata [r] .length) {}

    data [index ++] = dcdata (byte) [r] [i];

    }

    }

    }

    for (int i = 0; i < maxEcCount; i ++) {}

    for (int r = 0; r < rsBlocks.length; r ++) {}

    If (I < ecdata [r] .length) {}

    data [index ++] = ecdata (byte) [r] [i];

    }

    }

    }

    return data;

    }

    public static getMinimumQRCode (int errorCorrectLevel, string data) {} QRCode

    int mode = QRUtil.getMode (data);

    QRCode qr = new QRCode();

    qr.setErrorCorrectLevel (errorCorrectLevel);

    qr.addData (data, mode);

    int length = qr.getData (0) .getLength ();

    for (reference int = 1; Reference < = 10; reference ++) {}

    If (length < = QRUtil.getMaxLength (reference, errorCorrectLevel)) {}

    qr.setTypeNumber (typeNumber);

    break;

    }

    }

    QR.make ();

    return qr;

    }

    public BufferedImage createImage (int cellSize, int margin) throws IOException {}

    imageSize = getModuleCount() int * cellSize + margin * 2;

    BufferedImage image = new BufferedImage (imageSize imageSize, BufferedImage.TYPE_INT_RGB);

    for (int y = 0; y < imageSize; y ++) {}

    for (int x = 0; x < imageSize; x ++) {}

    If (margin < = x & & x < imageSize - margin)

    (& & margin < = y & & y < imageSize - margin) {}

    Col int = (x - margin) / cellSize;

    int row = (y - margin) / cellSize;

    If (is (row, col)) {}

    image.setRGB (x, y, 0x000000);

    } else {}

    image.setRGB (x, y, 0xffffff);

    }

    } else {}

    image.setRGB (x, y, 0xffffff);

    }

    }

    }

    return image;

    }

    }

    /

    And the error when I tried to compile is:

    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED APPS. " QRCode"AS

    *

    ERROR on line 1:

    ORA-29536: badly formed source: met "<" on line 13, column 22.

    Expected one of:

    < ID >...

    "[" ...

    "." ...

    "(" ...

    It's like the java compiler does not detect the line:

    private list < QRData > qrDataList;   With the symbols of <>...


    DB Version: Oracle Database 10 g Enterprise Edition Release 10.2.0.5.0 - 64bi


    Could someone help me? may may be the version of the java compiler of the database?


    Thank you!!


    Pablo. -.

    The version of the JVM in 10g does not include generic drugs

  • How to write several unique java class in the java file?

    Hello
    I use Jdev 11.1.2.0.0.

    When I write the java class, I wrote in my file of multiple class. This time Jdeveloper advise that, move this class into distinct java file.
    But I don't want to go, without moving this class it works perfectly. But it is what tells the error indicator 'red '. How to solve this problem.

    Kind regards
    Rami

    Hello

    its an audit rule that is facing you. You can go to tools-->--> Audit preferences and disable it if you are more disturbed.

    Frank

  • Java class import error

    Hello

    I'm impossible to import the java class in the peoplecode. while I import in my peoplecode I got the error message
    as,

    Appeal of Java java.util.regex.Pattern.matcher: no matching overload. TEST (2 743). SAVE_PB. FieldChange PCPC:379 statement: 4

    While calling the Java method, no overhead was found with a parameter signature that corresponds to the supplied parameter types.*

    the following codes are that I used to import.

    Local JavaObject & type = GetJavaClass ("java.util.regex.Pattern");
    Local JavaObject & match = GetJavaClass ("java.util.regex.Matcher");

    someone suggest me a better solution to import the class into my peoplecode.

    Thanks for posting your complete code.

    Local JavaObject &jstring = CreateJavaObject("java.lang.String", TEST.INPUTSTRING.value);
    
    &matcher = &pattern.matcher(&jstring);
    

    About:

    Local JavaObject & match = GetJavaClass ("java.util.regex.Matcher");

    You don't need that because you don't need to import something you get by the way. In this case, you get & match of & model.

  • How to download a java class of database to the file system

    Hi all
    We have an invalid java class into the database. To check what is the functionality of this class. So, we planned to download this class for the file system. Then we decompile the source. But we are not able to identify the correct command to download the java database class.


    Please suggest me if any possible ways to achieve this.

    Thanks in advance...

    http://www.SQL.ru/Forum/actualthread.aspx?TID=747308
    http://download.Oracle.com/docs/CD/B19306_01/Java.102/b14187/AppendixA.htm

    PROCEDURE export_source (name VARCHAR2, VARCHAR2 schema, blob BLOB)
    PROCEDURE export_class (name VARCHAR2, VARCHAR2 schema, blob BLOB)
    PROCEDURE export_resource (name VARCHAR2, VARCHAR2 schema, blob BLOB)

    create table scott.t (id number, b blob);
    
    declare
        b blob;
        begin
    
           dbms_lob.createTemporary(b, true, dbms_lob.CALL);
           dbms_java.export_class('sun/net/www/ParseUtil', user, b);
          dbms_output.put_line('length(b): '||length(b));
    
          insert into "SCOTT"."T" values(1,b);
        end;
    
  • Insertion of files Adobe Edge in my html page

    Hi all

    I have an urgent problem of inserting a series of animations that I created in Adobe Edge in my portfolio website.

    I have 6 files to insert, which form a series of short animations.

    When I publish each file "adobe" edge, I understand that you must insert the Adobe Edge enforcement code in the head section and Edge Class code in the body section.

    What I'm not clear, this is where I save html, edge.js and edgeActions.js files. Should it be stored in the main folder where is saved the index.html file?

    And where images must be saved?

    If I try to move these files into subfolders, which seem to make sense to me, the animation does not work.

    What I leave me puzzled, you also need to record a 'edge.5.0.1.min.js' and a ' jquery-file 2.0.3.min.js in my javascript file. But whenever I publish an edge file, I need to save these files with the same name. And I don't know where these files must be saved.

    Hope I'm making sense here. I'm new to web development, and I hope I can show these animations on my portfolio website.

    Did someone met with these problems when you attempt to insert adobe edge files in an html page?

    Thank you

    S

    When you publish your animated project of edge, go to the "published" folder and extract all the files in the following folder titled 'web' and place them (as they are) in the folder corresponding to your index.html file. Once you add running Adobe Edge code animate the animation to your index.html file should be responsible. Don't forget that the edge file is already linked to image and js files in the exact form they appear after the opening of the "web" folder Thus any movement of files without taking into account other will break the link. For example: you can not put the .js to another folder after publication file because the file html for your project is related to the .js file exactly where he was when the publication was made. So he'll keep looking for this file in this location unless otherwise stated.

    An example of how you can organize your files: when you open your Web folder, it should be arranged something like this

    • -Images
    • -example.js
    • -exampleproject - edge.html

    Once the files are placed in the location of the index file we set something like:

    • -Images
    • -example.js
    • HTML - exampleproject-edge (NOTE: this html file becomes irrelevant, after adding the runtime code in the index file)
    • -index.html

    Once this is done, you can add your other projects as well. You will have to manually put all images used for each project in a single "record"of the images. "

    I hope this helps clarify things a bit!

  • Y at - it a bug with the checkbox 'Keep iTunes media folder organized' preference?

    My iTunes for Windows version 12.3.3.17 music library has always organized automatically by itunes with all the files placed in the album and records of the artist, with the song title names preceded the disc number, track number, etc..

    I don't like it. This creates a maze of unwanted, unnecessary nested folders such as [name of artist]------\(tune list) [Album 1 name], [artist name]------[Album 2 name] \(tune list), etc.  or, in many cases, [artist name] \Unknown Album\(tune list).

    I have cloned my Itunes Media\Music file and traversed the clone, all music files manually non-breeders (all I want is artist Name\ [tune list]...) I don't want to see songs of the artist sorted into subfolders based on the album of the artist names, and I am certainly not zillions of subfolders "Unknown Album" being intended to receive the different air in cases where iTunes is unable to identify the name of the album because at some point in the past, I've copied CD tracks on my PC as .aiffs and then imported into iTunes to mp3 stripping inadvertently names album from metadata of files.)

    Once the clone folder was all cleaned up, I opened iTunes and it deleted my entire library of music.

    I closed iTunes, DISCONNECTED MY COMPUTER FROM the INTERNET and then restarted iTunes. In PREFERENCES, I made sure the checkbox 'Keep iTunes media folder organized' has been DISABLED so that iTunes can no longer "place files in folders of album and artist and name the files based on the number of the disc, track number and the title of the song.

    Finally, I imported my cleaned files of music together collection, in the clone folder in iTunes.

    Once this is done, I closed iTunes and then manually open my folder of C:\Users\[me]\Music\iTunes\iTunes Media\Music to observe and enjoy the fact that he was, hopefully finally organized my way.

    To my surprise, when any iTunes my library cleaned, he completely ignored my preference setting to NOT "maintain organized the iTunes Media folder. He was once more reorganised in the same maze of unwanted files/subfolders!

    It seems that this particular box really doesn't do anything.  iTunes still examines the metadata of files available (since there is no way, it can access the Internet with disabled connections) and continues to insist on all reorganize in subfolders based on file metadata, EVEN IF you set preferences to prevent it explicitly to do this.

    What Miss me?

    You would need to get the result you wanted to copy the folder "stored until" in the iTunes Media folder and added that copy in the library, or have disabled alternately to copy files to the iTunes folder when adding to Library Media then added support to its original path. When iTunes makes the imported copy, CD rips, format convert, downloads from the iTunes Store, etc. or you add using automatically add to iTunes folder it will always use its nesting default < artist > \Music\ < Media folder > \ < Album > for music. Personally, I think that you are taking the wrong approach. I always fill all the missing details and have my library organized in this sense much like iTunes does, although I don't like the way it truncates names to 40 characters and I keep certain genres like classical music, humor and music stored in their own subfolders. If you really want to impose your own structure take a look at my CustomRenamerscript.

    TT2

  • A few questions about Stor.E TV +.

    Hello

    bought the gadget yesterday (to be used as a media server on my network).

    Then I came across some problems:

    -There are no connected TV and using the remote control of the installation, the device is a little difficult. The only web interface is an example of cgi script to calculate two numbers :-). Are there any plans to improve the web interface?

    -The main hard drive is (HARD drive SYSTEM, no file structure), but when I try to copy the audio files using the remote it says copy... forever, but does nothing. This behavior is known?

    -Very often the device seems to be stuck (no reaction to the actions of the remote control)...

    I don't know how to read the current version of the firmware, but I guess I have a very old version of it. Y at - it a update available (I searched the Toshiba site, but have not found a)?

    Best regards

    schwarzes_krikri

    Hello

    as far as I know, there is no intent to enhance the web interface.
    I think that Toshiba will only enhance something, if there are problems.
    For navigation, the internal display, store TV + is ok, but for the configuration you must connect it to a TV.

    Regarding the "no response to the actions of the remote control", perhaps the StorE TV + is only a bit slower, but it shows a reaction.
    Use the right arrow key to go into subfolders. If this makes no difference, on the StorE TV + default settings.
    Go to the menu, choose 'Configuration' - 'system' - "Restore Default".
    After that the copy of the files audio-question should be resolved, also.

    To view the firmware version, go to the menu and choose 'Configuration' - 'system' - "system update".
    Right you´re. At the present time there is no fw updates.

    hope this helps you
    Best regards

  • my folders disappeared when 10.6.8 OS10.11.3. In any case, to get this stuff back in folders rather than a long list of files?

    My folders disappeared when 10.6.8 OS10.11.3. In any case, to get this stuff back in folders rather than a long list of files?

    Where they disappeared?

    Some changes that may be what you watch:

    • All of my files - this is the search folder that searches all your files in your home and presents them in one place. They were not moved, they are displayed just like they are.
    • Framed by default - the sidebar returns the values by default for all folders that you placed there will need to be added again.

    Your files are stored inside your folder into subfolders such as Documents, movies, pictures, etc. They are all should still be there. You can add one of these folders to the sidebar by dragging them there, or you can use the tab of the sidebar in the Finder preferences.

    You can access your file in the Finder with cmd-shift-h (menu go).

  • How to separate the different CDs with different titles in iTunes

    Hello

    Please help me because I find that iTunes is not easy to use (to a point of departure to experience).

    Option 1:

    I have all my CDs stored on my external hard drive. In iTunes, click on "Add to library" and a drop down of my files appear. I select A folder title and songs are copied to iTunes. In the window of iTunes and under 'my music' and 'artists' (upper right corner) pieces appear with the title "unknown artist" and "unknown album" that appears.

    On my computer, I have the following:

    users > music > iTunes > iTunes media > music

    > CD A (unknown artist - nothing)

    > CD (title unknown album - showing the list of songs)

    I have manually rename the artist and album folders subfolders.

    > CD A (type the title)

    > CD A (type the title - display the list of songs)

    When I play my music in iTunes, iTunes automatically creates a new "unknown artist" under folder and subfolders "unknown album", respectively. Every song in my sub labeled folder manually moved to the new album 'unknown '.

    > CD A (my typical title)

    > CD A (my typical title - no list of songs)

    > CD A (unknown artist - nothing)

    > CD (album unknown list - view the list of songs that have been transferred)

    In any case stop iTunes from new subfolders open after you create subfolders when installing an external hard drive.

    Option 2

    I have the original purchased legally CD from Amazon.com. I load the CD in my player and iTunes, a message appears ' do you want to import the music from the CD title: "I click on Yes and the songs are loaded. On my computer, I have the following:

    users > music > iTunes > iTunes media > music

    > Compilations

    > South Pacific (Broadway)

    > South Pacific (West End)

    > Sound of Music (Broadway)

    > Sound of Music (West End)

    I did not take it. I create 2 new subfolders in the South Pacific and the sound of music. Transfer the South Pacific CD 2 x in the main folder of void SP and transfer the x 2 sounds of music CD in the main folder of void SOM. Delete the subfolder "compilation". I ask this question because I don't want to spoil, wasting time and to find iTunes create new subfolders as he did in option 1. I don't want to redo the import of my CD

    In the window of iTunes and under 'my music' and 'artists' (upper right corner), it shows the LHS bar with compilations (4 albums - IE 2 x SOM and 2 x SP CD). On my computer, if I deleted compilations under folder and created 2 new subfolders in the South Pacific and the sound of music, titles would change in the LHS of the window iTunes as well. Would creat it too much of a problem for iTunes.

    Robin

    Option 2 (re-rip your music from a CD) seems to be a pain, so go with Option 1.

    iTunes is probably do what you describe, because your song files apparently do not have "metadata" (embedded info) for things like the name of the song, artist, album, track name, etc.  When you import these files of songs in iTunes, iTunes uses "unknown artist" and "unknown album."  If you understand what iTunes does, you won't be iTunes of fighting .

    Here's a suggestion to add these songs as easy as possible.  First, open iTunes preferences Advanced Panel.  The path that you see the designated iTunes Media folder, you should not change (unless you want to store your iTunes Media also folder).  Below, there are TWO check boxes to keep iTunes Media folder organized AND Add files to the Media folder when adding to the iTunes library.  One tells iTunes to keep iTunes Media folder organized based on how the pieces appear in iTunes (this is why these files got renamed).  The other tells iTunes to make a copy of the song for the iTunes Media folder file (instead of using the file of the song where it was added).  I recommend you keep the two checkboxes are checked.

    Create a new playlist in your iTunes library.  To do this, click the button on the music at the left end of the horizontal bar (to show your music library), and then click playlists near the middle of the horizontal bar.  A side bar appears along the left side of the iTunes window.  At the bottom of the sidebar, click the Plus sign and choose new playlist.  A new playlist appears in the sidebar, where you can name; You can call it Import.  Click Import playlist in the sidebar, to show the (currently empty) reading list to the right.  Keep iTunes window open in this way.

    Open a Finder window to view your storage space of files of the song on the external hard drive.  Select one of your folders of the song ("title" in your example).  Drag this folder in the Finder window, in the iTunes window and drop it on the playlist of the import .  The songs are added to this list of reading and also in your iTunes library.  Change the 'view' of this playlist; at the right end of the horizontal bar, click on the control and select the view of songs .  The playlist is presented as a simple list, with columns, where it is easier to change the song information.  Don't worry at this stage, on the way in which the songs are stored in a warehouse of your Mac; iTunes takes care of this...

    Tips for handling the song list - to sort the list by a column, click the header of this column.  For example, to sort by song name, click the last name column heading. Click a second time to reverse the order.  You can hide and show the available columns, by clicking right on the line of the list header.  You can move a column to the left or right (on the list) by dragging the position of the column.  To select a song on the list, click on the song.  Selection of song appearing together at the same time, click the first song, hold down the SHIFT key, click the last song.  To select the songs listed separately at the same time, hold down the command and Option keys and click on the songs you want to select.

    You can change most of the entries of information of the song on the list directly, by clicking on the field you want to change a song.  However, to make a lot more quickly, you can change a set of songs at the same time, using the Info window.  For example, select all the songs on an album at the same time, right-click the selection and select information.  In the window information , Details tab, change the field Album of songs.  Do the same thing by selecting all the pieces of the same artist at the same time and change the field to the artist .  You must also add the entries of path #, so that iTunes knows the order of songs on an album (make it from the info window).  If the song name currently includes info addition, change it so that it is only the name of the song (do on the list).  If you look in the iTunes Media folder now (using the Finder), iTunes has remained things organized, based on the edit, you did in the iTunes window.  The songs are now organized into subfolders by artistand then by Album, with the song found files: the track number name more song.

    With a selection of import , you have been keeping all the songs of one of your folders set when editing the info of the song.  They were probably organized this way on your external drive for a reason.  You can create playlists to import additional for your other records with songs.  Or you can delete current songs in the playlist of import and reuse for the next record with songs.  The songs are not removed from your library of iTunes (only from the playlist) music.

  • Consume a Web Service

    Hey,.

    Newbie here and I was wondering if someone could point me in the right direction to write a class to connect to a Web service?  I use Blackberry JDE plugin for Eclipse.  I tried to search some forums but more is to do with ksoap plugin that I have trouble with so thought that I would write my own class.  All documents, samples, etc. would be much appreciated.

    Tried to do a search in the developers section of the BlackBerry but to be honest, I find the terrible site and can never find what I was looking for!

    Hello

    I developed a small application based on Web services, by following these steps...

    1. create a webservice and edited.

    2. using the SUN J2ME Wireless Toolkit, point the WSDL and generate high heels...

    3. After generating stubs, import classes into your project and access as simple java classes...

    Please correct me if I'm wrong...

Maybe you are looking for

  • Folder to archive does not exist

    I have read and followed everything I can find on the archiving of the data, but the problem is that the location specified in the tools/account settings / (account) / Copies and records does not seem to exist. The entry in the field is the name of t

  • Why can I upgrade Shockwave Flash &amp; Java to the latest version?

    I use FIREFOX 27. I tried the update and I have uninstalled/installed each twice with no success. Retail FIREFOX says I have each installed the most recent, but verification of the plug-in said repeatedly that they are vulnerable and need to update.

  • Sansa fuse with rhapsody

    I can not get Rhapsody to recognize my 8 GB sansa fuse.  It was originally the case, but now won't.  It will recognize my 4 GB fuse.  I have 8 GB sansa fuse with 1 GB expansion card.  I have the latest version 1.2 installed.  I have the latest versio

  • 15 - ac026tx: screen brightness increases and decreases automatically permanently

    I just bought my phone 10 days ago and I am facing this problem. Sometimes when I work with my laptop suddenly the brightness of the screen begin to change automatically as a decrease and an increase and then all of a sudden for about 5 seconds and c

  • Watch Messanger that my contacts are not online when they are. Help.

    My husband at home had trouble connecting to messanger so he opened a new passport his Messenger account shows him in line, but I'm at work show her off line so we can't not messanger. HELP please.