PICED beta sugestion

Discussion in 'C-Touch/HomeGate/SchedulePlus/PICED Software' started by Rossco, Apr 18, 2005.

  1. Rossco

    Rossco

    Joined:
    Aug 15, 2004
    Messages:
    61
    Likes Received:
    0
    Location:
    Victoria
    Have had a good play with the new beta software over the last few days.
    Logic engine is great well done.
    I have a few sugestions to make pages a lot easier to create.

    1. I would like to be able to select, copy and paste multiple objects through holding down the shift key, as it is a lot quicker in making pages up without selecting all objects.

    2. Also could the keyboard arrows be used to inch the objects around the page to make lining up buttons and objects a lot easier.

    I use Crestron a lot and find I use these functions all the time.

    Again great job keep up the good work.
     
    Rossco, Apr 18, 2005
    #1
  2. Rossco

    Richo

    Joined:
    Jul 26, 2004
    Messages:
    1,257
    Likes Received:
    0
    Location:
    Adelaide
    Hi Rossco,

    Thanks for the great feedback. Your suggestions certainly sound good. I'm pretty sure Darren has these feature requersts logged, but I'll check and add them if they aren't already there.
     
    Richo, Apr 19, 2005
    #2
  3. Rossco

    johnl

    Joined:
    Aug 12, 2004
    Messages:
    23
    Likes Received:
    0
    "1. I would like to be able to select, copy and paste multiple objects through holding down the shift key, as it is a lot quicker in making pages up without selecting all objects."

    This can be done with the Ctl key.

    "2. Also could the keyboard arrows be used to inch the objects around the page to make lining up buttons and objects a lot easier."

    This can be done with Ctl + arrow keys. If small movements are required, you should also set the grid snap to 1mm.
     
    johnl, Apr 19, 2005
    #3
  4. Rossco

    Rossco

    Joined:
    Aug 15, 2004
    Messages:
    61
    Likes Received:
    0
    Location:
    Victoria
    johnl

    Problem with crl key is you have to hold down to move objects with arrow keys.
    If you let it go and push a arrow key, the next time you left mouse click you get a shape on the page.
    It is not the same.
     
    Rossco, Apr 19, 2005
    #4
  5. Rossco

    Darren Senior Member

    Joined:
    Jul 29, 2004
    Messages:
    2,361
    Likes Received:
    0
    Location:
    Adelaide, South Australia
    It isn't exactly the same, but it is a very standard way of doing things in various software packages.

    If you read the help file topic on keyboard shortcuts, you may find a whole lot of other stuff you weren't aware of.
     
    Darren, Apr 20, 2005
    #5
  6. Rossco

    jay

    Joined:
    Nov 2, 2004
    Messages:
    51
    Likes Received:
    0
    Location:
    Brisbane
    Some rulers or show grid options would be nice too (aka Adobe Illustrator).
    Cheers.
     
    jay, Apr 20, 2005
    #6
  7. Rossco

    Rossco

    Joined:
    Aug 15, 2004
    Messages:
    61
    Likes Received:
    0
    Location:
    Victoria
    More sugestions

    1. It would be great if PICED could also be able to read current from professional series output units.
    I can only find Temperature, Light level and Voltage

    2. I see a timer in the logic only counts up, is there any way I can have a variable counter counting down. EG: select 5mins on a variable then have that count down showing time remaining.

    Keep up the good work.
     
    Rossco, Apr 21, 2005
    #7
  8. Rossco

    Darren Senior Member

    Joined:
    Jul 29, 2004
    Messages:
    2,361
    Likes Received:
    0
    Location:
    Adelaide, South Australia
    If you have timer 1 counting up to 300 seconds (5 minutes), then you can get a counting down value with :

    300 - TimerTime(1)
     
    Darren, Apr 22, 2005
    #8
  9. Rossco

    Rossco

    Joined:
    Aug 15, 2004
    Messages:
    61
    Likes Received:
    0
    Location:
    Victoria
    Darren

    I am trying to put in a interger of time in there to show the count down in hr, min & seconds.
    KitchenTimerTime is a Integer of Time
    KitchenTimer is a Integer of Time
    Eg.
    once (GetBoolSystemIO("Kitchen Timer Start") = true) then
    begin
    TimerSet(2 ,0);
    end;

    if TimerTime(2) > 0 then
    begin
    SetIntSystemIO("Kitchen Timer", GetIntSystemIO("Kitchen TimerTime" - TimerTime(2)));
    end;

    I get a Logic runtime error
    Error R007 Invalid system I/O Type
    I thought since times are a intergers so would the timers.
    any help on this would be great.

    Also is there any future thought of allowing logic engine to have a link to HTML for allowing typing in of URL's.
    Regards,
    Rossco
     
    Last edited by a moderator: Apr 22, 2005
    Rossco, Apr 22, 2005
    #9
  10. Rossco

    Darren Senior Member

    Joined:
    Jul 29, 2004
    Messages:
    2,361
    Likes Received:
    0
    Location:
    Adelaide, South Australia
    The code should be :

    SetIntSystemIO("Kitchen Timer", GetIntSystemIO("Kitchen TimerTime") - TimerTime(2));

    One of your closing brackets was in the wrong place.

    No. Why would you want to do this ?
     
    Darren, Apr 26, 2005
    #10
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.