Jump to content

magicflyer

Members
  • Posts

    381
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by magicflyer

  1. Congratulations to Virtual Blue for being the first virtual airline to own its very own copy of Dynife! Order yours now, and give your pilots the experience they always wanted!
  2. I would of thought coming up with the idea was inappropriate.It clearly shows that it is a combination of Dynamic and IFE.
  3. No, it is pronounced as Dynife. lol . Combine Dynamic and IFE together.
  4. Software is discontinued Hey Guys! It is finally Complete, tested, and better than ever! Dynife is now available for your virtual airline. What is Dynife? Dynife stands for Dynamic Inflight Entertainment. Fully Customized to your virtual airline, the IFE allows a new level of realism. Automated PA announcements is only one of its distinct feature. Along with a library of Movies, Music, and Games all editable through the admin panel eliminating the need of complicated programming. Also follow your flight Live as it happens with the new Inflight Flightshow. Also included are 2 of the skies favorite radio stations(Skyhigh & Skyblue)! I need screenshots! Virgin America Virtual------ http://img807.images...announcment.png http://img843.images...comeonboard.jpg http://img194.images...7126/menusi.png http://img521.images...6/flightmap.png Southwest Virtual------ http://img641.images...lcomeaboard.png http://img821.images...312/menugmp.png http://img853.images...3/announces.png Delta Virtual----- http://img805.images...13/announce.png http://img594.images...3918/homekj.png http://img571.images...8718/menuas.png Admin Menu------ http://img707.images...dynifeadmin.png http://img833.images...emovieadmin.png Does it work on all browsers? Yes! Dynife works on all major browsers with no issues. - Safari, Firefox, Internet explorer, Google Chrome With all these movies and music, how much of my Bandwidth/storage is it going to take? Almost none! All the Movies, Music, Radios, and Games are hosted on a third party website. The total package is only 50mb! What are the pricing? There is only 1 price for all custom made Dynife: $25 <-best value! This Includes: A Custom Skin 9 Movie Slots, 3 Game Slots, Music Playlist, and 2 radio stations Automated Announcements Flight Show 2 versions of the dynife: 1 with announcements, 1 Just a simple IFE. NEW! Get the local weather directly based on the location of the aircraft NEW! Have an online Cafepress store? Well add it for you to the IFE. NEW! Have your pilots run Dynife Directly from their desktop, with the new .exe application! NEW! Installation OnDemand Included Editable Contents through Admin Panel Want to make your IFE more exciting, and unique? Suggest your own ideas, and I will add it for you at minimum price! Alright, Lets do this! PM me or send me an email, and well get started! My email: magicflyer@rocketmail.com
  5. I love it, very nice design. Adds alot to the realism.
  6. Yeah, It is just a thought. I have not really started coding, developing it. If I do, chances are it will not be until october, at least.
  7. Well, I really dont want to get your hopes up. But about a couple months ago, I thought about making a virtual airline stocks/finance module. If I get time to do it, I will probably do so.
  8. I like that Jquery effect you added. Looks Pretty cool
  9. Hello Mr. Bean, Thanks for your interest, but I Just cant put it public. I sent a PM to you and James142, Who also supported your status. I hope you can understand. Thanks.
  10. Well, try this code instead: <td>Requested Wing: *</td> <td> <select name="wing" id="wing" onchange="javascript: getSquads(this.options[this.selectedIndex].value);"> <?php foreach($allwings as $wing) { echo '<option value="'.$wing->id.'">'. $wing->name .'</option>'; } ?> </select> </td></tr><tr> <td>Requested Squadron: *</td> <td> <select name="squadron" id="squadron"><div id="squads"> </div></select> </td></tr> function getSquads(listindex) { var cnt = 0; switch (listindex) { <?php foreach($allwings as $wing) { ?> cnt=0; case "<?php echo $wing->id ?>" : <?php foreach($allsquadrons as $squad) { if($squad->wing==$wing->id) { ?> document.register.squadron.options[cnt]=new Option("<?php echo $squad->name ?>","<?php echo $squad->id ?>"); cnt++; <?php } } ?> break(); <?php } ?> } If that does not work then it could be that javascript and php dont mix together.
  11. No need of Ajax here. You will need to code it in js so that the onchange event changes the dropdown menu. Use this example: Drop Down Menu #1 | Javascript onchange Event sends Menu #1 value to function "x" that determines the available values in Menu #2 | Function "x" will evaluate the passed value. Using an If then statement it will determine the available values in Menu #2 | Drop Down Menu #2 will show the values according to which value selected in Menu #1 ----------------------------------------------------------- to change the values in drop down menus, you will need to assign a unique id to each Dropdown. ex: <select name="country" id="subcategory" > <option value="usa">United States</option> In the above example we used a unique id subcategory We will use that to change the value in that specific dropdown menu. To do that we do: document.formname.subcategory.options[0]=new Option("Select Sub-Category",""); document.formname.subcategory.options[1]=new Option("Colleges","Colleges"); document.formname.subcategory.options[2]=new Option("Institutes","Institutes"); document.formname.subcategory.options[3]=new Option("Schools","Schools"); document.formname.subcategory.options[4]=new Option("Tuitions","Tuitions"); document.formname.subcategory.options[5]=new Option("Universities","Universities"); This will add 6 new values to the dropdown menu. the options are put in this format: new Option([text that will show in the dropdown menu],[javascript value]) -------------------------------------------------------------- Now moving on to how a dropdown menu can affect another: In this example we have 2 drop down menus(in html): <select name="country" id="category" onchange="javascript: dropdownlist(this.options[this.selectedIndex].value);"> <option value="usa">United States</option> <option value="ca">Canada</option> select name="college" id="subcategory" > <option value=""></option> The first dropdown menu(with id "Category") has two options, United States and Canada. The second (with id "subcategory") has no options because they will be determined later on. You may have also noticed that we have a onchange event on the first dropdown menu, this will send the value that is selected to a function that will evaluate it and output options for the second dropdown menu. The function will look something like this: function dropdownlist(listindex) { switch (listindex) { case "usa" : document.formname.subcategory.options[0]=new Option("Select Sub-Category",""); document.formname.subcategory.options[1]=new Option("Yale University","yale"); document.formname.subcategory.options[2]=new Option("New York City University","nyc"); break; case "ca" : document.formname.subcategory.options[0]=new Option("Select Sub-Category",""); document.formname.subcategory.options[1]=new Option("University of Toronto","uot"); document.formname.subcategory.options[2]=new Option("Canadian University","cu"); } } Thats it! Now the selected country in the dropdown menu will affect which universities that will show in the 2nd dropdown. If this helped, please like. Thanks!
  12. I do believe what onelifexv said is true. You can find that option in one of the core config files(Could be in more than one.) . The line is this: Config::Set('RANKS_AUTOCALCULATE', true); Just change the last part to false.
  13. Hello, You dont change your map display from the local.config. You would need to change it from the ACARS page(lib/skins/[yourskin here]/acarsmap.php). Look for the following line: var acars_map_defaults = { autozoom: true, zoom: 4, center: new google.maps.LatLng("<?php echo Config::Get('MAP_CENTER_LAT'); ?>", "<?php echo Config::Get('MAP_CENTER_LNG'); ?>"), mapTypeId: google.maps.MapTypeId.SATTELITE, refreshTime: 10000 }; mapTypeId: google.maps.MapTypeId.SATTELITE, You can change the Sattelite part to any of the following: MapTypeId.ROADMAP displays the default road map view MapTypeId.SATELLITE displays Google Earth satellite images MapTypeId.HYBRID displays a mixture of normal and satellite views MapTypeId.TERRAIN displays a physical map based on terrain information. This are the only supported by the google API. You will not be able to change it to weather map. I hope it helps
  14. Alright no problem. I wont argue about the prices. Like I said in the edit, I cant afford someone else taking my Ideas/layout. So I wish you good luck, and good competition .
  15. Not the entire IFE. Just your last update. Now your packages have the same prices as I mentioned in my post which was created the same day, but 9 hours earlier. You also added some features that I mentioned in my version of the IFE. I really dont care about competition. I am not coding for money, but for learning. If you asked permission to take some of those ideas, then be my guest. But Just taking them 9 hours after I made the introduction, Now thats what I call stealing. Edit: I am going to give you the benefit of the doubt, I will forget about this. For one reason, there is more than one person that tried to take the code without permission. I will now only invite Va's to use the system. I cant afford someone else taking my Ideas/layout.
  16. Hey man, this is not cool. You looked at the post I did for the Dynamic Inflight Entertainment. You copied the prices and the features I had. Not cool.
  17. Thanks Guys, Alot more features to be added too.
  18. No problem, Only two things come to mind when this error happens: You said that you can edit their ranks from their profile, Thats not possible in phpvms. You can not edit individual pilots ranks(unless I made a mistake). It could be that you changed the group they belong to instead. Groups and Ranks are different. Now, If you are talking about in general you can not save any of their profile fields, it could be that some files in your website do not have Chmod 777(This is the permission required for websites to read and write on all files) Other than that, I am sorry that I was unable to help.
  19. This System is no longer in development. It is exclusive to only the virtual airlines already operating this system. Hello Guys, I recently finished coding a Dynamic Inflight Entertainment System, and since the current results are outstanding, I would like to share with you guys more information about this module, I am planning to start distributing soon. I named it DYNIFE. DYNIFE refers to Dynamic Inflight Entertainment System. This system is an inflight entertainment, but not like the others. PM if anyone is interested, I can give you alot more information including access to the demo.
  20. Hello Nathan, I am not sure I understand any part of the issue. On your what? Edit what? and what does not save? Thanks
  21. Ok, No problem. We had the same issue here at VRD. took us about a month to narrow down the issue. the problem is that a majority of the local.config.php was missing. I just added the mixing portion for you
  22. I just fixed the issue for you(Just noticed, that you are virgin express virtual I am with virgin america virtual). You can now edit the file without problem. let me know if you need any additional help.
  23. I had the same issue, yesterday. What I did to fix it was to copy the content of the file in a temp notepad file, then I deleted the local.config.php file. After that I created a new file with chmod 777 and title local.config.php. I then copied the temp notepad file content to the local.config.php. Worked for me.
  24. Amazing, works like a charm. Thank you for your contribution. It is definitively useful!
×
×
  • Create New...