Jump to content

divinedesigns1

Members
  • Posts

    1,200
  • Joined

  • Last visited

Everything posted by divinedesigns1

  1. what does this mean? TypeError: Error #1010: A term is undefined and has no properties.at Flashwebsite_fla::MainTimeline/loaderF() error fixed, was a misspelled word again
  2. i think i fixed the problem 0.o not too sure tho
  3. that didnt fix the error still getting the output error
  4. ............. thank you ill correct that
  5. divinedesigns1

    Echo?

    How old are you? are you going to always be like this when it comes to learning? if there was a broken-english forum like w3s i would be happy dont get me wrong, i understand english pretty clearly i just perfer to speak broken english. my dad once said, you shouldnt force someone to do something they dont want to do or have no serious kind of interest in quite frankly i now understand what he was saying. if you wish to learn, read the books on your topic, if you dont understand what the book is saying ask questions, if you still dont understand the answers given to you state that you dont understand or ask for the answer to be broken down you see, your luckly you have these guys to help you, whiles me i only come here until im truely stuck on something i can not fix be happy you dont have any pressure and that you have a lot of helping hands P.S i perfer to do things on my own, and i am not saying that no one never helped me on here, since i have receive many help
  6. oh, i rewrote the script and didnt need those code anymore 0.o but now im having this annoying error there were other errors in this code also which i can easily fix but this one is giving me a bit of a problemimport flash.events.ProgressEvent;import flash.events.Event;function loadProgress(my_loader:ProgressEvent):void{var percent Number = Math.floor( ( my_loader:bytesLoaded * 100 )/ my_loader:bytesTotal );MyLoadText.text = percent + "%";preloader.gotoAndStop(precent);}function loadComplete(e:Event):void{currentFrame +1;}loaderInfo.addEventListener(ProgressEvent.PROGRESS,loadProgress);loaderInfo.addEventListener(Event.COMPLETE,loadComplete); not too sure where the semi colon have to go, i been moving it around on that line to match what the error is saying but did not work or do i have to remove something? since thats how i fixed the last erroralso if i placed the semicolon before Number, that wouldnt make much sense since semicolons are for ending a statement, etc. But i tried it and it outputted another error asking for a colon so that above quote wouldnt work, now ill try to figure it out when i wake up
  7. divinedesigns1

    Errors

    hey i been trying to do this loading thingy but i have no idea how to fix these 2 last errors and and this is my codeimport flash.text.Font;font-family: "Time New Roman";property:fontFamily = "Time New Roman";and font-weight: "Time New Roman";property:fontWeight = "Regular";Font.registerFont(mytext);function loadProgress(my_content:ProgressEvent):void { var percent:Number = Math.floor( (my_content.bytesLoaded * 100) / my_content.bytesTotal );mytext.text = percent + "%";circularloader.gotoAndStop(percent);}function loadComplete(e:Event):void {currentFrame + 1;}loaderInfo.addEventListener(ProgressEvent.PROGRESS, loadProgress);loaderInfo.addEventListener(Event.COMPLETE, loadComplete); can anyone say whats wrong here?
  8. take a look at your URL where it reads http://www.divinedesign1.com/# <--- that # means theres no page or it isnt linked to the page.also if you take a look at the index page "the main page" you would see a message stating to contact us through that email 0.o Question is what's so funny?
  9. i know who made it, person dont know what format flash uses that be more useful, but ill try foxy advice see if that works
  10. the 3D model was created before i was asked to do this
  11. well it is true, nowaday people dont really use flash like that
  12. well i have to create something like the link i provide from this google scratch up an employee have created, the problem is i dont know how to import that 3D model into blah so i can then create the buttons which allows it to work as it should "im doing this with limited knowledge but thats the challenge" and i know i can use Swift3D to make the 3D model and then import it into flash but the guy already made the model so i have to think of a way to make it work with either blah or php which im not too sure where to start so i figured i try doing it with flash as i said dont know how to import it into flash blaaaah
  13. hey sup, i am wondering if its possible to transfer/import a 3D model into flash or do i have to use another kind of method to make it work on a website, i am looking to do something like thishttp://www.jeremylevine.com/ But with my own work etc
  14. alright thank you dsone, trying to take what people say and put it to work
  15. what font would be best to use, so that the viewer doesnt hurt their eyes trying to read the text and background? i was thinking about putting like a black wood like flooring in the background, what you think? www.divinedesigns1.com kindly give your suggestions on the font thank you The site is still being created, it have been like this for a few years now, since i first start learning how to create websites "i am not a graphic designer".
  16. yes it, i change it to image and it worked perfectly well but yesterday it was working with photo
  17. ok samething that happen the last time, instead of accepting the image which is 65kb it keep on rejecting the image and giving the output "image need to be gif, jpeg or png with a size no more than 65kb but the image is 5.61kb 0.o http://www.divinedesigns1.com/demo/addon.php and this the script "once again just give me a hint if i mess up please and thank you <?phprequire_once 'skimg.php';require_once 'my_connect.php';if (isset($_POST['submit'])) {// Grab the score data from the POST$name = $_POST['name'];$score = $_POST['score'];$screenshot = $_FILES['screenshot']['name'];$screenshot_type = $_FILES['screenshot']['type'];$screenshot_size = $_FILES['screenshot']['size'];if (!empty($name) && !empty($score)) {if((($screenshot_type == 'photos/gif') || ($screenshot_type == 'photos/jpeg') || ($screenshot_type == 'photos/pjpeg') || ($screenshot_type == 'photos/png')) && ($screenshot_size > 0) && ($screenshot_size <= SK_MAXFILESIZE)){if($_FILES['file']['error'] == 0){//Move the file to the target upload folder$target = SK_UPLOADPATH . $screenshot;if(move_uploaded_file($_FILES['screenshot']['tmp_name'], $target)) {// Connect to the database$conn = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);// Write the data to the database$query = "INSERT INTO scorekeeper VALUES (0, NOW(), '$name', '$score', '$screenshot', 0)";mysqli_query($conn, $query);// Confirm success with the userecho '<p>Thanks for adding your new high score!</p>';echo '<p><strong>Name:</strong> ' . $name . '<br />';echo '<strong>Score:</strong> ' . $score . '</p>';echo '<img src="' . SK_UPLOADPATH . $screenshot . '" alt="Score image" /></p>';echo '<p><a href="index.php"><< Back to high scores</a></p>';// Clear the score data to clear the form$name = "";$score = "";$screenshot = "";mysqli_close($conn);}else {echo '<p class="error">Sorry there was a problem uploading your screen shot image</p>';}}}else{echo '<p class="error">The screen shot must be a GIF, JPEG OR PNG image file no' . 'greater than ' . (SK_MAXFILESIZE /1024) . ' KB in size.</p>';}// Try to delete the temporary screen shot image file@unlink ($_FILES['screenshot']['tmp_name']);}else{echo '<p class="error">Please enter all of the information to add your high score.</p>';}}?><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data"><input type="hidden" name="MAX_FILE_SIZE" value="<?php echo SK_MAXFILESIZE; ?>" /><label for="name">Name: </label><input type="text" id="name" name="name" value="<?php if(!empty($name)) echo $name; ?>" /><br /><label for="score">Score: </label><input type="text" id="score" name="score" value="<?php if(!empty($score)) echo $score; ?>" /><br /><label for="screenshot">Screen Shot: </label><input type="file" id="screenshot" name="screenshot" /><hr /><input type="submit" value="Add" name="submit" /></form> the image size script <?php//define the upload pathdefine('SK_UPLOADPATH', 'photos/');define('SK_MAXFILESIZE', 65536); // 65 KB?> so the max file size is 65kb and the addon script should accept only files that is 65kb or less but nothing happensi fixed this script before then i got help to fix it again from boen now im having problem again 0.o
  18. sorry for the late reply, was looking for the topic and i just found it, what i did was create a 32x32 then i took my logo "the one in my display" and scale it down to fix the 32x32 frame, then i use favicon generator and it came out just like i want it to look but im gonna try using your example and see if i like that one better you prolly wondering why this guy have 2 logos for his websites well the first one which is on www.divinedesigns1.com was the very first successful logo i ever created "not including the BELOVED logo" but my girlfriend say it doesnt match the name DDS1 which was sure because if you look at it it look like it was saying SD1 which isnt the name 0.o Satisfy Designs1? doesnt really site well but the logo was looking very hot and still is. i love the work i do so i will be using both logos the new one "my display" on dds1.com and the official one on dds1.net both will be tatted on my skin it means something to me
  19. divinedesigns1

    flv to mp3

    thank you for the explaination boen
  20. divinedesigns1

    flv to mp3

    curiousity strikes again - so what would i have to look for, so i can actually sit and see how it is done? or what do i have to learn to actually try and make this possible? wait wasnt this what that guy should of ask? anyway back to my curiousity, so what do i need to learn or what do i need to look up to fine a tutorial on this ? i dont mind sitting here and looking up what every function does at all so
  21. ok i think i figure out a way to make it look decent thanks dsone
×
×
  • Create New...