Where to start with a simple platform game?

What resources should I look at to learn how to create a very simple platform game, with a charactor who can simply jump on platforms and avoid enemies to reach the end of the level?
I have made games like this with other languages but never flash.
Thanks.

I am also interested in this answer but in my case from the aspect of Silverlight-only developer with no flash experience (I know that sucks
Thanks,
Nikola

Similar Messages

  • Need help with a simple basketball game.

    Hi im new here and I need help with making this simple basketball game.
    Im trying to recreate this game from this video. Im not sure if he is using as2 or as3
    Or if anyone could help me make a game like this or direct me to a link on how to do it It would be greatly appreciated.

    If you couldn't tell whether it is AS2 or AS3, it is doubtful you can turn it from AS2 into AS3, at least not until you learn both languages.  There is no tool made that does it for you.

  • Select fom table for all entries where field starts with value

    Hello
    I want to write a select like this
    select * from bsis
    into lt_bsis
    for all entries in lt_itab
    where xblnr like lt_itab-belnr%
    I want to select all the entries from bsis where the field xblnr starts with the values found in lt_itab-belnr.
    for example
    ls_itab-belnr = 5100000028
    bsis-xblnr = 510000002810001
                        510000002810002
                        510000002810003
                        520000002810001
    and i want to select only the entries that start with 5100000028 in this case
    Can anybody help?
    Thanks

    Hi,
    I hope below example code will help you to fix your issue,
    REPORT  ytest.
    TYPES : BEGIN OF ty_typ1,
              val TYPE i,
            END OF ty_typ1.
    TYPES : BEGIN OF ty_typ2,
              val1 TYPE hrobjid,
              val2 TYPE hrobjid,
            END OF ty_typ2.
    DATA : int_typ1 TYPE TABLE OF ty_typ1,
           int_typ2 TYPE TABLE OF ty_typ2,
           wa_typ1  TYPE ty_typ1,
           wa_typ2  TYPE ty_typ2,
           int_1001 TYPE TABLE OF hrp1001,
           wa_1001  TYPE hrp1001.
    REFRESH : int_typ1, int_typ2, int_1001.
    CLEAR : wa_typ1, wa_typ2, wa_1001.
    wa_typ1-val = 500001.
    APPEND wa_typ1 TO int_typ1.
    wa_typ1-val = 500002.
    APPEND wa_typ1 TO int_typ1.
    wa_typ1-val = 500003.
    APPEND wa_typ1 TO int_typ1.
    wa_typ1-val = 500001.
    APPEND wa_typ1 TO int_typ1.
    SORT int_typ1 ASCENDING BY val.
    DELETE ADJACENT DUPLICATES FROM int_typ1 COMPARING val.
    LOOP AT int_typ1 INTO wa_typ1.
      wa_typ2-val1 = ( wa_typ1-val * 100 ) + 1.
      wa_typ2-val2 = wa_typ2-val1 + 98.
      APPEND wa_typ2 TO int_typ2.
      CLEAR : wa_typ1, wa_typ2.
    ENDLOOP.
    SELECT * FROM hrp1001 INTO TABLE int_1001
             FOR ALL ENTRIES IN int_typ2 WHERE
                 plvar EQ '01'          AND
                 otype EQ 'S'           AND
                 sclas EQ 'O'           AND
                 begda LE sy-datum      AND
                 endda GE sy-datum      AND
                 objid GE int_typ2-val1 AND
                 objid LE int_typ2-val2.
    LOOP AT int_1001 INTO wa_1001.
      WRITE : / wa_1001-objid.
    ENDLOOP.
    Thanks & Regards,
    Harish Kumar N

  • Where to start with a licensing server for Mac and Windows

    Hi all,
    We have quite a mixture of OSX and Windows across the hundreds of computers we are running. We are on a volume key for all the CS3 products we buy but we still deploy them manually on a MAC but use specops (AD deployment) for the PC). There are some patches now for CS3 and for the MAC we would need to deploy it manually to a large number of machines.
    What I want to do is a) set up a server for deploying software and managing the licenses and b) deploying packages for patches or getting the machines to connect to a deployment server.
    I have been looking around the Adobe site but I can't find anything that outlines what I need to do to get started with this.
    Thanks for any info that can be provided.
    Steven

    Likely your best option is to go for some 3rd party software.
    As for license tracking you could look into license statistics:
    http://www.x-formation.com/license_statistics/index.html
    Stefan
    http://kb.x-formation.com
    http://www.x-formation.com/lm-x_license_manager/index.html

  • Please help me with a simple flash game problem

    I am trying to learn how to make flash games with Adobe flash 5.5. I am doing a tutorial from a book and am stuck.
    The game is called concentration and you are suppose to match 2 tiles of the same shape. there are 10 shape tiles
    and 1 question mark tile. These tiles are held in an array. 20 tiles are suppose to be displayed 5 to a row with 4 rows
    and the question mark is suppose to be up on all 20. My problem is I get a blank screen when I test the movie. I
    think the code is good but I beleive I have not uploaded the tiles right. I did upload the 11 tiles to the library and have
    those 11 tiles and tile_movieclip in the library. Here is the code:
    package {
    // importing classes
    import flash.display.Sprite;
    // end of importing classes
    public class Main extends Sprite {
    public function Main() {
    // variables and constants
    const NUMBER_OF_TILES:uint=20;
    const TILES_PER_ROW:uint=5;
    var tiles:Array=new Array();
    var tile:tile_movieclip;
    // end of variables and constants
    // tiles creation loop
    for (var i:uint=0; i<NUMBER_OF_TILES; i++) {
    tiles.push(Math.floor(i/2));
    trace("My tiles: "+tiles);
    // end of tiles creation loop
    // shuffling loop
    var swap,tmp:uint;
    for (i=NUMBER_OF_TILES-1; i>0; i--) {
    swap=Math.floor(Math.random()*i);
    tmp=tiles[i];
    tiles[i]=tiles[swap];
    tiles[swap]=tmp;
    trace("My shuffled tiles: "+tiles);
    // end of shuffling loop
    // tile placing loop
    for (i=0; i<NUMBER_OF_TILES; i++) {
    tile=new tile_movieclip();
    addChild(tile);
    tile.cardType=tiles[i];
    tile.x=5+(tile.width+5)*(i%TILES_PER_ROW);
    tile.y=5+(tile.height+5)*(Math.floor(i/TILES_PER_ROW));
    tile.gotoAndStop(NUMBER_OF_TILES/2+1);
    // end of tile placing loop
    Can someone please explain to me what I am suppose to do to make the this work? I beleive the problem is it doesnt know where the tiles are.
    Thanks.

    To create the tiles, draw 10 distinct shapes in the first 10 frames of your symbol, and
    the back of the tile in the 11th frame. You are free to draw them as you want, but I suggest you make them as 90 pixels squares with registration point (starting x and y position) at 0, because these are the properties of the tiles used in this chapter's
    examples. At least, they should all be the same size.
    It didnt say put in a library. It is saying to draw them in frames of symbol but it didnt walk me through that. Can you guide me through this? I also was looking at how to add the link identifier but it said I need a popup window but I cant see one. I thought that was done
    when I went to insert new symbol. It said something about actionscript linkage. I am familliar with perl, java and c++ so I can follow the code so far but I dont have much understanding of the flash interface. I made the 10 shape tiles and the 1 question mark tile
    in paint. They are .jpeg images.

  • Don't know where to start with replicating ZFS in a two node cluster

    I've got two systems in a lab I'm trying to use to make a ZFS based SAN for a VMWare cluster. I have experience with Linux and Gluster which was easy to have Active/Active High availability, however the benefits of ZFS I'm ok with Active/Passive. The issue I can't get around is finding out the solution in Solaris 11.2 that will mirror the data from the primary node to the secondary node and allow the secondary node to serve and receive data when the primary is down. This is a lab, so I'm not prepared or able to purchase a solution like EMC until I already have some proof of concept. Any ideas will be greatly appreciated

    Hi user8777368,
    for me this sounds like to failover the zfs filesystem from primary to secondary when the primary goes down. In such a case you can simply use the SUNW.HAStoragePlus resource with property "Zpools" to failover the zpool from one node to the other. The disks where the zfs is located should be in SAN and accessible from all nodes in the Solaris Cluster. There is no need to replicate data in such a scenario. An example is available in:
    Solaris Cluster How to use ZFS and Zpools with HAStoragePlus and to Get it Mounted Correctly (Doc ID 1019912.1)
    Does this help?
                Juergen

  • Where to start with Adobe Photoshop

    I need a program to do editing, composing, etc. that does more than Printshop. I know Adobe Photoshop is the "top of the line" for design and publishing. There are SO many different versions and upgrades. It is very confusing. I don't want to make a costly mistake.
    So.....what is the entry level version of Adobe Photoshop? Also do I need the upgrades that seem to be offered with each version? Thanks so much for any input.

    Unless you intend to use Photoshop for professional graphic design work (in which case you have a long learning curve ahead just to get conversant enough with the program to start), the much less expensive Photoshop Elements is all you need.
    http://www.graphic-design.com/Photoshop/vs_elements.html

  • HELP! I dont even know where to start with Time Machine!

    Hi there,
    Ive just bought an external hard drive to use for some audio software I use, and I thought I would use it for Time Machine backups too.
    I have set up 3 partitions, one for my audio, one for Time Machine and a small partition for other files.
    I ran Time Machine a couple days ago and today it ran out of space. It suggested I select files to include in Time Machine but I just want it to overwrite the backup each time. It is unlikely I would need weeks and weeks of backup because other than new files I create, whats on the main hard drive doesnt change too much.
    I cant seem to find any options to do with how often I back up, and its behaviour when the drive is full.
    Could someone please point me in the right direction?!
    Thanks

    http://docs.info.apple.com/article.html?path=Mac/10.5/en/11421.html
    http://www.apple.com/support/leopard/timemachine/
    The above are two good places to start, but there's a few things to know too:
    How big is your computer's HD?
    How big is your Time Machine HD?
    How big is each partition?
    Do you use Entourage?
    The most important thing to remember is that Time Machine backs up EVERYTHING unless you tell it otherwise. The exclude options are in the Time Machine preferences, and you can add whatever you want -- just remember it's not backed up. I asked about Entourage because it stores and constantly modifies one single file containing all your email, making Time Machine think it's a different version and keeping many copies of that file. It's fine if it's maybe 200 MB or so, but at 1 GB, different versions will eat your HD very quickly.

  • Where to start with with SAP Archiving!

    Hi All
    We are currently looking at launching an ECC Archiving Project to archive key objects. Currently we have set up regular archiving of IDOC, MM_EKKO, MM_MATBEL, RV_LIKP, SD_VBAK and SD_VBRK, but now we have come across a problem - what to do next?
    I know that we need to carry on archiving but I am not sure what the best areas are to target and how to find them out?
    Can anyone point me in the right direction, or is there Best Practice Documents / Guidelines to follow?
    Thanks all in advance

    Hi Phil,
    Sit down with your BPEs and functional team and understand which business objects are generating the biggest volumes and which areas are suffering performance issues. Then analyse number of entries generated on the head tables for those business objects and see if the volumes are truly concerning.
    After that, find out standard archiving objects that will provide archiving for those business objects.
    Also, you probably are already doing this, but don´t forget that along with archiving tasks, it´s extremely important to carry out a table reorganization of the tables that you archive as otherwise table space will not be reduced.
    Cheers.

  • I recently went through and cleared my startup disk because it was full, now some websites are not loading.....I must have deleted something but don't have any idea where to start with this. Any suggestions?

    gmail works fine and some sites come up quickly. Facebook and many other websited will not load.

    AND yea i afraid to sync my iphone and lose everything ;( i had everything perfect sync ing perfect ical,contacts,mail,apps and now sence new library I dont wana lose everything.....my hole life runs on my fone i need help bad

  • Slow connect by prior ... start with subquery in 9i

    Has anyone come across a performance problem (compared to 8i) when using hierarchical queries where the START WITH list is generated by a subquery? The culprit seems to be an extra visit to the subquery block as part of the CONNECT BY WITH FILTERING operation.
    For example, take a simple tree structure:
    CREATE TABLE tree
    id NUMBER,
    parentid NUMBER
    CONSTRAINT tree_pk PRIMARY KEY (id)
    ...and a subquery - here just a table called sample with a subset of the ids from the tree table:
    CREATE TABLE sample
    id NUMBER,
    CONSTRAINT sample_pk PRIMARY KEY (id)
    ...with which to drive the start points of the treewalk:
    SELECT parentid, id, label
    FROM tree
    CONNECT BY PRIOR parentid = id
    START WITH id IN
    SELECT id FROM SAMPLE
    With the tables populated and analyzed, I get this from 8i:
    Execution Plan
    .0......SELECT STATEMENT Optimizer=CHOOSE (Cost=2 Card=1 Bytes=19)
    .1....0...CONNECT BY
    .2....1.....NESTED LOOPS (Cost=1 Card=1280 Bytes=10240)
    .3....2.......INDEX (FAST FULL SCAN) OF 'ID_PK' (UNIQUE) (Cost=1 Card=1280 Bytes=5120)
    .4....2.......INDEX (UNIQUE SCAN) OF 'TREE_PK' (UNIQUE)
    .5....1.....TABLE ACCESS (BY USER ROWID) OF 'TREE'
    .6....1.....TABLE ACCESS (BY INDEX ROWID) OF 'TREE' (Cost=2 Card=1 Bytes=19)
    .7....6.......INDEX (UNIQUE SCAN) OF 'TREE_PK' (UNIQUE) (Cost=1 Card=1)
    Statistics
    .....0..recursive calls
    .....4..db block gets
    .15687..consistent gets
    ....59..physical reads
    .....0..redo size
    223313..bytes sent via SQL*Net to client
    .38276..bytes received via SQL*Net from client
    ...343..SQL*Net roundtrips to/from client
    .....3..sorts (memory)
    .....0..sorts (disk)
    ..5120..rows processed
    and this is 9i:
    Execution Plan
    .0......SELECT STATEMENT Optimizer=CHOOSE (Cost=2 Card=1 Bytes=19)
    .1....0...CONNECT BY (WITH FILTERING)
    .2....1.....NESTED LOOPS
    .3....2.......NESTED LOOPS (Cost=2 Card=1280 Bytes=10240)
    .4....3.........INDEX (FAST FULL SCAN) OF 'ID_PK' (UNIQUE) (Cost=2 Card=1280 Bytes=5120)
    .5....3.........INDEX (UNIQUE SCAN) OF 'TREE_PK' (UNIQUE)
    .6....2.......TABLE ACCESS (BY USER ROWID) OF 'TREE'
    .7....1.....NESTED LOOPS
    .8....7.......BUFFER (SORT)
    .9....8.........CONNECT BY PUMP
    10....7.......TABLE ACCESS (BY INDEX ROWID) OF 'TREE' (Cost=2 Card=1 Bytes=19)
    11...10.........INDEX (UNIQUE SCAN) OF 'TREE_PK' (UNIQUE) (Cost=1 Card=20480)
    12....1.....INDEX (UNIQUE SCAN) OF 'SAMPLE_PK' (UNIQUE) (Cost=1 Card=1 Bytes=4)
    Statistics
    .....1..recursive calls
    .....1..db block gets
    .20525..consistent gets
    ....72..physical reads
    ...120..redo size
    224681..bytes sent via SQL*Net to client
    .38281..bytes received via SQL*Net from client
    ...343..SQL*Net roundtrips to/from client
    .....9..sorts (memory)
    .....0..sorts (disk)
    ..5120..rows processed
    ..so, about another 5000 logical reads, corresponding to the extra access of the sample table at the bottom of the query plan. So instead of just visiting the START WITH subquery once, to kick off the treewalk, I seem to be revisiting it for every row returned. Not too bad if that happens to be a unique index scan as here but that's not always the case.
    I know I've got new options for re-writing this as a join under 9i, I'm just curious about those extra lookups and why they're necessary.
    Cheers - Andrew

    There is undocumented parameter in Oracle 9i "_old_connect_by_enabled"
    which controls the behavoiur of hierarchy queries in 9i and above:
    You can try to return to 8i behaviour using it:
    SQL> SELECT parentid, id
      2  FROM tree
      3  CONNECT BY PRIOR parentid = id
      4  START WITH id IN
      5  (
      6  SELECT id FROM SAMPLE
      7  )
      8  /
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=1 Card=1 Bytes=26)
       1    0   CONNECT BY (WITH FILTERING)
       2    1     TABLE ACCESS (BY INDEX ROWID) OF 'TREE' (TABLE)
       3    2       NESTED LOOPS (Cost=2 Card=1 Bytes=26)
       4    3         TABLE ACCESS (FULL) OF 'SAMPLE' (TABLE) (Cost=2 Card
              =1 Bytes=13)
       5    3         INDEX (UNIQUE SCAN) OF 'TREE_PK' (INDEX (UNIQUE)) (C
              ost=0 Card=1 Bytes=13)
       6    1     NESTED LOOPS
       7    6       BUFFER (SORT)
       8    7         CONNECT BY PUMP
       9    6       TABLE ACCESS (BY INDEX ROWID) OF 'TREE' (TABLE) (Cost=
              1 Card=1 Bytes=26)
      10    9         INDEX (UNIQUE SCAN) OF 'TREE_PK' (INDEX (UNIQUE)) (C
              ost=1 Card=1)
      11    1     TABLE ACCESS (FULL) OF 'TREE' (TABLE) (Cost=1 Card=1 Byt
              es=26)
      12    1     INDEX (UNIQUE SCAN) OF 'SAMPLE_PK' (INDEX (UNIQUE)) (Cos
              t=1 Card=1 Bytes=13)
    SQL> alter session set "_old_connect_by_enabled" = TRUE;
    Session altered.
    SQL> SELECT parentid, id
      2  FROM tree
      3  CONNECT BY PRIOR parentid = id
      4  START WITH id IN
      5  (
      6  SELECT id FROM SAMPLE
      7  )
      8  /
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=1 Card=1 Bytes=26)
       1    0   CONNECT BY
       2    1     NESTED LOOPS (Cost=2 Card=1 Bytes=26)
       3    2       TABLE ACCESS (FULL) OF 'SAMPLE' (TABLE) (Cost=2 Card=1
               Bytes=13)
       4    2       INDEX (UNIQUE SCAN) OF 'TREE_PK' (INDEX (UNIQUE)) (Cos
              t=0 Card=1 Bytes=13)
       5    1     TABLE ACCESS (BY USER ROWID) OF 'TREE' (TABLE)
       6    1     TABLE ACCESS (BY INDEX ROWID) OF 'TREE' (TABLE) (Cost=1
              Card=1 Bytes=26)
       7    6       INDEX (UNIQUE SCAN) OF 'TREE_PK' (INDEX (UNIQUE)) (Cos
              t=1 Card=1)
    Rgds.

  • Slow connect by ... start with subquery in 9i

    Has anyone come across a performance problem (compared to 8i) when using hierarchical queries where the START WITH list is generated by a subquery? The culprit seems to be an extra visit to the subquery block as part of the CONNECT BY WITH FILTERING operation.
    For example, take a simple tree structure:
    CREATE TABLE tree
    id NUMBER,
    parentid NUMBER
    CONSTRAINT tree_pk PRIMARY KEY (id)
    ...and a subquery - here just a table called sample with a subset of the ids from the tree table:
    CREATE TABLE sample
    id NUMBER,
    CONSTRAINT sample_pk PRIMARY KEY (id)
    ...with which to drive the start points of the treewalk:
    SELECT parentid, id, label
    FROM tree
    CONNECT BY PRIOR parentid = id
    START WITH id IN
    SELECT id FROM SAMPLE
    With the tables populated and analyzed, I get this from 8i:
    Execution Plan
    .0......SELECT STATEMENT Optimizer=CHOOSE (Cost=2 Card=1 Bytes=19)
    .1....0...CONNECT BY
    .2....1.....NESTED LOOPS (Cost=1 Card=1280 Bytes=10240)
    .3....2.......INDEX (FAST FULL SCAN) OF 'ID_PK' (UNIQUE) (Cost=1 Card=1280 Bytes=5120)
    .4....2.......INDEX (UNIQUE SCAN) OF 'TREE_PK' (UNIQUE)
    .5....1.....TABLE ACCESS (BY USER ROWID) OF 'TREE'
    .6....1.....TABLE ACCESS (BY INDEX ROWID) OF 'TREE' (Cost=2 Card=1 Bytes=19)
    .7....6.......INDEX (UNIQUE SCAN) OF 'TREE_PK' (UNIQUE) (Cost=1 Card=1)
    Statistics
    .....0..recursive calls
    .....4..db block gets
    .15687..consistent gets
    ....59..physical reads
    .....0..redo size
    223313..bytes sent via SQL*Net to client
    .38276..bytes received via SQL*Net from client
    ...343..SQL*Net roundtrips to/from client
    .....3..sorts (memory)
    .....0..sorts (disk)
    ..5120..rows processed
    and this is 9i:
    Execution Plan
    .0......SELECT STATEMENT Optimizer=CHOOSE (Cost=2 Card=1 Bytes=19)
    .1....0...CONNECT BY (WITH FILTERING)
    .2....1.....NESTED LOOPS
    .3....2.......NESTED LOOPS (Cost=2 Card=1280 Bytes=10240)
    .4....3.........INDEX (FAST FULL SCAN) OF 'ID_PK' (UNIQUE) (Cost=2 Card=1280 Bytes=5120)
    .5....3.........INDEX (UNIQUE SCAN) OF 'TREE_PK' (UNIQUE)
    .6....2.......TABLE ACCESS (BY USER ROWID) OF 'TREE'
    .7....1.....NESTED LOOPS
    .8....7.......BUFFER (SORT)
    .9....8.........CONNECT BY PUMP
    10....7.......TABLE ACCESS (BY INDEX ROWID) OF 'TREE' (Cost=2 Card=1 Bytes=19)
    11...10.........INDEX (UNIQUE SCAN) OF 'TREE_PK' (UNIQUE) (Cost=1 Card=20480)
    12....1.....INDEX (UNIQUE SCAN) OF 'SAMPLE_PK' (UNIQUE) (Cost=1 Card=1 Bytes=4)
    Statistics
    .....1..recursive calls
    .....1..db block gets
    .20525..consistent gets
    ....72..physical reads
    ...120..redo size
    224681..bytes sent via SQL*Net to client
    .38281..bytes received via SQL*Net from client
    ...343..SQL*Net roundtrips to/from client
    .....9..sorts (memory)
    .....0..sorts (disk)
    ..5120..rows processed
    ..so, about another 5000 logical reads, corresponding to the extra access of the sample table at the bottom of the query plan. So instead of just visiting the START WITH subquery once, to kick off the treewalk, I seem to be revisiting it for every row returned. Not too bad if that happens to be a unique index scan as here but that's not always the case.
    I know I've got new options for re-writing this as a join under 9i, I'm just curious about those extra lookups and why they're necessary.
    Cheers - Andrew

    Hi Andrew,
    Just noticed you message. I have exact same performance problem. It's just killing ant other processes and runs forever.
    Could you please share you experience how to deal with "CONNECT BY" in 9i and also could you please tell about this option to re-write CONNECT BY as a join?
    Thank you very much,
    Victor

  • Don't know how to start with SIP

    am an undergraduate student studying network programming course, and we were asked to implement simple SIP based application using java and RTP sockets that at least can register and make a phone call,the problem is that i don't know how and where to start with this project ,so is there any ideas!!

    To know more about SIP use the RFC. The RFC for SIP can be found in IETF organization homepage and the RFC number for SIP is 3261. Go through the RFC of SIP and write codes based on the reading.
    I hope you wont have any problem with that.
    do some research on SIP before you start.

  • 'Mastered' CSS and design, moving to development, where to start?

    Having got to grips after months of trying with the design
    using dreamweaver, using css, i now wish to begin learning
    application development to add some interactivity to my sites. The
    problem being i do not now know where to start with this. Should i
    learn some basic programming before heading off into SQL or PHP?
    Furthermore which of these should i head off into and are books the
    best route for a novice?
    Thanks a lot for your help
    lukey

    lukey233 wrote:
    > Having got to grips after months of trying with the
    design using dreamweaver,
    > using css, i now wish to begin learning application
    development to add some
    > interactivity to my sites. The problem being i do not
    now know where to start
    > with this. Should i learn some basic programming before
    heading off into SQL or
    > PHP? Furthermore which of these should i head off into
    and are books the best
    > route for a novice?
    No, you don't need to learn basic programming before diving
    into
    PHP/MySQL. Dreamweaver will do much of the code generation
    for you, but
    it is important to have a general understanding of how PHP
    works so that
    you can customize the code to suit your own needs better.
    If you're looking for a book, one you should consider is
    mine,
    "Foundation PHP for Dreamweaver 8". Naturally, I think it's
    the best
    thing since sliced bread, but a lot of other people seem to
    like it
    (read the reviews on Amazon). The book assumes no prior
    knowledge of
    PHP, and gives you a basic grounding in the language before
    showing you
    how to use all the Dreamweaver server behaviors. It also
    shows you how
    to build some simple server behaviors of your own. More
    details on my
    website:
    http://foundationphp.com/dreamweaver8/
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • CRIO - Where to start out?

    Hi all,
    I've been assigned a project which involves using a cRIO/FPGA/Real-Time LabVIEW Modules. I have a little knowledge of using LabVIEW but I've never done anything besides very simple VIs.
    Are there any recommended books for cRIO? I've looked through some documents on the NI website but I'm not really sure where to start with FPGA/Real-time - any advice would be much appreciated.
    Thanks,
    Chris

    Hi Chris,
    I found some comprehensive background information on FPGA programming here:
    <http://zone.ni.com/devzone/cda/tut/p/id/3555>
    That is if you plan to develop large parts of your application on the FPGA, not using the scan engine. In case you're not sure, read these two:
    <http://zone.ni.com/devzone/cda/tut/p/id/3357>
    <http://zone.ni.com/devzone/cda/tut/p/id/7693>
    Regards,
    Simo

Maybe you are looking for

  • Scrollbar problem - any ideas?

    I know another scrollbar problem...ive read the posts but cant solve it. Anyone got any ideas? got a program called Map which draws a map (using paint()) of a web site. I can get it to work but often there are so many links they go off the page.I nee

  • Posting type 9 reset and reverse clear

    Dear Expert, In case of bank statement has information that the transaction is cancelled, how can we handle this kind of transaction? I see in posting rule, there is posting type '9' reset and reverse clear. However when I setup and run it foreground

  • 1.99 purchase costs nearly $500.00!!

    Hi, I feel so sick, have just in the last hour recieved a phone call from my bank, warning me of larger suns of money being tallied on my credit card through iTunes?, and had I been on there? Well yes I had, to purchase my 3 young sons on their drago

  • Validation to Identify Duplicate Descriptions in DRM

    I am wanting to add a verification to keep us from creating a new node with a description that already exists. I have created other verifications successfully, but I'm not sure what query/property combination can identify if a description is already

  • Warehouse Stock

    Hi Frds What is the table and field name of the Warehouse Stock of Material ? Thanks Pari