A sample project with basic problems to solve. Lets make it as a tutorial!

The project is attached it's supposed to end up being a simple file manager, so you can browse the files and folders using the list component.
I've done some part which is the attached one. Now I meet some problems since it's my first project and I need some help so I can solve them. I will try to make this project available to everyone because I think in it's end it will really cover the basics you need to know to get started making more complex stuff.
So I zipped the php folder with just 1 file that currently has script for browsing the current directory. At this stage of the development I would only like to be able to make the files and folders that the php returns to be displayed correctly in the list, the files no icon and the folders with the folder.png icon. To have a nice padding so they look good in the list and have a nice hover.
Problems:
1) warning: unable to bind to property 'name' on class 'Array' (class is not an IEventDispatcher)
Note: that's the first problem you will see when you setup the project, change the php server urls and run it.
http://flexponential.com/2009/11/11/binding-warnings-when-using-object-in-a-list -dataprovider/ - this post has some info on the problem but the example is with static mxml data and I am not sure how to fix this when the data comes from the php.
2) what's the proper way to make some customizations on the data received, so to speak I need to check if the type of the file is "dir", that would mean it's a folder and should display the folder icon and if it's not not to display any image infront of the file. I am really not sure how to do that so any solutions are welcome.
3) What's the most convinient way to adjust the padding between each line in the list and padding for the icon and label inside the line.
I think solving these 3 problems will be a huge step forward to finish and have a complete structure which could help more people understand how things work.
Everyones help will be greatly appreciated

Anamorphicizer didn't work.
I can use Quicktime Pro cause I currently have Quicktime X on my computer (snow leopard) which doesn't have a Pro upgrade.
Any myDVDedit is really confusing to use do I have to export the DVD into a VIDEO_TS file to fix it? I'm still puzzled

Similar Messages

  • Sample Project with ni hardware using NI-DAQmx Driver

    hi, i need a Sample Project with NIi hardware using NI-DAQmx Driver

    Please stick to one thread. You've created several that are asking the same thing and the answer remains the same - Help> Find Examples if using LabVIEW. Other programming languages come with their own set of examples.

  • Please help me about samples project with COM UI DI

    I run sample project
    C:\Program Files\SAP\SAP Business One SDK\Samples\COM UI DI\VB.NET\AddColumn
    but i can't test becoz i don't know screen b1 matching with oForm.TypeEx = "65270"
    Please tell me about screen b1 for test this code

    I don't know the answer right away, but:
    - take a look into the FAQ in the Wiki (https://www.sdn.sap.com/irj/sdn/wiki?path=/display//b1/faq)
    - there go to "UI Forms"
    ...and find these links (mid-term we want of course more information directly available in the Wiki...):
    List of form IDs:
    /people/lutz.morrien3/blog/2004/10/01/all-sap-business-one-formtypes-at-one-look
    Update: https://weblogs.sdn.sap.com/cs/user/view/cs_msg/14059
    The hints in the update will help you to get the title of the form - and thus will give you a hint where to look for the form. For your convenience I have copied the "relevant code here:
    Dim Info As FormInfo = Application.ResourceData.GetFormInfo("65270")
    FormInfo.Title
    ...gives you the title of the form

  • Any AE plugin Xcode sample project with cuda for mac?

    Hello everyone,
    As suggested by the AE sdk, I start to create my plugin with sample project from the SDK.
    However, I can not find an example with CUDA support for mac.
    Now I have some troubles to setup an adobe plugin project with CUDA support for mac, as cuda files are compiled by nvcc.
    Anybody can tell me where I can find an example to build an AE plugin with CUDA for mac?
    Thanks for your help.

    For anyone following along, I’ve been able to create a sample project that uses CUDA in Xcode, and will include it in the next PPro SDK.  If anyone is interested in getting it sooner, let me know.
    The most useful post I saw on this was this single post here:
    https://devtalk.nvidia.com/default/topic/386632/cuda-programming-and-performance/integrati on-with-xcode-anyone-created-a-cuda-template-project-/post/2743943/#2743943

  • How do I create a NetBeans project with multiple JavaFX (FXML) dialogs?

    I'm very new to Java and JavaFX, so forgive what is probably a question asked a thousand times, but I can't seem to find the answer.
    I come from a Visual Studio (C# with WPF) background. I'm used to creating a Solution then adding a Project for each dialog/window that gets included in the Solution. Each dialog/window is a class derived from Window, and I simply create an instance of that class when I need to use the dialog.
    What I need to do is have a main window (stage) that contains two lists of participants (a red team and a blue team).
    Then I need a separate dialog for entering the information for the participant. So when a button on the main stage is pressed ("Add Red Participant"), I want to open the ParticipantDialog. When the "OK" or "Close" button on the Participant dialog is clicked, I want the dialog to be able to return a participant object to the main stage.
    Then the main stage adds that participant to the appropriate list.
    What I've gathered so far is that I will be creating an FXML file for the Participant dialog (and I assume an associated controller). Then when the "Add" button is pressed, I will call an FXMLLoader to load that FXML dialog. Something like this:
    FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("ParticipantDialog.fxml"));
    Scene scene = (Scene)fxmlLoader.load();
    final Stage participantDialog = new Stage();
    participantDialog.setScene(scene);
    First question is: is that correct so far? Am I at least on the right track?
    Next question is: how or where do I create the FXML and controller files for the participant dialog using NetBeans? Should I create a separate project to make the participant dialog and then copy those files over, or is there a way to make the files within the parent project? And if I make the participant dialog in a separate project, what's the easiest way to access it from my main stage?
    I feel like I'm missing something simple here because this seems a lot harder than it should be.
    Thanks in advance for any advice.

    >  is that correct so far?
    Yes the sample code you have is fine to launch a new dialog when your Add button is pressed .
    > I create the FXML and controller files for the participant dialog using NetBeans?
    You can edit FXML text in NetBeans, but I think that is kind of tedious.
    You might want to create the FXML using SceneBuilder.
    You can use SceneBuilder in NetBeans.
    You may want to get it working without FXML first.
    For example, use the JavaFX scene graph API, then convert your program to use FXML once you are more comfortable with the JavaFX system.
    The piecemeal approach cuts down on the amount of learning you need to do at one time.
    > Should I create a separate project to make the participant dialog and then copy those files over.
    No.
    Just use a single NetBeans project.
    You will have separate FXML files for your main stage and your participant dialog, but they will both be placed in the same NetBeans project.
    > is there a way to make the files within the parent project?
    In NetBeans 7.3.1, do the following:
      File | New Project | JavaFX | JavaFX FXML Application
    This will create a sample project with a sample fxml file.
    Modify the sample project files to get what you want, changing the sample fxml to your main stage fxml and adding a new participant fxml to the same directory.

  • Contract Management Ver. 13 & Sample Projects

    Our office finished testing and migrating from Ver. 11 to Ver. 13 recently w/ our existing projects. How difficult is it to bring over the "Sample Projects" database from Primavera?

    you can create a new demo database which contains the same sample projects with the dbsetup.bat utility.

  • Someone else with same problems?

    I have a kt4-ultra and i wato to know if someone else have or had my problem...i have i xp 2100+ and i am not able to run it at fsb 133 mhz i must set it to 125 mhz...
    I haven't found solution at this problem....(temperature ok...400 w ali ok...ram ok...sk video ok...everything ok)
    am i the only one with this problem??
    Let me know please

    G7LNO,
    54C seems a little on the high side to me.  It's within AMD specs, but I do not like the word, "Thermal Death".
    Below is an example of my system, and the temps that apply to it.  My system is not overclocked.
    I have a 2400+, KT3 Ultra2-R motherboard, and just recently replaced the Dynatron cooler to a Thermalright SLK-800 with a Vantec Tornado turned down to 4000 RPM.  While surfing the web with Norton running, MS messenger, Outlook Express, and four IE windows open, my CPU temps at a room temperature of 78F are:  CPU-37 C, System 32 C.  Cranking up the voltage to the Tornado and the CPU temp drops to 35C.  System temp stays the same at 32 C.  
    When I use Sisoftware Sandra utilizing the CPU arithmetic and multmedia burn-in for one hour which places 100% load on the CPU, my CPU temp never goes over 39C and system temp rises to 34C; Vantec Tornado is set on high during full load tests.
    The Vantec Tornado may be a bit of overkill at full voltage, but at 4000 RPM it is very tolerable. I truly believe the SLK-800 is very capable of excellent cooling with lower and quieter CFM fans.  Big D1

  • Does anyone know if there is any difference at all in the display between the 4 and the 4s.  I use my 4 with no problems but have issues with the 5 - makes me feel ill.  Any help appreciated before I make an expensive mistake

    Can anyone tell me if there is any difference at all in the display between the 4 and 4s.  It appears they are the same from the specs but I dont want to make an expensive mistake.  I can use the 4 with no problems but the 5 makes me feel ill and I am hoping I can upgrade to a 4s with no issues. Any help appreciated.

    In a technical sense, the differences between the displays on the iPhone 4 vs 4s are vast.  I'm mean, they are both attached to 70 - 90% of the internal components and far from interchangeable.  There are no differences however, that are noticeable by the user.

  • RH8 - Publishing Merged Projects with AIR Browserbased Help

    Hello,
    i have one master project with 5 subprojects. When i make an Output with Adobe Air "Browserbased Help" is the preview ok, all tables of Content from all projects are included.
    When i publish it to our webserver i first got a grey screen with an loading error.
    I discovered that the link in the start site  to the included file ac_oetags.js is incorrect because of upper and lower case writing. When i change the link, the site appeared correctly - but unfortunately only with the table of content of the main project.
    Is it possible to merge Projects with Browserbased Help?
    Has anybody an idea what went wrong?
    Thanks for your support!
    Steffan

    In the Start Page field you define where you want to generate the help.
    If you click the Server settings you define where you want to publish.
    When you publish the parent it goes to \\servername\myrobohelp and it creates a folder called mergedProjects and subfolders for each child.
    When you publish the children, your Server setting must point to those subfolders.
    Does that clarify? If not, please add some screenshot using the camera icon so that the images are in the post as above.
    See www.grainge.org for RoboHelp and Authoring tips
    Follow me @petergrainge

  • Video Playback Problem with Developer Walkthrough of the Continuous Measurement and Logging Sample Project

    Hi!
    I have serious problems playing the video Developer Walkthrough of the Continuous Measurement and Logging Sample Project.
    As the video pauses every few seconds for buffering. I am not able to watch it. Just wanted to check if you can playback the video:
    http://zone.ni.com/wv/app/doc/p/id/wv-3401
    This happens on any browser (chrome, ie, firefox). I am using Win XP and the latest Adobe Flash Player. About 2 weeks ago NI Germany confirmed the problem and promised to contact NI USA as they are responsible for these videos. So far nothing happened. In the meantime I received an e-mail that the problem could not be confirmed although they had confirmed it before...
    Thank you for any feedback.
    Regards,
    Anguel

    Hello ctVolFan,
    As indicated in the "support" section of the SPOT, you should get in touch with self-paced-training(at)ni(dot)com.  I don't believe that team monitors these forums directly.
    Regards,
    Tom L.

  • X-CAN sample project problem

    Hey guys,
    I´m getting started with the myRIO-1900 and try to connect it with my car via X-CAN module with OBD-II BD9 cable to collect and record data from my car.
    I've installed Labview 2014, X-CAN, realtime module in my computer without any problem.
    When I connected myRIO 1900 and X-CAN module with my Mercedes, launched "X-CAN for myRIO" under "sample project", it worked successfully and I can read data from Labview.
    Question 1: What do all the data read mean in the labview, eg. what does identifier means and what does payload means? At first I thought they might be PID codes, but after browsing all the info online, I felt the data are not PID codes because they should start with P01 or P02. Is there a manual for me to review and learn?
    Question 2: Do you guys know how can I record all the data that read from my vehicle and export them to Excel file? I tried to add "File I/O" and "Measure to write" followed by the instructio online, but there was not excel file generated after the run. Any suggestions?
    Here is a snapshot of the project result. Appreciate for the help.

    There is TONS of documentation on CAN buses.  From various hardware and software implementations and a bunch of other variations that can make working with it difficult.  
    On the surface everything is easy, you just read and write frames, as described here
    http://en.wikipedia.org/wiki/CAN_bus
    Frames are just raw data that you can then do things with.  A frame consistes of an ID which identifies the message and also does things like sets priority of the message.  Then the payload is 0-8 bytes (excluding CAN-FD).  These 0-8 bytes are the usable parts of the message.  Protocols have been written to support multi frames, and request reply, among several other features not supported in the hardware.  
    Basically you have a lot of reading to do.  Find all the documentation you can on CAN and how it works knowing that it starts at the frame level which is what you get.  You might even get something out of the first few slides of a recent presentation I did on CAN and XNET.
    https://decibel.ni.com/content/docs/DOC-41749
    As for recording the data.  The most common way is to format it into a 2D array of string, and then use the write measurements to file, or write spreadsheet to create a CSV file that Excel can open.  There are other options that are usually more messy, but can be done.
    EDIT:  Oh and you might get better support from CAN related questions over on the Automotive subforum.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Problem activating a project with screen-exit

    Hi!
    Could somebody guide me to activate a project that has the enhancement MM06E005, with many screen-exits?
    In this enhancement, has many screen exits and I only implemented the 0101 screen (it's appears in me23n).
    When I activated the project, the CMOD activated all the screen-exits and put a flag means that all screen exits is implemented, and I only implemented the 0101 screen.
    And the problem is, I send the request with this activated project to production and the transaction ME41 generated a dump cause the screen 0301 not is created (this 0301 screen is in MM06E005 and I'm not use, I'm not implemented, but the CMOD activated).
    I was clear with my problem?
    Thanks in advanced!!!

    Hi,
    That is because it checks whether that exit has been implemented or not.
    In case it finds no screen it doesn't go and look for it.
    My concern is that in Dev if you go and check against that screen which is giving error it should say something like 'there is no screen existing ' or something to that effect but if by mistake when you click it shows a screen then there is an issue.
    Also, for the solution, what you can do is deactivate this enhancement project in production and then in Dev also deactivate it. Delete this project and assign it to a new project and then sent it to Production.
    I am sure this will solve your issue.
    I have also checked in my system and when you activate an enhancement project it put's a 'tick' mark against each screen exit meaning it's implemented even for those which have not been created and we are not experiencing any issue currently in this regard
    Hope this helps
    Regards
    Nishant

  • Why do we run into stupid basic problems with firefox?

    I have jre1.6_u31 installed on a Windows 7 and the brilliant
    firefox keep tell me that I've to install the jre_1.6_u29 missing plugin when I try to run an applet...a simple applet!! The plugin doesn't appear on add-ons manager then i use "check your plugins" and the stupid response is: "For your safety, Firefox has disabled your outdated version of Java. Please upgrade to the latest version."
    Running an applet is basic! Why are u making new versions when older ones are better? I' m sick of running into this stupid problems with firefox! Everything works on ie, chrome and safari but not on Firefox!
    I' m sick of trying to solve firefox basic problems!
    We have a site that has one thousand ore more visits per day...and we only have troubles with firefox! What do I tell the costumers? I' m not going to give them solutions difficult and confusing as usually your solutions are! They are common people not developers as me...they just want the things to work! I gave up and the solution that I give to them now is to stop using firefox and uninstall it. And people ask I chrome is becoming the second most used browser...here is your answer...
    I' m a developer and I've to develop I don't have the time patiente to trying solving basic firefox problems. If you don't know how to solve the problems then stop developing this and save us the headaches.

    Have you updated Java lately? You say you have jre1.6_u31 installed, but "Java(TM) Platform SE 6 U31" is not showing in the Plugins submitted with your question (click "More system details" to the right of your original question post). To enable, Add-ons > Plugins, and enable the item.
    If your OS is 64-bit and you have 32-bit browsers (Firefox) and 64-bit browsers installed, then you need to install both the 32-bit and 64-bit versions of Java.
    *See --> https://www.java.com/en/download/faq/java_win64bit.xml
    '''Older versions of Java blocked in Firefox''' --> https://addons.mozilla.org/en-US/firefox/blocked/p80 <br />
    '''Using/Updating Java''' --> [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox] <br />
    '''Unblocking Java''' --> https://support.mozilla.org/en-US/kb/unblocking-java-plugin
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Ressource Problem: Export with graphical reports from projects with integrated sub-projects

    Hi all,
    i have the following problem with the exported data of the graphical reports possibility.
    Expected output:
    OLAP Cube with processes and ressources
    Setup:
    Project Server 2010 with Enterprise ressource pool
    One main project with 6 integrated sub-projects
    Every ressource is assigned to just one sub-project or the main project
    Problem:
    The data (work and cost) in the OLAP Cube exported from the main project is 7 times (some reports 49 times) higher than the data in the main project
    Tested scenarios:
    Export just processes -> data is correct
    Export just ressources -> data is 7 times higher
    Generate another main project with 2 sub-projects and no ressources in the main project - Export of processes and ressources -> data is 2 times higher
    Because of the tested scenarios I expect that this is a problem caused by ressources and integrated sub-projects.
    I hope that this community is able to help me to solve this problem.
    Thanks & all the bests,
    Holger

    Using the "Baseline work report", I can't reproduce your issue:
    I have 1 task in each project (2 projects) with a resource assigned on each task (80hrs). The report correctly shows me 160 hrs.
    Which Project 2010 SP and CU do you have? I'd suggest you to install the
    latest version and see if it helps.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • When I delete com.apple.audio.SystemSettings.plist my audio/sound problems are solved. However when the file is replaced with another file, the sound is crappy and the quality is reduced. Can you please help me?

    When I delete com.apple.audio.SystemSettings.plist my audio/sound problems are solved. However when the file is replaced with another file, the sound is crappy and the quality is reduced. Can anyone please help me?
    Sincerely,
    Eric

    Run this when you have the problem and post the results here.
    EtreCheck
    This will tell us what is loaded

Maybe you are looking for

  • TRANSPORTABLE TABLESPACE IN 8.1

    제품 : ORACLE SERVER 작성날짜 : 2004-08-16 Oracle8i에서는 tablespace단위로 그 구성 datafile들을 옮겨서 다른 database에 연결시켜 사용할 수 있는 기능이 제공된다. SCOPE 8i~10g Standard Edition 에서는 Import transportable tablespaces 기능만이 지원이 됩니다. 유용성 1. 전사적 정보시스템내에서 대량의 data의 흐름이 필요할 경우, - 예를 들어

  • Multiple addressees in mail

    I sent an e-mail thru mail in Snow Leopard using my MobileMe account to 3 addressees all in the "To" section.  After I sent it I checked my sent messages and it only showed that it was sent to the first addressee on the list.  Did I do something wron

  • Premiere Pro CC not available despite updating to Yosemite

    I've just updated to Yosemite. I'd like to download Premiere Pro CC, which has been unavailable on the Adobe Application Manager. How do become able to download?

  • SELECT FOR UPDATE NOWAIT

    Hi everyone! I have procedure that looks like this: procedure set_expired_users(     p_QID   integer,     p_Value integer default 1)   is     l_mdate timestamp(3) := null;   begin     l_mdate := get_mdate(p_Value);     MERGE INTO cached_lists cl    

  • Nokia N95 8GB Speaker issue???

    I just bought Nokia N95 8GB version and I was excited all about it. I have setup most of the softwares and settings that I had on my old N80 and I was going to enjoy the music by playing it on the new N95 8GB. However the sound is coming out from the