Properties panel, the Link listbox, pre-loading URL strings

Is there a way to customize the Link (URL) listbox, so that I
could select from a better list of previously-used links, rather
than entering or pasting or dragging a URL?
The Link listbox seems to store URL strings only from the
current DW session.
I am not sure where/whether DW stores URL strings beyond the
current session, but I would actually like to select from my
Mozilla bookmarks file, --or from a permanently-stored list of
links I have previously entered in the Props panel.
My work-around is to copy links to a work-page and save that.
(Lame.)

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15598
http://blog.richnetapps.com/index.php?title=overcoming_the_flash_long_url_limitation&more= 1&c=1&tb=1&pb=1
All good, found these!

Similar Messages

  • Can you pls send me the link to down load JDeveloper version 10.1.2

    Dear All,
    can you pls send me the link to down load JDeveloper version 10.1.2
    Regards,
    Prasanth.

    Hi,
    [http://www.oracle.com/technology/software/products/jdev/archives.html|http://www.oracle.com/technology/software/products/jdev/archives.html]
    Pedja

  • Why is the link 'Firefox cannot load websites but other programs can" not working?

    This link appears to be broken.

    Works fine for me: https://support.mozilla.com/en-US/kb/Firefox%20cannot%20load%20websites%20but%20other%20programs%20can
    What do you get when you try?
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • What is up with the I pad pre loaded Calender?  Am told it is faulty, which is why I can't see the month of March.  When will this be sorted.  It is a nuisance

    What is up with the preloaded Calendar on my I pad?  I can't see the month of March!  Am told that there is a fault, but when will it be fixed?

    I have to assume that Apple is aware of it and its working on it. Hopefully, it will be fixed in a new update. But nobody here knows when that will be.
    A workaround is to remove any all day events from April 1st or change them to a few hours  - but remove all day events.

  • Vote on (option to pre-load JVM)

    Greetings.
    I wish to draw your attention to an RFE (request for enhancement) that could use your vote.
    The RFE is asking for the jre to have the option of preloading the JVM at startup. Once loaded, the new 'tray icon" service would be responsible for keeping the rt.jar library loaded (which basically means waking up every once in a while and executing something inside of rt.jar).
    This would be an option that is turned OFF by DEFAULT. The user would have to go into the java control panel to turn it on.
    Why do this you ask? Well I did some extensive testing on cold start times between 1.4, 1.5 and 1.6. See the link at the bottom. The upshot was, that a huge amount of time is spent loading the jvm and rt.jar. All of the lazy loading technologies really didn't help. So, for those willing to have YATI (yet another tray icon), please give the option of preloading the jvm. You see it with other products, like QuickTime...
    Please vote and leave your feeback at:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6346341
    The orginal thread that started it all (lots of benchmark data):
    http://forum.java.sun.com/thread.jspa?messageID=3962327

    You have good points. Perhaps it is my ignorance of windows internals - but let me take a stab at this and perhaps clear a couple of things up (for me at least).
    1) I think you are correct that the JRE footprint size is an issue especially when you compare it to something like quicktime. In defense of the RFE, it is precisely for that reason that I recommend that the option be off by default.
    2 and 3) The tray icon isn't the single JVM of the system. It is an instance of the JVM that is providing a service. Let me take a stab at how I would implement it.
    The java tray icon becomes a loading service that pre-caches the jar files in memory and cycles through them (to keep them in memory). When a local JVM instance is invoked, be it a browser or local application that instance of the jvm would query for the existance of the java tray service and if present, use it to load rt.jar etc. from its memory cache.
    Hope that makes sense.
    -Dennis
    Personally I think the idea of pre-loading the jvm
    like a tray icon would be a bad thing overall. I see
    your point however:
    1. First + Foremost java takes up too much memory.
    Just running simple hello world apps now take tens of
    megabytes to run simply because of the (bloated) size
    of the JRE. It's not like quicktime which can load a
    stub in < 1 Mb this is a bear
    2. What happens when someone calls System.exit()? I'm
    guessing your answer is "well the JVM restarts" but
    what about all the other apps running on that JVM? It
    would kill them too. Beyond that one java app(let)
    could start interfering with another java app taking
    memory making environment changes etc.
    3. Possibly my biggest best reason is that almost all
    real commercial java applications need more memory
    than the default allocated by just calling 'java ...'
    how would we know how much to allocate when starting
    the jvm? Or we could allocate at runtime and fragment
    memory all to ****. Anyway you get the idea

  • Pre-loading images loaded from XML.

    Hello,
    I hoping for some guidance please.
    I have a Gallery that loads thumbnails from an XML.
    I have added a pre-loader to each one of the thumbnails as it is being loaded from the XML.
    My problem is that I can't figure out how to remove the pre-loaders after it has called the Event.COMPLETE.
    With my curent code,
    As it completes loading the thumbnails, it throws an error and only removes the very last pre-loader.
    Thanks for any help you can provide.
    Here is the code I am currently using.
    var urlRequest:URLRequest = new URLRequest("images.xml");
    var urlLoader:URLLoader = new URLLoader();
    var myXML:XML = new XML();
    var xmlList:XMLList;
    urlLoader.load(urlRequest);
    myXML.ignoreWhitespace = true;
    urlLoader.addEventListener(Event.COMPLETE,fileLoaded);
    var arrayURL:Array = new Array();
    var arrayName:Array = new Array();
    var holderArray:Array = new Array();
    var nrColumns:uint = 1;
    var wheel:MovieClip;
    var holdMe;
    var thumbsprite:Sprite = new Sprite();
    addChild(thumbsprite);
    var thumb:Thumbnail;
    var thumbsHolder:Sprite = new Sprite();
    thumbsprite.addChild(thumbsHolder);
    function fileLoaded(event:Event):void {
         myXML = XML(event.target.data);
         xmlList = myXML.children();
         for (var i=0; i<xmlList.length(); i++) {
              var picURL:String = xmlList[i].url;
              var picName:String = xmlList[i].big_url;
              arrayURL.push(picURL);
              arrayName.push(picName);
              holderArray[i] = new Thumbnail(arrayURL[i],i,arrayName[i]);
              holdMe = holderArray[i];
              var loader:Loader = new Loader();
              loader.load(new URLRequest(xmlList[i].url));
              wheel=new rootz();
              holdMe.addChild(wheel);
              loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preload);
              loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completed);
              function preload(event:ProgressEvent):void {
                   var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
                   trace(String(percent) + "%");
              function completed(event:Event):void {
                   holdMe.removeChild(wheel);
              if (i<nrColumns) {
                   holderArray[i].y = 65;
                   holderArray[i].x = i*100;
              } else {
                   holderArray[i].y = holderArray[i-nrColumns].y+110;
                   holderArray[i].x = holderArray[i-nrColumns].x;
              thumbsHolder.addChild(holderArray[i]);

    I am not sure why but the code I posted did not post right,
    Here is my code -
    var urlRequest:URLRequest = new URLRequest("images.xml");
    var urlLoader:URLLoader = new URLLoader();
    var myXML:XML = new XML();
    var xmlList:XMLList;
    urlLoader.load(urlRequest);
    myXML.ignoreWhitespace = true;
    urlLoader.addEventListener(Event.COMPLETE,fileLoaded);
    var arrayURL:Array = new Array();
    var arrayName:Array = new Array();
    var holderArray:Array = new Array();
    var nrColumns:uint = 1;
    var wheel:MovieClip;
    var holdMe;
    var thumbsprite:Sprite = new Sprite();
    addChild(thumbsprite);
    var thumb:Thumbnail;
    var thumbsHolder:Sprite = new Sprite();
    thumbsprite.addChild(thumbsHolder);
    function fileLoaded(event:Event):void {
    myXML = XML(event.target.data);
    xmlList = myXML.children();
    for (var i=0; i<xmlList.length(); i++) {
    var picURL:String = xmlList[i].url;
    var picName:String = xmlList[i].big_url;
    arrayURL.push(picURL);
    arrayName.push(picName);
    holderArray[i] = new Thumbnail(arrayURL[i],i,arrayName[i]);
    holdMe = holderArray[i];
    var loader:Loader = new Loader();
    loader.load(new URLRequest(xmlList[i].url));
    wheel=new rootz();
    holdMe.addChild(wheel);
    loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preload);
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completed);
    function preload(event:ProgressEvent):void {
    var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
    trace(String(percent) + "%");
    function completed(event:Event):void {
    holdMe.removeChild(wheel);
    if (i<nrColumns) {
    holderArray[i].y = 65;
    holderArray[i].x = i*100;
    } else {
    holderArray[i].y = holderArray[i-nrColumns].y+110;
    holderArray[i].x = holderArray[i-nrColumns].x;
    thumbsHolder.addChild(holderArray[i]);

  • Pre-loading external images for XML-based gallery

    I'm working-on an XML-based photo gallery here:
    http://www.unionandparkwood.com/demo/flash_gallery/
    It works how I want it, except that the first time a
    thumbnail is clicked for an image, it pauses long enough to skip
    the fade. If you click-through the images a second time, you'll see
    that it works smoothly. My guess is that the first time the
    thumbnail is clicked, the image isn't cached, yet.
    I tried to fix this by creating a JavaScript file for the
    page to pre-load each image and thumbnail:
    0003a = new Image;
    0003a.src = "images/Down-Range.jpg";
    0003b = new Image;
    0003b.src = "thumbnails/Down-Range.jpg";
    But that didn't work. What would be the best way to do this?
    I included a link to "Download ZIP" of the FLA project on
    this page, too, because it wouldn't be easy for me to describe
    what's happening. In a nutshell, a thumbnail click launches a
    function that loads the appropriate image into the main image
    holder. What seems to be happening the first time is the image
    isn't loaded before the fade is finished, so the image just appears
    after a short pause the first time.

    >>What seems to be happening the first time is the
    image isn't loaded before
    >>the fade is finished, so the image just appears after
    a short pause the
    >>first time.
    As has been said many times in thos forum - use the
    MovieClipLoader class to
    load images, and then use that class' onLoadInit method to do
    things with
    the loaded image. Loading is asynchronous - you _have_ to
    wait until the
    image is done loading before doing a fade.
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • How can i save every bookmark on a usb key individually,so when i connect it i click the link,and voila

    so...what i want to do,is,save all my bookmark or link,on a usb key,cause i have too much,but i need it to be all individual...not like the json export format,because like that,it's kind of like 1 file zipped all the link together...i need to be able to when a connect my usb key,i click the link and it load in firefox...as exemple...in my bookmarks folder...i have about an hundred and more files,and in each of them a hundred or so of links...so is there a way to do that,maybe with another program...i want to erase the one i have in my firefox to put them all on the usb key...thx in advance,waiting for your answers...and i have window 7

    hi...and thx for yours time and answers...i tried what you guys said,and it does not work for me....it work but not all of them...saying some error happens....i really have to much...i tried to do folder by folder,but that does not work either,,,it zipped the total of the link instead of the folder selected....i saw that i can transfer them one by one into a new folder on my disk...but one by one gonna be a hella long thing to do....but work...i tried the keyboard shortcuts...i can select all of them but not copy them into the new folder on my disk....any idea following that....i really just want to put them all on my usb key...and not use the firefox application to store then on firefox web...thx in advance

  • "Easy" way to add a text string Flex default pre-loader?

    Is there an easy way to add text (company name for example) to the top of the default Flex pre-loader?
    Thanks.

    Sure,
    http://www.flexer.info/2008/02/07/very-first-flex-preloader-customization/
    Johnny
    Please rate answers.

  • Character Styles in CSS Properties Panel are not correct

    I am using Adobe Illustator CC.
    I am trying to export all of the charter styles as CSS. However the CSS panel is not generating the correct style.
    Right now, in the Character Styles Panel and CSS Properties Panel I have 3 styles (Default, h1, h2)
    This is how they are defined in the Character Styles Panel:
    1. [Normal Character Style]:Helvectic Neue LT Std, 55 Roman, 16px
    2. h1: Helvectic Neue LT Std, 25 Ultra Light, 35px
    3. h2: Helvectic Neue LT Std, 45 Light, 18px
    HOWEVER
    When I go to the CSS Properties panel the code is not showing the Font Style:
    This is how they are defined in the CSS Properties Panel:
    1. [Normal Character Style]:
    .NormalCharacterStyle
      font-family : Helvetica Neue LT Std;
      font-size : 16px;
      color : #19131F;
      color : rgb(25, 19, 31);
    2. h1:
    .h1
      font-family : Helvetica Neue LT Std;
      font-size : 35px;
      letter-spacing : 0.53px;
      color : #FFFFFF;
      color : rgb(255, 255, 255);
    Missing:  25 Ultra Light
    3. h2:
    .h2
      font-family : Helvetica Neue LT Std;
      font-size : 18px;
      text-transform : uppercase;
      color : #FCFCFC;
      color : rgb(252, 252, 252);
    Missing:  45 Light
    Am I not doing somethign correctly? Is it a problem with my font or with Illustrator?
    Also, in case it makes a difference, I only have the default paragraph style defined. It's style is; Helvectic Neue LT Std, 55 Roman
    Thanks!

    CSS cannot render typographical multiple weight fonts simply because that's just not how it works. All CSS does is reference a physical font file and its properties and while it's possible to use the font-weight and font-style attributes to make standard fonts lighter or bolder it does not compare to anything you would do with the font in a real design environment. That and of course you still need to define fallback/ substitution options - the Helvetica Neue you are referencing is exclusively available on Apple systems only and even if what you are trying worked off the bat, it would be useless on alternate devices that have no access to the font.
    Mylenium

  • Flex properties panel

    Hi,
    I am try to create a test application with the flexbuilder
    plugin. But when I look into the Flex properties panel I see only
    basic properties. I have already re-install the flex builder to
    lookup the details of the properties panel without success.
    I don't see in the properties panel the "Styles", "layout"
    and other advanced options... How can I get those settings back.
    Or where can I put those settings on.
    Regards,
    Guy

    The "Specific component with style name" acts as a hint to
    CSS Design View and serves to document the purpose of the style.
    However, Flex itself ignores the component name portion of the
    name.
    So, if you have Label.myLabel{} in a css file and open that
    file in CSS Design View, you will see a preview of that style with
    a Label as the sample component. If you have just myLabel{}, CSS
    Design View will not know what to use as the sample component, so
    you would need to select the sample component from the combo box at
    the top of CSS Design View.
    In the MXML source code, Flex considers Label.myLabel and
    myLabel to be the same thing. This is a limitation of Flex and the
    MXML compiler. It ignores all characters before the dot in the
    style name.
    So, the Label.myLabel syntax is only useful in Flex Builder
    CSS Design View. It saves you from having to select Label as the
    sample component. We also consider it to be a good practice because
    it makes it clear from the name that the style is intended for use
    with a Label and not some other kinds of components.
    -- Greg Dow
    -- Adobe Flex Builder Team

  • Properties panel not  "sticking" CS4

    Somehow my property panel is "loose" and not sticking to the bottom. Here's a screenshot if that helps. How do I get it back in place so it's not floating and it stretches across the bottom of the working area automatically? Thanks so much in advance!

    I've had this problem, too—with the Properties panel, the Tools, or the Document window. Once they get moved by hand, they never seem to coordinate with the other panels properly.
    My only solution has been to reselect a default Workspace (from the upper-right of the screen, or at the bottom of the Windows menu), which resets the panels.

  • X300 - removing pre-loaded software

    Is there a simple way of finding what pre-loaded software can be deleted to increase hard disc capacity?

    You can use the ThinkVantage tool called Base Software Administrator. This can be downloaded from the Admin tools page:
    http://www.lenovo.com/thinkvantageadmin
    The BSA allows you to de-select which items on the list of pre-loaded apps that you want to remove, then it does a re-installation of the factory image minus the things you chose to take off.
    Make sure to read the help files in BSA first before attempting to run it. I would also run a complete backup with Rescue & Recovery first and save the backup to external media so that if I made a mistake with BSA, I could always restore my system from the saved backup.
    Message Edited by kr00zn on 08-01-2008 03:57 PM
    Message Edited by kr00zn on 08-01-2008 03:58 PM
    Message Edited by kr00zn on 08-01-2008 03:59 PM

  • Link iView Name to URL property in EP5 SP6

    Hi All,
    I am having a problem with the Link iView Name to URL property in EP5 SP6. In our portal all the iviews are having help links added to the title of the iview using the "Link iView Name to URL" property. The iview is a Standard.URLComponent which has a link to a webdynpro component. This url link works in EP5 SP4 environment but its not working in the EP5 SP6 environment. It works for all other iviews in both environments.
    Can anybody tell me why this is happening or it does not work for an iview pointing to a webdynpro component?
    Thanks in advance.
    Regards
    Prakash

    Hi all,
    I found there have a object URICodec with method encodePath in library com.sapportals.wcm.util.uri.URICodec which can do what I needed.

  • Clicking on any hyper link or submit button shows a 'failure to load' URL message in the console in IE11

    Hi
    I am getting a console error message 'failure to load' while clicked on any hyperlink or submit button. This is only occurring in IE11 browser. why this is happening
    please find the attached screenshots from below url.
    http://screencast.com/t/BoUad8Vy
     and also there is open thread in "asp.net" forum. below is the url for the discussion.
    http://forums.asp.net/p/2022919/5820962.aspx?Clicking+on+any+hyper+link+or+submit+button+shows+a+failure+to+load+URL
    Thanks
    Pradeep

    Hi Viorel
    Thanks for your response,
    This is occurring in most of the websites and also you can observe the same error in "http://msdn.microsoft.com/ie" and you can observe it in IE11 browser only. please check the attached screenshot. ( http://screencast.com/t/jBez3nNpbfF )
    I have checked with different machine and get the same issue. i think my
    Internet Explorer is up to date, you can also check it once by enabling the console (F12).
    Best Regards
    Pradeep

Maybe you are looking for

  • Can't show the image in Firefox

    I have a problem to show the image in Firefox. They can show in Explorer. Does anyone help me with this? You can visit the site: www.norskbrannsikkerhet.no to see the problem.

  • MPEG Woes--HELP!

    I'm trying to load a .TOD file from a server-based JVC camera. Anyway, I have to use MPEG Streamclip to change the file into a FCE usable format. I'm changing the file format into MPEG4, but it takes FOREVER for the clip to convert into MPEG4 and the

  • Backing Up Page Changes to Desktop

    I want to be able to back up the page changes made through Contribute on to a desktop so my clients can have the latest edited pages and not depend on the hosting company as their only back up. Is this possible? Or, how is this usually handled? I kmo

  • Cannot Access HDD via USB

    Hi I have a Toshiba Satellite L675D-S7046, had it running beautifully for a long time.  Then one day it got stuck in shutdown and i was in a hurry and 1/2 distracted threw it in my pack pack, in the trunk and left it there for maybe 45 minutes.  it w

  • K9N SLI suddenly shuts down!

    K9N SLI (not platinum) bios 3.1 AM2 X2 3800+ Zalman CNPS 9500 2x1GB DDR667 Team Value (5-5-5) Sapphire X1800GTO2 512MB Hitachi SATA1 160GB Pioneer DVR-108 LC Power 560W Titan: 3,3V: 35A 5V: 40A 12V1: 18A 12V2: 18A two 80mm fans taken from a PSU Zyxel