Learn how to customize the way you work with Adobe apps.
Recently active
I'm not marking this as a question since there are no right or wrong answers. I thought it might be helpful to see how folks work on projects.What are some of the tools you use, why do you like them? etc...Do you build all mobile-friendly projects now or only when a client requests it? Is your backend system (CMS) mobile-friendly too or just the front end?Workflows:Illustrator to wireframe?PSD to Extract?Bootstrap?Foundation?Commercial Themes/Templates?Other?SASS / LESS / SCSS?Etc...Nancy O.
Hi Guys.I'm really stuck here, and hope someone can help. I have looked over the internet and found some answers but Im not good enough with code to be able to figure out how to to edit this to centre it in the browser window. This code - published from flash cc with html canvas - looks different to other peoples code. Could someone please point to where I need to add the 'align: centre' or 100% or whatever is needed. thank you all!<!DOCTYPE html><html><head><meta charset="UTF-8"><title>change curve animation flash</title><script src="http://code.createjs.com/easeljs-0.8.1.min.js"></script><script src="http://code.createjs.com/tweenjs-0.6.1.min.js"></script><script src="http://code.createjs.com/movieclip-0.8.1.min.js"></script><script src="http://code.createjs.com/preloadjs-0.6.1.min.js"></script><script src="change curve animation flash.js"></script><script>var canvas, stage, exportRo
Hi All,Very new to PHP. Have a series of 3 Prepared Statements (see code below) I'm attempting to run through. This page fires from a link on a page that lists the individual candidates and all that works OK. Prepared Statement 1 works and displays the data in the particular row of the wanted columns, Access background thus I'd call it record and fields, but I think it's called row and columns here. Prepared Statement 2 which quires on a cross-reference table (we have a many-to-many relationship between candidates and positions, thus need for the cross-reference table) works and I can tell the array $selected_positions loads since I can see the position_id data in the <body> of the file using this:<?phpforeach ($selected_positions as $item) { echo $item.'<br>'; } ?>Can't take this array $selected_positions and use it as the parameter in Prepared Statement 3, at least not how I'm attempting to do it. So, obviously P
Sorry to ask so many questions, but I'm finding Bootstrap tricky. Everything I knew how to do is now harder, it seems, and the way I knew doesn't work anymore.Anyway -- I want to center the nav buttons (see screenshot below). I have tried everything I can think of. It would be nice if there were a property to align="center" for items, but apparently no one but me thinks it would speed things up.Is it hidden in the Bootstrap CSS, or can I create an ID or class?The code (without all the nav links) is:<div class="container-fluid" id="wrapper"> <!-- Header --> <header> <div class="row"><img src="images/header.jpg" class="center-block image-fill" alt="Kairos Prison Ministry"></div></header><!-- Navigation --> <nav class="navbar navbar-default dkblue col-lg-8 col-lg-offset-0"> <!-- Brand and toggle get grouped for better mobile display --> &l
I'm building a dynamic database with PHP MyAdmin, a SQL connection and Dreamweaver CC (php). I want to build a home with the menu, if you click on the menu it opens a page explain the content of the submenu, but if you click directly on the submenu it opens a dynamic database (only photos) where I could add or remove any item and each item have a link that open a page where you could read all the information.
I purchased and downloaded Photoshop Elements 13, no Cloud involved. I just want Elements 13, but cannot install. The screen keeps asking me to input my serial number but it will not allow me to input the number. What do I do? And I repeat, I don't want to subscribe to Creative Cloud or any other tangent service.
Hello guys!I use Flash Builder 4.5 for my apps, but my apps have many class and when go compiler or anywhere modification that make in my code the flash builder It takes a long time to build. How improve this?
This is for discussion, not so much a question.Here are a few methods I use to secure web pages. I'm not suggesting these are gold standard methods. You may find fault with some or have suggestions of your own (I hope so). I place an index.php file in every folder, even if not needed. This helps prevent viewing the folder contents.No files/folders ever have permissions of 777.Passwords, hashes and other high security items are stored in folders above the web root in php files beginning with "."No web files can be directly opened except the index.php file. All other files contain something like the following:if ($open != "25qq3e4114") { die("If you are seeing this message, please notify the webmaster");}The variable for $open is defined in the index file."Friendly" urls are used which have no correspondence to the file structure.URL parameters are exploded into an array then analyzed as follows: Is the value purely numeric or purely alphabetic? (must be one or the other) Doe
Hi all,some newbie questions...I'm looking into localStorage or sessionStorage for app.- basically I will be getting data from an outside database and want to store it locally for a time and also updating it.I think for my purposes it might be best to just store the data temporarily - similar to a session var - and possible dump the data after the app closes - and then reload all when they login each time.So would it be best to use localStorage or sessionStorage for this purpose?In my localStorage test the data remained persistent even after I quit and reloaded the app - which is nice but better for me to be able to delete it when I want?Are there functions that can wipe out just some key value pairs?Are there functions that can delete all local storage?Also is localStorage / sessionStorage sandboxed with an IOS or android app or is it available outside the app also?
Emails sent from my server are sometimes rejected and sometimes sent to spam folders by gmail, hotmail, SBC global and probably other email systems.The ip addresses are not blacklisted anywhere, I have SPF set up, and I recently started sending all email via SMTP using ZF zend_mail, with authentication, but that did not help.These emails are online payment confirmations, password resent emails, stuff like that.My efforts have improved the success rate, but anything less than 100% isn't really acceptable, and I'm not getting that.Some of you may have had the same problem. I would like to focus this thread not on the problem but on possible solutions.
Click here in Firefox, and it should drop into your Downloads folder.www.ossiningdesignguild.com/cc.icoMove it to any folder you wish, and right-click on your current bookmarkSelect Properties/ Change IconBrowse to and select the .ico file,and OK your way out of the dialog.Here's a screen cap
I'm using a jQuery image preloader: $.preloadImages = function() { for (var i = 0; i < arguments.length; i++) {$("<img />").attr("src", arguments); }}$.preloadImages("hoverimage1.jpg","hoverimage2.jpg");Problem: Client will be using different images throughout the year.Question: Instead of listing an array of filenames above, is it possible to preload everything contained in a folder? Nancy O.
Whenever I want to write any kind of program in any programming language I couldn't write either I know all the things of that language but I couldn't built the logic.
I did get my program to work, I able to upload a image save as a file in the database and display it. There's just one thing, when I go to select a image that has been loaded by a user it shows me every image that was loaded, how do I just only show the images loaded by the specific user signed in to select ?Here's the code for the loading the file:<?php require 'Connections/Connections.php'; ?><?php if(isset($_FILES['UploadFileField'])) { $UploadName = $_FILES['UploadFileField']['name']; $UploadName = mt_rand(100000, 999999).$UploadName; $UploadTmp = $_FILES['UploadFileField']['tmp_name']; $UploadType = $_FILES['UploadFileField']['type']; $FileSize = $_FILES['UploadFileField']['size']; $UploadName = preg_replace("#[^a-z0-9.]#i", "", $UploadName); if(($FileSize > 1000000)) { die("Error - File Size"); } if(!$UploadTmp){ die("No File Seleced, Try Uploading again"); }else{ m
My design calls for three blocks of color, each behind specific content. I have tried defining new background colors under the <section> element, but it only fills in that width of the page. I can't get any of them to work besides the #fff defined by the wrapper.Any ideas?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.