Using XML to create folders with ACLs

My current create folder XML file looks as such:
<ObjectList>
<Folder>
<FolderPath> / </FolderPath>
<Name> StartHere </Name>
</Folder>
I wish to add an ACL to this folder. Which tags should I use to do this. Is there a document I can refer to which has a list of XML tags?
Regards,
Liam Corkhill

The Dev Reference A96698_01.pdf contains XML snippets.
Note - CM SDK 903 only supports XML parsing through the CUP utility (ifsshell).
Matt.
Here are some extracts:
<?xml version="1.0" standalone="yes"?>
<FOLDER>
  <NAME>My Work-in-Progress</NAME>
  <ACL>
    <NAME>MyCMWorkInProgressACL</NAME>
    <ACL RefType = "Name">Private</ACL>
    <ACEs>
      <ACCESSCONTROLENTRY>
        <GRANTEE ClassName='DirectoryGroup' RefType="Name">
          CMProjectGroup
        </GRANTEE>
        <ACCESSLEVEL>
          <DISCOVER> true </DISCOVER>
          <GETCONTENT> true </GETCONTENT>
        </ACCESSLEVEL>
        <GRANTED>true</GRANTED>
      </ACCESSCONTROLENTRY>
    </ACEs>
  </ACL>
</FOLDER>
<?xml version="1.0" standalone="yes"?>
<FOLDER>
  <NAME>Content Management Research</NAME>
  <ACL RefType = "Name">
    ContentManagementProjectACL
  </ACL>
  <FOLDERPATH>.</FOLDERPATH>
</FOLDER>
<?xml version="1.0" standalone="yes"?>
<FOLDER>
  <UPDATE RefType = "Name">Content Management Research</UPDATE>
  <ACL RefType = "Name">
    Public
  </ACL>
  <FOLDERPATH>.</FOLDERPATH>
</FOLDER>

Similar Messages

  • Using XML to create files through API

    Hi.
    I created a new custom type - a subclass of "Document", with a few private attributes.
    I wrote a small XML file that creates an instance of that type.
    I have no problem using that XML with FTP or with the web interface - it parses the XML automatically and creates my custom file.
    However, when I try to use the java API to do the same, it just copies the XML file into IFS, but doesn't parse it or creates the custom file that is defined in it.
    I am using the IFSFileSystem.createDocument method, with parsing set to true, and "null" for the callback parameter.
    Of course, the XML parser is registered (as I said, it works with FTP and web interface).
    Please help.
    Thanks, Edo.

    Sure .. you can use XML as the data source. If you have DW8,
    you can even
    do it right in the Dreamweaver Interface.
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "melneum" <[email protected]> wrote in
    message
    news:e7n37t$40m$[email protected]..
    > Is it possable to use xml to create user lists that can
    then be searched
    > to
    > allow access to a section of a site like you can do with
    asp? I would
    > prefer
    > not to use any database stuff on a site i am currently
    working on but need
    > a
    > secured login area.
    >
    > Any ideas??
    >

  • Using XML files created with PDF form in Excel

    I have returned survey XML files created by a survey form using Lifecycle Designer. Have been unsuccessful in the importing of multiple XML files into Excel as a 2nd file just overlays the 1st file's data.
    I have been reading a number of posts that most likely tells me that sending the PDF survey form out via e-mail and getting the returned XML file back via e-mail was not the best way to do it. Unfortunately it is what I have to deal with now, so two questions I have:
    1. Is there a known method for importing all of these XML files into any Office program more easily than what I have been dealing with, and
    2. What method would be best used if I have surveys to send out but have no web server or any other tool other than my local software on my PC for collecting and compiling the returned data?

    Are you clicking the Send Email button while previewing the pdf form?
         -> If yes, have you specified preview data on Form Properties panel?
                    -> If yes, does your form contain Table or repeatable subforms?
    If all the above point are true, you will get multiple data in your xml.
    Nith

  • How Do You Use XML To Create Image Upload On A WebSite?

    Hello,
    Could some one please help me understand how to create web image gallery and web video gallery using XML? I have found few xml codes that could be used to do this but I am not so sure how to use them. I want my clients to be able upload images and videos with linking thumbnails to Image and or Videos. Do you think the codes I included in this question will help me achive this goal? And do I need to put all in one and in the same directory so it will work? Please help with your idea and tell me how you would use these codes and how you may step-by-step implement the idea your self to your own web site.
    I have also included the instruction I found on the web with the codes.
    Starting with You Tube, API on their video gallery, here are the codes I found,
    Assume you are to use the YouTube, XML code; What will you change here so it will work on your own www.domain.com?
    <% Dim xml, xhr, ns, YouTubeID, TrimmedID, GetJpeg, GetJpeg2, GetJpeg3, thumbnailUrl, xmlList, nodeList, TrimmedThumbnailUrl Set xml = Server.CreateObject("MSXML2.FreeThreadedDOMDocument")
    xml.async = False
    xml.setProperty "ServerHTTPRequest", True
    xml.Load("http://gdata.youtube.com/feeds/api/users/Shuggy23/favorites?orderby=updated") If xml.parseError.errorCode <> 0 Then
        Response.Write xml.parseError.reason End If Set xmlList = xml.getElementsByTagName("entry") Set nodeList = xml.SelectNodes("//media:thumbnail") For Each xmlItem In xmlList
        YouTubeID = xmlItem.getElementsByTagName("id")(0).Text
        TrimmedID = Replace(YouTubeID, "http://gdata.youtube.com/feeds/api/videos/", "")
        For Each xmlItem2 In nodeList
            thumbnailUrl = xmlItem2.getAttribute("url")
            Response.Write thumbnailUrl & "<br />"
        Next     Next    
    %>
    For the image gallery, the following are the codes I found with your experience do I need to use the entire codes or just some of them that I should use?
    CODE #01Converting Database queries to XML
    Using XML as data sources presumes the existence of XML. Often, it is easier to have the server create the XML from a database on the fly. Below are some scripts for common server models that do such a thing.
    These are starting points. They will need to be customized for your particular scenario.
    All these scripts will export the data from a database table with this structure:
    ID: integer, primary key, autoincrement
    AlbumName: text(255)
    ImagePath: text(255)
    ImageDescription: text(2000)
    UploadDate: datetime
    The output of the manual scripts will look like:
    <?xml version="1.0" encoding="utf-8" ?>
      <images>
         <image>
              <ID>1</ID>
              <album><![CDATA[ Family ]]></album>
              <path><![CDATA[ /family/us.jpg ]]></path>
              <description><![CDATA[ here goes the description ]]></description>
              <date><![CDATA[ 2006-11-20 10:20:00 ]]></date>
         </image>
         <image>
              <ID>2</ID>
              <album><![CDATA[ Work ]]></album>
              <path><![CDATA[ /work/coleagues.jpg ]]></path>
              <description><![CDATA[ here goes the description ]]></description>
              <date><![CDATA[ 2006-11-21 12:34:00 ]]></date>
         </image>
      </images>
    These are all wrapped in CDATA because it is will work with all data types. They can be removed if you know you don't want them.
    Note: If using the column auto-generating versions, ensure that all the column types are text. Some databases have data type options like 'binary', that can't be converted to text. This will cause the script to fail.
    CODE #02ASP Manual: This version loops over a query. Edit the Query and XML node names to match your needs.
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <%
    Dim MM_conn_STRING
    MM_conn_STRING = "dsn=image_gallery;uid=xxxx;pwd=xxxx"
    %>
    <%
    Dim rsImages
    Dim rsImages_cmd
    Dim rsImages_numRows
    ' Query the database and get all the records from the Images table
    Set rsImages_cmd = Server.CreateObject ("ADODB.Command")
    rsImages_cmd.ActiveConnection = MM_conn_STRING
    rsImages_cmd.CommandText = "SELECT ID, AlbumName, ImagePath, ImageDescription, UploadDate FROM images"
    rsImages_cmd.Prepared = true
    Set rsImages = rsImages_cmd.Execute
    ' Send the headers
    Response.ContentType = "text/xml"
    Response.AddHeader "Pragma", "public"
    Response.AddHeader "Cache-control", "private"
    Response.AddHeader "Expires", "-1"
    %><?xml version="1.0" encoding="utf-8"?>
    <images>
      <% While (NOT rsImages.EOF) %>
         <image>
              <ID><%=(rsImages.Fields.Item("ID").Value)%></ID>
              <album><![CDATA[<%=(rsImages.Fields.Item("AlbumName").Value)%>]]></album>
              <path><![CDATA[<%=(rsImages.Fields.Item("ImagePath").Value)%>]]></path>
              <description><![CDATA[<%=(rsImages.Fields.Item("ImageDescription").Value)%>]]></description>
              <date><![CDATA[<%=(rsImages.Fields.Item("UploadDate").Value)%>]]></date>
         </image>
        <%
           rsImages.MoveNext()
         Wend
    %>
    </images>
    <%
    rsImages.Close()
    Set rsImages = Nothing
    %>
    CODE #03
    Automatic: This version evaluates the query and automatically builds the nodes from the column names.
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <%
    Dim MM_conn_STRING
    MM_conn_STRING = "dsn=image_gallery;uid=xxxx;pwd=xxxx"
    %>
    <%
    Dim rsAll
    Dim rsAll_cmd
    Dim rsAll_numRows
    ' Query the database and get all the records from the Images table
    Set rsAll_cmd = Server.CreateObject ("ADODB.Command")
    rsAll_cmd.ActiveConnection = MM_conn_STRING
    rsAll_cmd.CommandText = "SELECT * FROM Images"
    rsAll_cmd.Prepared = true
    Set rsAll = rsAll_cmd.Execute
    ' Send the headers
    Response.ContentType = "text/xml"
    Response.AddHeader "Pragma", "public"
    Response.AddHeader "Cache-control", "private"
    Response.AddHeader "Expires", "-1"
    %><?xml version="1.0" encoding="utf-8"?>
    <root>
      <% While (NOT rsAll.EOF) %>
         <row>
             <%
                 For each field in rsAll.Fields
                 column = field.name
             %>
              <<%=column%>><![CDATA[<%=(rsAll.Fields.Item(column).Value)%>]]></<%=column%>>
              <%
                 Next
              %>
         </row>
        <%
           rsAll.MoveNext()
         Wend
    %>
    </root>
    <%
    rsAll.Close()
    Set rsAll = Nothing
    %>

    OK, I understand - thanks for that.
    I thought the whole process was supposed to be a bit more seemless? Having to upload/download documents and manually keep them in sync will leave a lot of room for errors.
    It's kinda painful the way iOS doesn't have folders. It makes things incompatible with the Mac and means you can't group files from multiple apps into a single project - who organises their digital life by the apps they use?
    I think I'll recommend they use their iPad only.
    Thanks for that.
    Cheers
    Ben

  • How to use metadata to create folders of images

    i have a collection of photos of a high school baseball team. 40 players. The Entire season is approaching 6000 images. I have identified the "Person Shown" in each image in that respective IPTC EXTENSION metadata field.
    I Want to export each player's images into a folder with the folder named "Person Shown"
    Is there an easy way (ie plug-in or script) to accomplish this?

    I don't think there's an easy way in LR to do what you want without using a plugin.
    I don't know of plugins that would create folders based on Person Shown.  But you could export the files with the naming convention person-shown-nnn.jpg. Then in the Mac Finder or Windows File Explorer, sort the export folder by filename and then do 40 drag-and-drops to move all of the photos of a player into the appropriate folder.
    To export the files with names of the form person-shown-nnn.jpg, use the Search Replace Transfer plugin to copy the Person Shown field to the Title field (or some other metadata field you're not using).  Then in the Export window, use the Rename To option with a custom filename template "Title - Sequence # (1).jpg". 
    Perhaps someone else has a better suggestion.

  • Create folders with multiple language support

    How can folders be created supporting multiple languages?
    I am using Mac OS X with English as my native language. As I would like to have several folders named in Japanese this causes some trouble: It is no problem to name them using Japanese characters, but if I navigate through these folders using the Terminal as I often do the names will only appear like "???????????????????" even if I use 'export LCALL="jaJP.UTF-8"' to get right character interpretation for the Terminal. There must be an alternative name support for folders as I tried to create folders while I switched to Japanese as my native language for Mac OS X and all standard user folders switched to Japanese language. In the Terminal these folders still appear in international English language. And also when I copy those folders to an external hard drive the multiple language support will stay alive. But I still didn't find out how new folders created by myself will get multiple language support. Any hints?
    Thanks in advance.
    Kyoshiro

    Tom Gewecke wrote:
    Unfortunately I have to switch between Romaji and Hiragana/Katakana input method every time I have to spell japanese folder names. (Tab completion doesn't work at all for these folders.)
    Sorry, I don't understand what you mean there. Where are you spelling the names? In Terminal?
    Yes, I meant typing Japanese characters in the Terminal. It works but it's very uncomfortable as shortcuts to switch the input method don't work while writing commands in the Terminal. Standard folders like "Documents", "Pictures" etc. appear in English in the Terminal even if the localization has been switched to an other language. (So there is no need to switch the input method while working in the Terminal.)
    In case the folders are stored on an external drive (even if it's fat) and it's plugged in on another computer they appear in English likewise.
    Self created folders normally won't have this ability. But to customize this behaviour is exactly what I am looking for. I guess the information about the "international aliases" must be in a hidden file or something like that.
    That must certainly be part of the localization system for the OS. Here is some info:
    http://developer.apple.com/internationalization/localization/tools.html
    Thank you for the link, first I'll explore the tools. Maybe I'll find some useful information.
    I'll return as soon as I need help again or if I found what I am searching for.
    Thank you so far.
    Kyoshiro

  • Error using BAPI_PO_CREATE1 for creating PO with services

    Hi,
    I'm getting an error saying 'EnTER account assignment data for item' when I use BAPI_PO_CREATE1 and try to create POs with Service Items. I have filled all the required details, even then the system throws up this error message. Thanks for any help.
    Regards,
    Vijay

    what have you passed to the table POACCOUNT? and POACCOUNTX?
    Regards,
    Ravi

  • Search informatio​ns about using XML to create scripts (automate tests)

    Hello,
    I search some (A LOT OF...) informations  about using XML in Labview. I know that Labview use a specific schema for XML, but I search examples or tutorials.
    My aim is to control a VI with a script in XML, I would know if I can generate "while loop", modified attributes etc... with my XML file?
    Bye

    Hi leo,
    first for all others: this is related to this thread!
    Then:
    Your script should be handled by LabView in an interpreter-style. So you read in the script and parse the commands. For each command that is supported you have to provide the functionality in a state-machine like handling routine.
    I would stay away from the before mentioned "LabView scripting", atleast for production-type programs as LV-Scripting is not supported by NI (and not easy to handle...)!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Using 08 to create flash with 09 installed

    When i upgraded to keynote 09, it left keynote 08 in the applications folder (which seems to run ok). Can I use O8 to create a flash/swf file using the export (which is not in 09)? I have upgraded quicktime pro to version 7.6.2 as well.
    Thanks
    bob

    According to what peterBreis wrote several times, it seems that the response is YES.
    Yvan KOENIG (from FRANCE vendredi 24 juillet 2009 19:27:49)

  • Use parameter to create folders in report distribution

    Hi,
    This is my distribution xml
    <destinations>
    <!-- Generate seperate files for each department -->
    <foreach>
    <file id="a1" name="C:\junior\report\*DEPT_&amp;F3*\dept_rep&amp;&lt;F3>.pdf" format="pdf" instance="this">
    <include src="mainSection"/>
    </file>
    </foreach>
    </destinations>
    I am using the parameter F3 to create a subfolder because the requirement is that i distribute pdf reports to break on F3 and place them in different folders.
    Just using name="C:\junior\report\dept_rep&amp;&lt;F3>.pdf" works but I am not able to do it if i have at folder level. But that is my requirement.
    Is this possible.

    Hi,
    Can anyone help me in this.

  • Using AppleScript to create folders and place files in them

    Hi guys,
    I've been reading through the forum for the better part of the last 6 hours wracking my brain trying to figure out how to accomplish what I'm trying to do. I've been playing around with Automator and also trying to decipher some Apple Script samples that were posted on here, but I'm really having no luck at all. I'm sure you've all been there where you feel like you're on an endless search to solve a problem and it feels like there's no hope. I've tried every single possible thing I can and I'm getting close, but it's never quite right.
    Here's what I'm trying to do, and hopefully some kind soul will help me out. I'm deseperately trying to figure this out, and any help at all would be GREATLY appreciated!
    I have a bunch of PDF files that I scan, in the hundreds. After I've scanned them I'm left with something like this:
    1234567_Elephant.pdf
    1234567_Duck.pdf
    1234567_Cat.pdf
    1234567_Cat_01.pdf
    1234567_Dog.pdf
    3431233_Elephant.pdf
    3431233_Dog.pdf
    3431233_Dog_01.pdf
    3431233_Duck.pdf
    etc...
    So they have a 7 digit ID, then the file name which is always one of the 4 options (I'm just using the animals as examples, but they would be other words).
    What I'd want the script to do is categorize these into folders based on the ID number, and then based on the "animal" and then the files within them. Note, some files have an _01 or _02 etc... appended to them. I don't know if this makes a difference.
    So after running the script I'd love to see
    1234567 (Folder)
         Elephant (Subfolder)
              1234567_Elephant.pdf (File)
         Duck (Subfolder)
              1234567_Duck.pdf (File)
         Cat (Subfolder)
              1234567_Cat.pdf (File)
              1234567_Cat_01.pdf (File)
         Dog (Subfolder)
              1234567_Dog.pdf (File)
    3431233
         Elephant
              3431233_Elephant.pdf
         Dog
              3431233_Dog.pdf
              3431233_Dog_01.pdf
         Duck
              3431233_Duck.pdf

    well, using a couple of stock handlers I had lying around, and making the following assumptions:
    that an underscore is always the delimiter used
    that the file name is always a single word like 'dog' or 'cat' (if you have multiple word file names, the script needs to be modified some)
    this should do what you ask:
    set mainFolder to (choose folder) as text
    tell application "System Events"
      -- get all the unsorted files, and loop through
              set unsortedFiles to every file of folder mainFolder whose visible is true
              repeat with thisFile in unsortedFiles
      -- split the file name on underscores and periods
                        set fileNameBits to my tid(name of thisFile, {"_", "."})
      -- first item of list is id, make/get correct folder
                        set IDFolder to my checkForFolder(mainFolder, item 1 of fileNameBits)
      -- second item of list is file name, make/get correct folder in id folder
                        set groupFolder to my checkForFolder(IDFolder, item 2 of fileNameBits)
      -- move file
      move thisFile to groupFolder
              end repeat
    end tell
    to checkForFolder(fParent, fName)
      -- subroutine checks for folder, creating it if it doesn't exist
              tell application "System Events"
                        if not (exists folder fName of folder fParent) then
                                  set output to path of (make new folder at end of folder fParent with properties {name:fName})
                        else
                                  set output to (path of (folder fName of folder fParent))
                        end if
              end tell
              return output
    end checkForFolder
    on tid(input, delim)
      -- subroutine for handling text item delimiters
              set {oldTID, my text item delimiters} to {my text item delimiters, delim}
              if class of input is list then
                        set output to input as text
              else
                        set output to text items of input
              end if
              set my text item delimiters to oldTID
              return output
    end tid

  • Split filename and create folders with Powershell script ( --newbie user)

    I have a folder with 1000's of files. Each file varies in length; typically between 9-14 characters. Example:
    C:\workpics\1238955678.1
    C:\workpics\744556224.1
    C:\workpics\744556224.2
    C:\workpics\8445655996.1
    I would like to run a script to split the filename and separate into folders. The filename would then consist of 5 characters, the foldername would be the first characters remaining.
    C:\workpics\12389\55678.1
    C:\workpics\7445\56224.1
    C:\workpics\7445\56224.2
    C:\workpics\84456\55996.1
    Any assistance to create this Powershell script would be awesome. Thank you!!

    I have a folder with 1000's of files. Each file varies in length; typically between 9-14 characters. Example:
    C:\workpics\1238955678.1
    C:\workpics\744556224.1
    C:\workpics\744556224.2
    C:\workpics\8445655996.1
    I would like to run a script to split the filename and separate into folders. The filename would then consist of 5 characters, the foldername would be the first characters remaining.
    C:\workpics\12389\55678.1
    C:\workpics\7445\56224.1
    C:\workpics\7445\56224.2
    C:\workpics\84456\55996.1
    Any assistance to create this Powershell script would be awesome. Thank you!!
    Please reread your request.  It makes no sense.  Read each statement carefully and notice that the statements are in conflict.
    Start your scrip in PowerShell.  Look up things like how to list files and how to manage strings.  All of the information you need is here:
    http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    ¯\_(ツ)_/¯

  • I want the organiser in Elements 13 to create folders with the format yyyy mm dd, not yyyy dd mm. How do I do that

    Photoshop elements 13 organiser
    I want to import the photos into folders by shot name in the following format: yyyy mm dd, NOT yyyy dd mm. This used to be possible.. I have nearly 100 folders organised already as yyyy mm dd (actually half are yyyy-mm-dd). How can I do this?
    Thanks in advance for your help
    Suzanne

    I noted the old bug and its reference to version 10 of the organiser, I think.
    I am running 64 bit Windows 7.
    I had set the date format in the preferences as dd/mm/yyyy as that is how we format it in Australia. That is when the preferences for the format of subfolder creation came up as yyyy dd mm.
    I then tried setting the date format in the preferences in the US format, that is, mm/dd/yyyy. This fixed the anomaly: the preferences for the format of subfolder creation came up as yyyy mm dd.
    I don't understand the logic and I think this was something that was missed in the update.
    So thanks for the suggestion but I think it is a little bug with a simple though slightly illogical workaround.
    Should I report it to Adobe?

  • Using PCF to create booklets with pages

    Before I updated to Lion I could used the create booklet software to print out booklets for church.  After installing Lion I am being told this application is not universal and I need an update.  None appears to be available.  Any ideas?

    parsonscottage wrote:
    After installing Lion I am being told this application is not universal
    Rosetta -- the software which allows older PPC software to run on Intel Macs -- is not supported on Lion. So, you have two options -- either get updated software which runs on Intel Macs ("universal" means it contains both PPC and Intel code), or somehow continue to run SL. For the latter, you could downgrade back to SL, run it as an alternate boot option, or in a VM within Lion. IMHO, the practical options are to go back to SL, or get Intel software.
    You could look for booklet software in the usual places (Macupdate, Softpedia, etc), or just google it; or you could look for DTP apps which do this task (imposition).
    Scribus is a free, open-source DTP app, which means the price is right, but the learning curve is steep and support and features patchy. Here's one way of creating a booklet with Scribus
    <http://wiki.scribus.net/canvas/Making_a_booklet_with_Scribus_and_Adobe_Reader>
    Swift Publisher is a (relatively) inexpensive DTP app from BeLight. Here's what they say about creating a booklet with SP
    <http://www.belightsoft.com/products/swiftpublisher/SPHelp/BookletPrinting.htm>

  • Error using BAPI_PO_CREATE1 to create po with ref to PR

    Hi all,
         I am using FM BAPI_PO_CREATE1 to create a PO wrt PR. but while executing getting an error.
    No instance of object type PurchaseOrder has been created. External reference:
    Purchase order still contains faulty items
    Purchase requisition 10002040, item 00010, does not exist
    Purchase requisition 10002040, item 00010, does not exist.
    Any suggestions to solve this problem.
    Thanks in advance,
    Neela

    Hi ,
    i got the error message that 'Please maintain services sor limits'  message se 029.I'm using bapi (BAPI_PO_CREATE1) and pass preq_no and preq_item in poitem structure.can u help me in this issue?

Maybe you are looking for

  • How to pair Windows 8.1 with a bluetooth low energy iOS Device?

    Hi, I wrote an OSX GATT Client (central) Bluetooth application, which searchs for Bluetooth LE peripheral devices, and implemented the peripheral role on iOS. Everything works fine. Now I'm trying to write the GATT Client as a win32 application, to s

  • A white line in on some of the pages

    Hello, i am making this site as a hobby so im not so professional at DW. But i have this white line thru some of the pages of the site. On some monitors it doens't show. I sliced the image and somewhere there is a fault in it and i can't figure it ou

  • Flex editing in Windows without Builder?

    I've been doing my Flex work mostly on the Mac, using TextMate and the command-line compiler. I have to do some work in Windows XP Pro, and I was wondering what text editors people use for it, and any other advise you could give. I have access to Bui

  • Looking for a developer to build a custom AI plug-in

    My apologies if posting about freelance development opportunities is not cool. I didn't see anything that said I couldn't :-) Looking for a developer to help us develop a custom AI CC plug-in for Mac/Win that helps with some custom AI workflows. I ha

  • I bought the USB Superdrive for my iMac  it will not accept the dvd. Has anyone had this problem?

    The USB Superdrive will not accept the dvd.  I have it connected to my IMac (2013).  Has anyone had this problem?  What works with the IMac?