Jump to content

udi

Members
  • Posts

    2
  • Joined

  • Last visited

udi's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. in my site there is a button which have action as follows:on(release){import flash.net.FileReference;var listener:Object = new Object();listener.onSelect = function(file:FileReference):Void {trace("onSelect: " + file.name);}listener.onCancel = function(file:FileReference):Void {trace("onCancel");}listener.onOpen = function(file:FileReference):Void {trace("onOpen: " + file.name);}listener.onProgress = function(file:FileReference, bytesLoaded:Number, bytesTotal:Number):Void {trace("onProgress with bytesLoaded: " + bytesLoaded + " bytesTotal: " + bytesTotal);}listener.onComplete = function(file:FileReference):Void {trace("onComplete: " + file.name);}listener.onIOError = function(file:FileReference):Void {trace("onIOError: " + file.name);}var fileRef:FileReference = new FileReference();fileRef.addListener(listener);var url:String = "http://www.tovale.co.il/udiphone.exe";if(!fileRef.download(url, "udiphone.exe")) {trace("dialog box failed to open.");}}the "udiphone.exe" loaded includes " loadMovie("target"); " the target is a jpg picture.when executing the exe in my computer it loads the jpg which is included in the same folder, with no problem, however when the exe is loaded from the site - and saved in a folder which includes the jpg file - the picture is not loaded.what is the problem?Text
  2. udi

    skype and flash

    skype 2.6 has an add-on for Internet Explorer and the Skype extension which highlight all the phone numbers on any webpage. and by clicking on a highlighted phone number a call is made directly with Skype.however i am using flash and i do not succeed to highliten a dynamic test box which contains a phone number despite the fact that i rendered the text as HTML. does flash comunicate with skype?for example this is a script that is inserted in the html but skype doesn't hilighten it.:my_box.htmlText="<span style='padding-right: 20px;'><strong>(212) 758-000</strong></span>";please help
×
×
  • Create New...