Director Survey - Last Hours

Hi all,
This will be my last post asking for people to do my survey.
My survey
will be closed by the end of this weekend. Current numbers
stand at:
Total started survey: 377
Total Completed Survey: 272
I really wanted to get to 400 and maybe 300 completed. So, if
there is
anyone here that is still on the fence on the survey, please
fill it in.
http://www.deansdirectortutorials.com/survey/DirectorRoadmap/
Thanks.
regards
Dean
Director Next Roadmap Survey
http://www.deansdirectortutorials.com/survey/DirectorRoadmap/
Director Lecturer / Consultant / Director Enthusiast
http://www.deansdirectortutorials.com/
http://www.multimediacreative.com.au
email: [email protected]

Richard wrote:
> Now, how can we arrange to tape open Adobe's eyes and
make them read the
> results line by line?
Hi Richard,
I have forwarded the link to Adobe people and the response
has been positive
in that they do appreciate the data. It will be reviewed and
discussed on
their end. Someone (who filled in the survey) asked if I
could let everyone
know what Adobe say after their review of the survey results.
That side of
things may be confidential. But, anything I can share, I
will. Now, when you
see Director 11 come out and read all the new features, if
you see an
overlap with the survey results, I'll take 100% credit for
that ;)
regards
regards
Dean
Director Lecturer / Consultant
http://www.fbe.unsw.edu.au/learning/director/
http://www.multimediacreative.com.au

Similar Messages

  • I have spent the last hour trying to upgrade my Iphone using ITunes.  Now, my phone will not work at all.  I think the backup is on my computrer, but it appears now to upload.  What to do?

    I have spent the last hour trying to upgrade my IPhone to IOS 7 using ITUnes.  Now, my phone wil not work at all.  I think it is backed up on my computer, but I am unable to get it to download to the phone.  What to do?

    Thanks, as it still will not work, I assume it is damaged and needs to be sent in for repairs.
    Tim

  • Within the last hour, I noticed that my older MacBook Pro, while I was playing it in iTunes, lost contrast on the screen.  I am sorry, but I did not take exact notes on this event.  Around the same time, I did do a back up, uploaded software, etc.

    Within the last hour, I noticed that my older MacBook Pro, while I was using iTunes, lost contrast on the screen.  I am sorry, but I did not take exact notes on this event.  Around the same time, I did do a back up, uploaded Apple software, etc.
    I'm using two MacPros simultaniously, the old one for iTunes, and the new one for the other things.  My new one has no problems, so am wondering if there is an easy way to correct the older MacPro's contrast problems.  The computer is over three years old, and I'm wondering also if this failure is an aging sign.  (I also have other problems, such as a noisy DVD drive, which is part of the reason I bought a new MacBook Pro.)

    Is the older MBP a pre-Unibody model from early 2008? If so, it could be having this problem:
    http://support.apple.com/kb/ts2377
    If so, you would be entitled to a free repair.
    The lost contrast could be considered distorted video.
    Do you have an external monitor? If the external shows the same lost contrast, the graphics chip is likely the culprit. If the external is OK, then you probably have an issue with the built in display or possibly with its connections.
    You may also want to check in Universal Access to see if the contrast bar is set in its normal position (all the way to the left).
    Apple has a special test they can run to diagnose the NVIDIA issue, so if you have access to an Apple Store, make an appointment at the genius bar to have it run.
    Good luck!

  • Hi, I have just tried to update the iPhone software and it appears to be updating but the screen on my phone has had the same picture of the apple and its at the same spot of loading (about 3 quarters) for the last HOUR!! help!

    Hi, I have just tried to update the iPhone software and it appears to be updating but the screen on my phone has had the same picture of the apple and its at the same spot of loading (about 3 quarters) for the last HOUR!! help!

    oh and the device is not being recognised by itunes now either.

  • Averaging over the last hour and last eight hours.

    This is fairly simple but I'm not sure what a "good" approach is. Basically I need to track how many times a user has performed an action over the last hour and last eight hours. I'll receive a notification of some sort when they perform this action and could get the current time, but I'm not sure what a fast way of determining how many times this has occurred in a given time period is.
    I was thinking perhaps an array with the time of each in milliseconds and just find the first index that was < 8 hours or < 1 hour ago and then subtract the index from the current size. I think that would be problematic though. To keep the array from continuously growing I'd have to shift everything over to the left which means an expensive arraycopy. Perhaps if I only did the resizing when there were > 20 or elements I no longer care about or something would help, but then I'd have to iterate over 20 elements I don't care about everytime it's calculated, which is once a second.
    Any algorithms that will solve this?

    Here is a method with a granularity of a minute (i.e.
    it only updates the average value every minute - you
    can change it to give whatever granularity you want)
    Keep an array with 60 elements in it. The array
    counts the number of times that the user performed
    the action each minute.
    The array in indexed modulo real time, and you make
    entries based on actual time of day. So when a user
    performs an action at 8:38:45 you increment slot 38.
    Each slot counts the number of actions that took
    place in that particular minute. When the next minute
    rolls around, you move to the next slot, set the
    value to zero (thus throwing out the events that
    happened over an hour ago, and prepare to count the
    new events)
    The sum of the entire array is of course the total
    number of events that have taken place in the last
    hour.
    You do not need to actually run through the array and
    total the events every time you want to calculate the
    average. You can use the fact that you increase the
    total by one every time you get a new event and you
    decrease the total by X everytime you zero out a slot
    that had X for its event count.
    So you can just keep a single value, Total, along
    with your array that goes up by one on every event
    and then drops back a little every minute, when you
    throw out the hour old events.That is probably a good solution to the question I posed, but I realize now I was not thorough or accurate enough in describing the context and requirements. I don't think that will work without a lot of unnecessary memory, but maybe I'm wrong.
    The user action is actually the successful completion of entering a form, a bill to be more precise. I expect this to happen 100-300 times an hour to give an idea of the frequency. Given a period of time, if they've been at it for that period of time or longer I need to find the number of bills completed in that most recent period of time. Otherwise, I need to use what is available to predict what they will reach in that period of time. In other words, if the time period is an hour I need to figure out how many bills were completed in the last hour, but if they've been going for only five minutes I need to predict what they will have completed in an hour including those last five minutes. Then I need to do the same thing for seven hours, using the last seven hours or less of data.
    I guess I'd just have to use a granularity of a minute or less and calculate how many bills over how many minutes and make a prediction on that? I suppose I was hoping for something more precise, but now that I think about it that will probably suffice.
    How would you implement it though? Create a "minute" array of size 60 initially, then when reaching the end of that array adding the total for that array to an "hourly" array (keeps track of bills in that hour) and then start over? I guess then you'd just have to add each from the hourly array to the current total and calculate based upon that. At any given time I'd have the number of bills processed in the last x hours and y minutes, which is enough to calculate how much can be completed at that rate in a given hour or seven hour day.
    I'll try this tomorrow when I get to work, thank you very much I was needlessly complicating it with timestamps. In fact, this inadvertently (or perhaps purposefully?) solves an issue with not calculating time when a user is at lunch or on break. At least I think it does.

  • Director Survey - results are out

    Hi all,
    I have finally finished collating all the data from the
    survey after a
    few very intense days of working through all the responses.
    There were
    227 responses in total. Since the survey gave the respondent
    the ability
    to choose features rather than giving a specified range from
    which they
    could choose, it did make it very time consuming to collate.
    However, I
    hope that the results are more valuable because of this
    approach.
    The results are at:
    http://www.fbe.unsw.edu.au/learning/director/survey/games/
    In the top feature request page, I have given the results in
    a table as
    well as a graph. They are based on a weighted average so
    reflect final
    order of feature requests based on the responses. You'll
    notice that I
    have linked many of the feature requests to enable you to see
    the
    comments associated with them as well as the range of things
    covered by
    that grouping.
    Let me know if anything is unclear (or even if everything is
    clear).
    Thanks for your participation. And thanks for people that
    helped in
    other ways, from spreading the word to helping sort the data.
    regards
    Dean
    Director Lecturer / Consultant
    http://www.fbe.unsw.edu.au/learning/director/
    http://www.multimediacreative.com.au

    Richard wrote:
    > Now, how can we arrange to tape open Adobe's eyes and
    make them read the
    > results line by line?
    Hi Richard,
    I have forwarded the link to Adobe people and the response
    has been positive
    in that they do appreciate the data. It will be reviewed and
    discussed on
    their end. Someone (who filled in the survey) asked if I
    could let everyone
    know what Adobe say after their review of the survey results.
    That side of
    things may be confidential. But, anything I can share, I
    will. Now, when you
    see Director 11 come out and read all the new features, if
    you see an
    overlap with the survey results, I'll take 100% credit for
    that ;)
    regards
    regards
    Dean
    Director Lecturer / Consultant
    http://www.fbe.unsw.edu.au/learning/director/
    http://www.multimediacreative.com.au

  • Last Hour Records in Select Expert

    I am using Crystal Reports version 10 and want create a formula which will select records created in the last hour.
    Is this possible?
    Within the select expert, you have existing formulas/date ranges such as LastFullWeek/LastFullMonth/Last7Days but I need a formula which will select LastFullHour.
    The field I am using is {Interaction.Time_Created} which contains records in the HH:MM format.
    Thanks in advance

    This will give you the last 60 minutes from the second the report was run:
    {table.datetimefield} in dateadd("h",-1,currentdatetime) to currentdatetime
    And if you wanted the last completed hour, then use this:
    in dateadd("h",-1,dateadd("n",-minute(currentdatetime),dateadd("s",-second(currentdatetime),currentdatetime))) to_
    dateadd("n",-minute(currentdatetime),dateadd("s",-second(currentdatetime),currentdatetime))
    The underscore is there by design

  • Pulling all Purchase Order documents that where changed in last hour.

    What is the best method for pulling all purchase order documents that have changed in the last hour? We want to create this program and schedule it as a job that runs every hour.
    In the backend our server stores all documents in GMT Time while our users have several time zones. What function or module should we call to get the current time.
    Should we be using: sy-uzeit - 3600.
    Or will this not produce the required results.
    Regards

    Try prog :<b>RM07MIGO_PO_HISTORY</b>
    Hope this’ll give you idea!!
    <b>Pl... award the points.</b>
    Good luck
    Thanks
    Saquib Khan
    "Some are wise and some are otherwise"
    PS.
    <b>Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!</b>

  • HT1438 I did a master reset on my iphone4 the apple sign poped up and now for the last hour there is just a spinning icon as if something's loading

    I did a master reset on my iphone4 the apple sign poped up and now for the last hour there is just a spinning icon as if something's loading helpp

    DFU Mode Restore
    Open iTunes on computer. Connect iPhone to computer with USB Cable. Then hold both home and power buttons for exactly 10 seconds, then release the Power button, keep holding the Home button until iTunes recognizes iPhone in Recovery Mode. Usually about 20 seconds of holding Home button. If the screen is black this is DFU Mode. Then click Restore button of iTunes.

  • 421 4.4.5 Too many messages from this host last hour

    Hi, we are in a migration process from a Kerio system to Exchange 2013.
    Everything is working fine, except that we have been experiencing this error on the logs and the Exchange 2013 users are getting returned emails.
    The remote server is 10.10.10.85
    Remote Server at 10.10.10.85 (10.10.10.85) returned '400 4.4.7 Message delayed'
    19/12/13 7:21:57 p. m. - Remote Server at 10.10.10.85 (10.10.10.85) returned '451 4.4.0 Primary target IP address responded with: "421 4.4.5 Too many messages from this host last hour." Attempted failover to alternate host, but that did not succeed.
    Either there are no alternate hosts, or delivery failed to all alternate hosts. The last endpoint attempted was 10.10.10.85:25'
    My question is, is Exchange rejecting the messages or is the other system telling Exchange to slow things a bit?

    To update this.
    We found out that the other email system was configured NOT to accept more than 100 messages per hour from same sending IP.
    Once we removed the configuration value from the other email system, all started working.

  • Filter row data to Show Last Hour data

    Hi ALL
    I need to apply filter on Row Group in report based on last hour data from current hour .
    I'm using;
    =Datepart("h",dateadd("H",-1,now))
    On Row Group
    but it does not show any row.
    but When i used ;
    =Datepart("h","2013-12-20 01:00:00")
    It Works ..
    Kindly help me how can i filter row data to  Show Last Hour data.
    Thanks

    Thos works fine for me
    =Datepart(DateInterval.Hour,DATEAdd(DateInterval.Hour,-1,Now()))
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • HT4482 Just bought WPS Reader + and I've only gotten a "loading" window for last hour. can anyone help or explain?

    Just bought WPS Reader + and I've only gotten a "loading" window for last hour. Can anyone help or explain?

    First off, KONGRACHULATIONS!!! 
    Next, if you can't even drive to the library, David Pogue's excellent Missing Manual books are also available for either online (Safari service, unrelated to Apple's browser) or computer (PDF) viewing. Just be sure to get the right ones for your Mac's operating system (10.5 = Leopard, 10.6 = Snow Leopard, 10.7 = Lion, exact info available in the About this Mac item on the Apple menu).
    http://shop.oreilly.com/category/browse-subjects/apple-mac/mac-os-x.do

  • Wh must I frequently clear the last hour of history to get gmail to load

    Every time I attempt to load gmail I get the loading indication but nothing happens until I clear the last hour of history.

    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    If clearing cookies doesn't work then it is possible that the <i>cookies.sqlite</i> file that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookie files like <b>cookies.sqlite-journal</b> in the Firefox profile folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies
    You can also test if it works in a new New Private Window

  • I have downloaded audiobook but it wont play the last hour of it, just blank?

    I have downloaded a few audiobooks on my ipod and the download is complete but it wont play the last hour of the audiobook? any ideas?

    How to report an issue with Your iTunes Store purchase

  • My iPhone 4S will not update it will start and at the last hour it says error what can I do

    Everytime I try and update my iPhone 4S to ios7 it will start to download and at the last hour it will say error update failed i have tried everyday for the last week

    You either need to go somewhere with a MUCH stronger and faster WiFi signal or do the update using your computer and iTunes.
    On my PC the download took 10 minutes,

Maybe you are looking for

  • This is the regular status of the memory of my macbook pro. Do you think I need a RAM upgrade?

    Hi there, I'm hoping to seek the expert views of the community here. I have a MacBook Pro, Late 2011, 17 inch. Running latest version of Mavericks. Speed seems to have slowed somewhat, perhaps since I upgraded to Mavericks, but not certain about that

  • CHECK PRINTING SET UP

    Hi , Please let me know how to setup check printing in oracle appsR12 ..it is urgent please help us its very greatful to ... Thanks, User13100220. Edited by: user13100220 on Oct 19, 2012 11:04 AM

  • Sequence of the FREE CHARACTERISTICS that appears in report

    How can i change the Sequence of the FREE CHARACTERISTICS that appears in report. I changed it in Query Designer but they are not appearing in the same as it listed in Query Designer as in report In the report they are appearing in the alphabeatical

  • SAP Uninstalltion Process

    Dear Sir, I am Student and Learnind SAP Basis. I want to know how to uninstall the SAP from system?

  • Send a mail

    Hi, I'm looking for a Forté command to send automatically a mail with a body message and a file attached . I have tried these lines: Cmd.setvalue('start mailto:adresshere.com?subject=Trial'); task.part.operatingsystem.runCommand(command=Cmd); But the