Jump to content

Choosing Either Jpg File Or Swf File


phil2564

Recommended Posts

Below the block of code gets the (a.jpg) image out of the models folder so it can be displayed. I would like to be able to have a (a.swf) file in the folder also and if the(.swf) is in the folder it will use that file instead of the (.jpg).

 

 

$fn = $gn . "/a.jpg";
if (file_exists($fn)) {
   $ja = "|csaction name=\"D61562B272\" class=\"Set Image URL\" type=\"onevent\" val0=\"";
   $ja = $ja . $gn . "\" val1=\"" . $gn . "/a.jpg\">";
   $j1 = $j1 . "CSAct[/*CMP*/ 'D61562B272'] = new Array(CSSetImageURL,/*CMP*/ '";
   $j1 = $j1 . $gn . "',/*URL*/ '" . $fn . "')\n\r";

}

Link to comment
Share on other sites

Is there away to have this

$fn = $gn . "/a.jpg";

 

Be either JPG or SWF depending what I put in that particular folder it will display. SO if there is a a.jpg t will display that or if there is a a.swf it will display that.

Edited by phil2564
Link to comment
Share on other sites

You could do like this:

 


$swf = 'some.swf';
$image = 'some.jpg';

if (file_exists($swf)) {
// Show swf
}

else if (file_exists($image)) {
// Show image
}

else {
// Nothing to show
}

 

To break down what andy posted this basically states: if the .swf file exists, then you write your code to show it. If it does not exist but the image does, then you write your code to show that. If neither exists do whatever. Either way you will have to check which exists first before doing anything

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.