LV PRoject...Novice help

hey every1,
i am new 2 this forum and 2 LV... thanx In advance for any help u can offer..
i'm a final year Mech. engg. student currently involved in project work..
My project basically involves acquiring data from a rotating machinery using a vibration accelerometer.. getting the rms..peak2peak..values of vibration... storing on a dB... Allowing a user on a remote terminal to view this database by use of html browser(via lan)
b4 getting started on the proj i'd like the following answered
1.Is all this possible with LV?
2.i'm not sure about the make of the accelerometer but am fairly sure the daq card is from dactron... is it possible to interface this with lv?
3.is it possible to store the data from lv to a dB without having to purchase any additional modules?
4.for an absolute novice how long would it take to go about these?
hope these questions don't sound too dumb..
ne help and suggestions will be much appreciated.
ps:i plan to use lv 8.20

Hi Dips,
good you start with LabVIEW, it looks like your project is rather complex (some thing I haven't done) but they are all posible with LabVIEW:
1.Is all this possible with LV?
As mentioned Yes
2.i'm not
sure about the make of the accelerometer but am fairly sure the daq
card is from dactron... is it possible to interface this with lv?
If the dactron has a dll (for Windows), .net/ActiveX yes, but I'd suggest to contact NI and get a card from them
3.is it possible to store the data from lv to a dB without having to purchase any additional modules?
Yes, you could write your own DB interface or have a look at the ADO toolkit by i2dx
4.for an absolute novice how long would it take to go about these?
oef, that's a hard one, something between 1 and 6 months.
Be sure to plan ahead, design in modules, do some proper software engineering and testing
Additional you can look at these:
You can also try searching this site and google for LabVIEW tutorials. Here, here, here, here and here are a few you can start with and here are some tutorial videos. You can also contact your local NI office and join one of their courses.
In addition, I suggest you read the LabVIEW style guide and the LabVIEW user manual (Help>>Search the LabVIEW Bookshelf). (thanks tst)
Ton
Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
Nederlandse LabVIEW user groep www.lvug.nl
My LabVIEW Ideas
LabVIEW, programming like it should be!

Similar Messages

  • I have lost an fcpx project. when i search it, i'm directed to a backup file, but it's just (gibberish/code) text.  how can i retrieve/restore my project?  HELP!!!???

    i have lost an fcpx project. when i search it, i'm directed to a backup file, but it's just (gibberish/code) text. 
    i think i was asked to install an update (something to do with libraries?) before i started working, but i didn't do the update.
    don't know if this has anything to do with problem.
    how can i retrieve/restore my project?  HELP!!!???

    juddfromsherman oaks wrote:
    i have lost an fcpx project. when i search it, i'm directed to a backup file, but it's just (gibberish/code) text.
    The backups for your version are date-time stamped as the name and with an extension of .fcpproject. They look like this.
    The original project is named CurrentVersion.fcpproject.
    You need to replace the CurrentVersion with the backup file and rename it to be CurrentVersion.fcpproject.
    With FCPX closed, I suggest you move the original to the Trash, but not empty it. Then promote your backup one level higher in the project folder hierarchy (to be at the same level that the original previously occupied. Then rename the backup.
    Open up FCPX, which should now recognize your project.
    Russ

  • I just tried to open my last Soundtrack Pro Projet and I got this message :  "NS InternallnconsistenceException Invalid parameter not satisfying:m_splitViewer". Curiously, I can't open any other project. Help! Please!

    I just tried to open my last Soundtrack Pro Projet and I got this message :  "NS InternallnconsistenceException Invalid parameter not satisfying:m_splitViewer". Curiously, I can't open any other project. Help! Please!

    Did this just happen after upgrading to 10.9?
    Try using Preference Manager by Digital Rebellion (it's free) to delete your preference files for Soundtrack.
    x

  • What is the use of Database View, maintenace , projection and Help view

    hello friends,
    I created tables..and set check table relation.
    how to create Database View, maintenace , projection and Help view
    phani

    Hi,
    have a look at this.
    4 type of views
    database
    maintainance
    help
    projection view
    check this link as well
    (https://forums.sdn.sap.com/click.jspa?searchID=9904886&messageID=4885135)
    Database views are implemented with an equivalent view on the database.
    Projection views are used to hide fields of a table (only projection).
    Database views should be created if want to select logically connected data from different tables simultaneously.
    Database views implement an inner join.
    Application programs can access the data of a database view using the database interface. (Just as we write select queries on database tables, we can write them for views as well.)
    Includes in Database Views
    An entire table can be included in a database view. In this case all the fields of the included table will become fields of the view (whereby you can explicitly exclude certain fields).
    To include one of the tables in the view, enter character * in field View field, the name of the table to be included in field Table and character * again in field Field name on the View fields tab page of the maintenance screen of the view.
    You can also exclude individual fields of an included table. If you do not want to include a field of the included table in the view, enter - in field View field, the name of the included table in field Table and the name of the field to be excluded in field Field name.
    Inserts with Database Views
    If a database view contains only one single table, data can be inserted in this table with the view .
    You have the following options for the contents of the table fields not contained in the view:
    If the field is defined on the database with NOT NULL as initial value, the field is filled with the corresponding initial value.
    If the field is defined on the database as NOT NULL without initial value, an insert is not possible. This results in a database error.
    If the field is not defined on the database as NOT NULL, there will be a NULL value in this field.
    A maintenance view permits you to maintain the data of an application object together.
    The maintenance status determines which accesses to the data of the underlying tables are possible with the maintenance view.
    Read only: Data can only be read through the view.
    Read, change, delete, insert: Data of the tables contained in the view can be
    changed, deleted, and inserted through the view.
    Read and change: Existing view entries can be changed. However, records
    cannot be deleted or inserted.
    Read and change (time-dependent views): Only entries whose non-time
    dependent part of the key is the same as that of existing entries may be
    inserted.
    Maintenance View ( SE54 )
    You can use a maintenance view to maintain data, which is distributed over several tables, at the same time.
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Creating maintenance View:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecdf446011d189700000e8322d00/frameset.htm
    regards,
    vipul

  • Project -  need help rather quickly

    I am doing a 2 minute/ish long small project which will involve images flowing across the screen......with text which appears over them. Thats it taken down to basics.
    http://www.coremelt.com/products/products-for-final-cut-studio/imageflow-demo-re el.html
    is pretty much the effect i want to go for, but i am wondering if i can do those type of effects in FCP (i have about 3 weeks) without that plugin?
    If so can someone post some type of tutorials, to help a novice out.
    If not....i suppose i will need to buy the plugins in the video for £50.
    thanks

    Do you have only Final Cut Pro, or also Motion? This sort of animation can be done in either. But if you're not that familiar with the methods to set up the animations and managing all the tracks/objects involved it would certainly take a lot less time to use a canned animation tool like the one you linked to. It depends on whether you're getting paid to do this, I would imagine!

  • Adobe Premiere Elements 0.9 project crash, HELP!

    This is the first time I am using these forums, so I hope I posted this in the right sektions.
    I need help and solutions for a Project which constantly crashes on my Adobe Premiere Elements 0.9. This program has been awesome and helped me create some projects and videos successfully, up until.... well for about 3 days ago when my latest project crashed when I had just antered and checking the storyboard etc, triggering a "Serious Error" message and then it shuts down. I try again and again, but everytime I try to put something (any sound or video etc) on the storyboard and start working etc the same damn "Serious Error" message and then allways shuts down. It's allways this same and only project (which has worked fine before) that crashes like this...
    In an attempt to first solve the problem myself I went through the Premiere Elements 9 files and deleted finnished projects and automatic saved process on projects etc, but still won't work even better... The funny thing is that when I open another project (a finnished project I left saved just in case) and go through the storyboard there and messes around a little and such, it won't crash nor trigger the same message as my latest project. And that program even has some effects on every footageclip on it too, but still it works fine. Haven't touched the program or the program until and since yesterday night to give it some rest but it still won't work, the project just keeps crashing like when and since it first started a few days ago.
    I have also read through and tried some things from this Help/Troubleshoot page:
    http://helpx.adobe.com/premiere-elements/kb/troubleshoot-damaged-projects-premiere-element s.html
    I have so far been doing 1 and 2 of the "Beginning Troubleshooting", otherwise I have been reading it all and such. I am also kinda afraid to do the 3 of the first quests because I worked so hard on this project and even tough it just keeps crushing, I'm afraid to lose it. Other, I have deleted audios and such from my filegallery on my Adobe Premiere Eements, stuff I don't need anymore because its projects are already done. After I did that I also tried to create a new project just for testing. The amazing this about this is that this the new created project I created works just fine, I could do all kinds of the stuff, effects and advanced editing which I did on the same project before it started crushing. Tough I didn't save that test-project since I didn't find a reason to since it worked so good. And so the thing is that I can start and create a new project and start working and do usual stuff on it with no problem, same when I open up another project and do stuff, it all works just fine! It is just this one and only project that keeps crushing with this "Serious Error" message, all the time... Does anybody else have, or has had the same problem? What could the problem and error be and how to fix it?
    This crushing project do has some effects on every footageclip/videoclip on it, to set the right mood for the musicvideo I'm making. I am making a musicvideo, and I haven't even done the half of the project/video. The song I am making this musicvideo with is about 00:07:32 in length, and (tough this detail may have no influence or meaning) the music is Symphonic Metal. The actual file of the song is 6,96 MB in size. This is also not the first time I've done such projects with such long songs on this same program either, one of my last videos I managed to successfully make and create a musicvideo with a song which was about 13 minutes and 30 seconds in length, and I also used effects on pretty much every videoclip on that project too.
    The current filesize so far on the actual project.prel-file of my project that keeps crushing is 9.73 MB.
    I am also using Adobe Premiere Elements and doing this troubleing, crashing project on a PC, a Fujitsu Windows (I believe Windows 7, or even updated to a newer version?). It has a regular ATI-card. The computer also has 2 modems and there's still some pretty GB amount free on them. The PC's main system also has a RAM in 6.00 GB and the operative system is the 64-bites.
    In short, the PC should just fine be able to handle Adobe Premiere Elements 0.9 and all its projects, just as it has handled it all before plus all my PC games at that. So it must be something with my Adobe Premiere Elements and that specific project which is the problem, but what is the problem and the serious error and how to fix it?
    Could it help to save and create the actual video in this crashing project, delete that project then start a new project, upload and put in the videofile of the crashing project in that new project and then continue from there?
    In either cases, I need help with this. Please, help!

    Thanks so much for your reply, Steve!
    Even tough I trust you guys enough here on the official Adobe site/forums to answer those questions as best I can, I am at the same time not very fond of giving away too much information because of safety. I understand I have to If I'm to recieve the accurate answers and solution, but as this is the internet you can never know. But again, I trust you guys enough on here and thus I'll try to answer those questions as best I can, even tough I am not very good with such stuff about computers. The PC I am using is also not only mine, it is the family computer also which me and my whole family uses.
    The operating system on my computer (according to the computer propotions etc) is a 64-bites operating system and the computer/PC is also a Windows 7 Home Premium.
    The processor the computer/PC have is a Intel(R) Core(TM) i5 CPU and the RAM is 6.00 GB. However, (and I hope I make this understandable because the computer/PC is in swedish)the subscore of RAM in the computer's Performance-Classification/Ranking is 7,5. The processor subscore is 7,3 per second. And the free space? Well, we have two modems, let's say a modem A and a modem B. Adobe Premiere Elements 0.9 is set to save all its stuff etc on modem B, while modem A is the main modem and spaces all main stuff and other things of the computer/PC. Modem A has about 314 GB of free space, while modem B has 207 GB of free space. Modem A's capacity is a total of 489 GB in which 175 GB has been used, the modems filesystem is a NTFS. Modem B is also a NTFS filesystem and its capacity is a total of 439 GB in which 232 GB has been used. And the Disk Cleanup? I believe my that latest ran it for about a few weeks ago. We also have a CCleaner also. But about the Disk Defragmenter, I have no idea. What exactly does a Disk Defragmenter do?
    You mean, entering my project that keeps crushing and simply rename it by using "Save As"? If that is what you mean, I dunnow If that actually worked. When I still tried to do stuff and edit the crashing project (tough as said, it hardly took any changes and process before it triggered that message) and then crashed and shut down, and I opened up the program again (trying to open the same project that way), it asked me If I wanted to re-create the missing process from the last crash of the same project. I tried it and it automaticly was renamed to a for example Project.copy. But when I tried to work with that it was to no futher success, the project kept crashing. I haven't renamed the project by "Save As" tough, but I doubt it'll work, I even tried to rename the actual project file in the Adobe Premiere Elements files but nope... the project keeps crashing. But also about the same question, "Save As" under a new name but in its own folder? You mean the actual project folder or Adobe Premiere Elements preview folder of the projects?
    My camcorder is pretty old by now, have had it since I turned 15, it has worked pretty good since then. Its model is a Sony Handycam, Carl Zeiss Vario-Tessar OPTICAL 20x. Even tough the last thing maybe doesn't say anything, this is all I know about my camcorder, except that it is a model no. DCR-HC17E PAL. But in that Project  which keeps crashing, there are only a few actual camcorder clips used as I am making a Game-MusicVideo and most of the footage of the Video-game (actually a PC game) I'm making a musicvideo of is downloaded from Youtube mostly from a guy I asked permission for to download his recorded footage of the game. I used a Youtube downloader called ClipConverter. As I don't have a SD card I cannot make this footage myself. But some footage I recorded on my camcorder, but If I can find high quality clips and get them, I will. The other footages is actual official trailers of the PC games which also was downloaded from the net. But I can give you the stuffs filetypes and hoping that may help. The downloaded footage which was downloaded by this ClipConverter, are MP4 files. The other stuff (which were official trailers) and most of them are also MP4 files, the others are QuickTime-film files. Many of these downloaded footages and trailers are also in HD quality, at least some of them I think.
    The actual filetype ofthe footage I myself recorded with my camcorder are, well.... it says Videoclip in the file. Maybe it is AVI?
    The project settings? You mean the settings you set at first when starting as a new project? The general settings are, in editingsettings it is AVCHD 270p square pixel. This is kinda hard for me to tell since everything is in swedish in my program. But these settings has worked perfectly before, same with all files, footages and videoclips I have been using, also all the soundfiles etc. Even the actual crashing project worked perfectly before it started crashing... So why does it so suddenly start crashing now?
    The audio is a song I copied directly from its album and CD into the computer/PC and it seems to be in WMA format in filetype.
    And lastly, no I haven't rendered the timeline of the project ever, not even on my other projects. What does the rendering do and is useful for? I have very little knowledge of it. Other, I keep the Timeline mode open all the time because I can edit my videos much better with it, but perhaps that editing method make little influence of the actual problem.
    Other, yesterday when writing the post and topic, I forgot to mention that I restarded my computer right after I created a new project, that testing project. When finnished with the testing I restarted the computer. Since then I haven't touched the crashing project since now tonight, when checking its settings for this post. I am also right now trying to create and save the actual videofile of it, saving it on my computer. I'll soon see If it's successful without any crashing interruptions, plus that the video itself works and is smooth when I'll play it on Windows Media Player like all the rest of my other videos. I do this just in case I must create a new project to be able to continue with my musicvideo, as the first part of it I worked very hard on.
    Other and again, I am still puzzled about why this is even happening, that this project which worked perfectly fine before, just suddenly starts triggering that "Serious Error" message and crashes. And in this program which worked so perfect before. Has this happened to anyone else before? Has anyone else experienced the same issue I have? Is this a knowledgable issue which has solutions and ways to fix it?... :/

  • Can't open Garageband project, please help

    I was using a Mac Mini, 10.7.5, and recorded some vocal tracks on Garageband 11.  I clicked gospel choir vocal effect at first, and it was fine.  When I wanted to try another effect by clicking another one, the application quit.  When I tried to open the project again, the initializing window popped up, and a few seconds after, it said something like "Garageband quit unexpectedly, do you want to reopen to restore the windows".  When I clicked "reopen", it directed me back to Garageband recent project page without opening the project I was working on.  I tried to open other projects I worked on previously, and those could be opened; just not the one that I worked on recently.
    I didn't back up anything with the Time Machine because I never used it before, didn't know how to use it.
    I just saved the project to my USB drive, deleted the one on the Mac Mini, deleted Garageband, updated to iOS10.9 something, reinstalled the newest version of Garageband, tried to open the project from the USB drive, failed again.
    When I open the "show package content", some mp3 files of my recorded vocals are there.  I don't think all of what I recorded are there, but some.
    Please help.
    Thanks!

    Which version of Logic? Which OS? Update your profile so we know what you are running!
    P.S. Welcome!

  • Project organization help needed

    I work for a rather large health care company and we are just beginning our move from eGate to JCAPS. We have approximately 100 separate interfaces, each with an average of five eWays.
    Our initial idea was to organize our JCAPS projects as follows:
    Outer Project (equivalent to eGate schema)
    Inner Project (equivalent to eGate eWay)
    - collaboration
    - connectivity map
    - deployment profile
    - any external files, schedulers, etc needed by the collaboration
    Inner Project for OTD's
    Inner Project for Queues and Topics
    Inner Project for shared collaborations that are used by multiple projects (such as resending, journalling, etc)
    My concern is if we make a change to a single project, when we go to export that project to our production system, we may be forced to export a lot more than we need.
    I would like to know how others have organized their systems interfaces, and any issues they may have come up with.
    Thank You
    Steve

    I would be wary of creating projects within projects.
    The concept of project in JCAPS is nebulous.
    Even though JCAPS allows you to nest projects within projects the nested projects are treated more like folders.
    Like most other IDEs, projects are the ones created at root level.
    Unlike most other IDEs JCAPS does not have the concept of project view and file view.
    If you create an "Outer Project" and then inside it a bunch of "inner project" , JCAPS would treat the "Outer Project" as a project and all the inner projects as artifacts of this "Outer Project".
    If any other project were to refer to any one of these "inner projects", then JCAPS will assume that this other project is dependent on the "outer project".
    If you try to export this other project, it will export the whole "outer project" as a dependent project.
    So, if possible, I would try to create all projects at root level especially if they are going to be referenced by other projects.
    Use a flat structure rather than a hierarchical one. Use naming conventions to segregate and organize.
    Instead of
    ProjectA
    ProjectA1
    ProjectA2create
    ProjectA_ProjectA1
    ProjectA_ProjectA2
    If this looks too cluttered you might want to consider branching to separate major projects
    Also I would be careful of creating dependencies between projects.
    Lets say you have a JCD which refers to an OTD in another shared project.
    If somebody updates the OTD and creates a new version of the OTD, your JCD would automatically start referring to the new version.
    Without your knowing a build will pick up the new OTD.
    Of course if you know that a new version was created ,you can specify an older version of the OTD during a build.
    Not so if you are editing the JCD. Here you will be stuck with the latest version.
    This may or may not be what you want.
    A better alternative would be to copy over the OTD to your project and use the local version.
    Hope this helps.

  • Security project.. help needed

    hi friendz and gurus!
    i am doing a project on security and permissions
    i have planned to use passwords for that purpose
    and i have to use java! coz' i am a student and
    doing this for purpose of learning.
    can somebody implementat the encryption algo of linux
    password encryption(des) which encrypts 8 char string into
    13 char one way String.
    please give me the java working code and not the hints
    as haven't much of time.
    thanx in advance!
    sparya
    thanx in advance!

    i have tried several combinations but couldn't get
    success now it is scaring me so finally i want to see
    it working and to see where was i wrong?
    now in such consition plz don't send me such comments i am
    already frustated, that's why i asked only for code
    if you wan to help me please do it
    any effort to help me 'll be highly appreciated!
    sparya

  • Problem in jUSB project please help me

    I am running this jUSB project code for USB detection on a computer. On
    "WindowsXP" it runs fine but on "Windows 2000 Professional" it give me an
    exception i.e.
    java.io.IOException: USB Host support is unavailable.
    at usb.core.HostFactory.getHost(HostFactory.java:84)
    at RunUSBControllerTest.main(RunUSBControllerTest.java:24)
    Kindly please help me in this regard if any one can solve this exception for me.
    i was unable to find the solution and also no contact is found on the
    source file website of this code.
    the links to the site and code is
    http://jusb.sourceforge.net/
    http://www.steelbrothers.ch/jusb/

    This question has asked a lot in different forums. I had same problen, when I compiled RunUSBControllerTest. I got I/O Exception: USB Host support is unavailable. I think I resolve this problem: I think that jusb.dll has compiled in older java version and depends on version. I had Java 1.4.2_05 and it dosen't worked out. I remove it and install java 1.4.1_03. Now the RunUSBControllerTest works fine. I hope this is the answer.

  • Inconsistant overlay issues in same project - urgent help needed please!

    Hopefully this has not been asked. I searched and found nothing.
    The issue is that using overlays works great for two of the three menus in my project, but the third does not display properly when viewing a finished DVD or the TS folder. It looks perfect in simulator.
    Now for the details: the menus are pretty simple. They each consist of a Photoshop file with two layers. One is the background buttons (mostly plain text) and an overlay layer (underlines under the text). These are saved as psd files.
    When built and viewed, two of the menus operate normally - you roll over the text buttons, and an underline appears beneath them. The third menu does nothing when rolled over, yet if you click on a piece of text, it jumps to the proper section as expected.
    I have checked every setting I can think of to make sure everything is the same between the different menus. I even rebuilt the whole DVD from scratch, and made new menus in Photoshop. Each file was made as a "save as" to ensure that the settings were the same. Same for the menus in DVDSP - duplicates of a menu that work properly. Is there something I've overlooked? Is this an issue with DVDSP 3?
    Any help or suggestions are most appreciated. This forum is a great resource.

    Hi There
    The only thing that comes to mind is that something's changing in your button highlight states between your menus. Go to a menu that is working the way you want and select a button. In the button inspector go to the Colours tab and ine the bottom right corner click the Save As Default button. Then go to a menu that is not performing correctly, highlight a button, go to the Colours tab and click Restore Default.
    If that doesn't fix it at least you'll have ruled out a major culprit.
    Good Luck
    B

  • IMovie 09 deleting a project? Help please

    I am running iMovie 09 and am new to it. I created a movie using photos and videos. I first put it onto my flash drive when it was finished. I am planning on burning it to DVD's for my friends, so I have the file in a folder on my desktop. However, now when I open iMovie, my project is completely gone. And it still shows up in the folder and when I search my computer, but it will not let me open it or drag it back into iMovie. I'm terrified of putting my flash drive back in because it's the only thing I have of it right now (and the one DVD I tested putting it on).
    Can anyone please help me get my movie back?
    Thank you so much, it is greatly appreciated.
    A new and confused Mac user.

    In the Finder, go to Movies/iMovie Projects. Do you see your project there?
    Your project file has the extension .rcproject.
    If not, move it back there and restart iMovie.
    Message was edited by: AppleMan1958

  • Pop up window only works once - this is for a charity project so help is gratefully received.

    I'm working on the site
    http://www.rhythmsdelmundo.com
    The proceeds of this project go to support climate change
    awareness and natural disaster relief.
    These are the elements relevant to this problem
    The 'buy album' button opens up a pop up window.
    The 'take a little voyage through the project' window calls
    up a video from an external site which then plays in windows media
    player. This is the actionscript on the 'voyage' button.
    on (release) {getURL("
    http://exodus.interoutemediaservices.com/?id=c0a452ac-f284-4fd6-a8db-3b87d9acd09c&delivery =stream");
    _root.mp3movie.pause_btn.onRelease();
    My problem is this: If you go into the site and press 'buy
    album' the pop up window works fine. However, if you go into the
    site and click on the 'take a little voyage...', see the movie and
    then go back and press the 'buy album' button, it ceases to work.
    It's like the 'take a little voyage' is somehow causing a problem
    for the 'buy album' button.
    First of all I created the button using javascript, then I
    recreated it using actionscript that I found at Kirupa
    http://www.kirupa.com/developer/mx/centered_popup.htm
    Both methods have the same problem. I'm completely baffled.
    Does anybody have any ideas?
    Any suggestions are very gratefully received.
    Thanks in advance
    Rachel

    sorry that information might help ....lol
    Platform = Power Mac G5, OSX
    Browsers =
    Firefox 2.0,
    Safari 1.3.2 (v312.6),
    Netscape 7.2 .
    all work fine accept in Firefox and Netscape, if you leave
    the "Buy Album" pop up open and click the "Take a little voyage
    through the project" then click "Buy Album" again the pop up window
    will not re-focus to top.

  • Making a slide show and can only see the top 1/4 of the bottem line of photos in the project.  help?

    I am working with beat markers and it was going along fine until suddenly everything went awry.  I dropped in a bunch of photos and the last photo assigned itself a time of over 3 minutes.  Beat markers are at less than 1 second.  I have removed the beat markers for the photos I want to remove, in order to try again.  When I try to delete the 3 minute picture the entire project loses its beat markers AND on top of all of that, I can only see the top 1/4 of the pics in the bottom line of the project.  I've tried several work arounds and can't fix this.  Anyone have suggestions?

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Stuck seriously in the blue print phase of project--- please help

    I am Prabhas, sap XI associate consultant in capgemini. I am stuck in the design phase of my project.I am writing this mail to you for helping me in designing the blue print of my scenario. My scenario is like this.
    XI will receive a flat file containing stock data and it processes by transforming the structure and then dump the data to R3 system. The output of XI actually invokes some function modules in the target R3 system which in turm executes some BAPIs for committing some transactions.I am clear with the flow and how to realize the process.But the problem is with the function module written to execute some transactions with the help of BAPI.Suppose for some reason one of the transaction commit is failed and the RFC adapter goes in error.Now the question is after correcting the error if we restart the msg in RFC adapter will it start executing the transaction in which it faced the error or the whole RFC will be executed again.
    I hope the problem is clear to you.Please help in getting over this. Thank you.
    Regards,
    Prabhas

    Prabhas,
    A few quick questions~
    1. How are you maing the RFC call? is it a single RFC call that will contain all the records from the file or are you going to make one RFC call for each record in the file?
    The user of Recordsets permessage depends on this factor.
    If you are going to make a single RFC call, then you cannot use Recordsets per message if there is some dependency in the records.
    ><i>You mean to ay that even some of the transactions which were committed before the error, we can undo them in RFC. If it is so i am clear with the point.</i>
    Well if all records are going to be pushed into a single RFC call, then yes, your RFC code should be such that if there is some error whileprcoessing the call, it should be able to undo the same!
    If it is the other option where you are going to make one rfc call per record, the issue will not arise, if there is some error, you can correct the same and restart the mesage from XI .
    Regards
    Bhavesh

Maybe you are looking for

  • Unable to create compatible TIFF

    I need to create CCITT group 4 TIFF files for an external system. I have done this before, but this new system seems to be really nitpicky. It refuses to use the TIFF produced by JAI no matter what I try, but if I save it in IrfanView it is accepted.

  • Steps to follow while creating new report...

    HI friends, Can any one please help me with the things to keep in mind and the process to follow while going for creating new reports in BI 7.0. We are about to create some new reports ., also the things to keep in mind while getting the requirement

  • I cannot use a "click here " link within a email like I used to. I get error message. How can i fix this

    When I attempt to use a clickable link..such as in a email that says "click here" I get a error message. I know there must be some setting I am not seeing.

  • ITunes 10 playlist issues

    Why can't you drag and drop between playlists anymore? I just upgraded to the latest iTunes and now I can't select and drag songs from one playlist to another, nor can I drag to reorder songs within a playlist. Can someone help? Am I missing somethin

  • Itunes back up problem

    When I try to back up my purchased music to a DVD I get error #261. Any clue what that is? Thanks Dell Latitude D820   Windows XP